Audio Intelligence
Topic Detection
The Topic Detection model lets you identify different topics in the transcript. The model uses the , a standardized language for content description which consists of 698 comprehensive topics.
Quickstart
Enable Topic Detection by setting iab_categories
to true
in the transcription config.
Example output
API reference
Request
Key | Type | Description |
---|---|---|
iab_categories | boolean | Enable Topic Detection. |
Response
Key | Type | Description |
---|---|---|
iab_categories_result | object | The result of the Topic Detection model. |
iab_categories_result.status | string | Is either success , or unavailable in the rare case that the Content Moderation model failed. |
iab_categories_result.results | array | An array of the Topic Detection results. |
iab_categories_result.results[i].text | string | The text in the transcript in which the i-th instance of a detected topic occurs. |
iab_categories_result.results[i].labels[j].relevance | number | How relevant the j-th detected topic is in the i-th instance of a detected topic. |
iab_categories_result.results[i].labels[j].label | string | The IAB taxonomical label for the j-th label of the i-th instance of a detected topic, where > denotes supertopic/subtopic relationship. |
iab_categories_result.results[i].timestamp.start | number | The starting time in the audio file at which the i-th detected topic instance is discussed. |
iab_categories_result.results[i].timestamp.end | number | The ending time in the audio file at which the i-th detected topic instance is discussed. |
iab_categories_result.summary | object | Summary where each property is a detected topic. |
iab_categories_result.summary.topic | number | The overall relevance of topic to the entire audio file. |
The response also includes the request parameters used to generate the transcript.