Audio Intelligence
Key Phrases
The Key Phrases model identifies significant words and phrases in your transcript and lets you extract the most important concepts or highlights from your audio or video file.
Quickstart
Enable Key Phrases by setting auto_highlights
to true
in the transcription config.
Example output
API reference
Request
Key | Type | Description |
---|---|---|
auto_highlights | boolean | Enable Key Phrases. |
Response
Key | Type | Description |
---|---|---|
auto_highlights_result | object | The result of the Key Phrases model. |
auto_highlights_result.status | string | Is either success , or unavailable in the rare case that the Key Phrases model failed. |
auto_highlights_result.results | array | A temporally-sequential array of key phrases. |
auto_highlights_result.results[i].count | number | The total number of times the i-th key phrase appears in the audio file. |
auto_highlights_result.results[i].rank | number | The total relevancy to the overall audio file of this key phrase. A greater number means that the key phrase is more relevant. |
auto_highlights_result.results[i].text | string | The text itself of the key phrase. |
auto_highlights_result.results[i].timestamps[j].start | number | The starting time of the j-th appearance of the i-th key phrase. |
auto_highlights_result.results[i].timestamps[j].end | number | The ending time of the j-th appearance of the i-th key phrase. |
The response also includes the request parameters used to generate the transcript.