Com tecnologia deChatGPTClaudeGoogle Gemini
Funciona comGoogle DriveDropboxOneDrive

Features

Word Search, Sentences, and Paragraphs

Find where words were spoken and fetch the transcript broken into timed sentences or paragraphs.

Three read endpoints slice a completed transcript into more useful shapes: search for specific words with their timestamps, or fetch the text segmented into sentences or paragraphs. All three require the transcript status to be completed (otherwise they return 409 with code not_ready).

Sentences and paragraphs

GET/v2/transcripts/{transcript_id}/sentencesThe transcript split into timed sentences
GET/v2/transcripts/{transcript_id}/paragraphsThe transcript grouped into timed paragraphs

Both endpoints return the same segment shape: an ordered data array where each entry has an index, the segment text, start and end timestamps in milliseconds, an average confidence, and the underlying words.

GET .../sentences (excerpt)
{
  "data": [
    {
      "index": 0,
      "text": "Welcome back to the show.",
      "start": 130,
      "end": 1980,
      "confidence": 0.98,
      "words": [
        { "text": "Welcome", "start": 130, "end": 610, "confidence": 0.99 }
      ]
    }
  ]
}
Use sentences for karaoke-style highlighting or clip extraction, and paragraphs for readable article-style rendering. For caption files, use the subtitle export instead.
4.2de 21 avaliações