Identifying highlights in audio and video files
The Key Phrases model identifies significant words and phrases in your transcript and lets you to extract the most important concepts or highlights from your audio or video file.
For example, if you’re a call center, you can analyze highlights from recorded phone calls.
In this step-by-step guide, you’ll learn how to apply the model. You’ll send the auto_highlights
parameter in your request, and then use the auto_highlights_result
property in the response.
Get started
Before we begin, make sure you have an AssemblyAI account and an API key. You can sign up for a free account and get your API key from your dashboard.
The complete source code for this guide can be viewed here.
Here’s an audio sample for this guide:
Step-by-step instructions
Python SDK
Import the assemblyai
package and set the API key.
Python SDK
Python (requests)
TypeScript
PHP
Ruby
C#
Python SDK
Create a TranscriptionConfig
with auto_highlights
set to True
.
Python SDK
Python (requests)
TypeScript
PHP
Ruby
C#
Python SDK
Create a Transcriber
object and pass in the configuration.
Python SDK
Python (requests)
TypeScript
PHP
Ruby
C#
Understanding the response
The auto_highlights_result
key in the response contains a list of all the highlights found in the transcription text. For each entry, the results include the text of the phrase or word detected (text
), how many times it occurred in the text (count
), its relevancy score (rank
), and a list of all the timestamps (timestamps
), in milliseconds, in the audio where the phrase or word is spoken.
For more information about the API response, see API/Model reference.
Conclusion
Automatically highlighting relevant phrases in calls is a great way to focus on important information at a glance. In general, adding AI to Conversation Intelligence tools can augment them by generating actionable summaries to speed up call review, generating insights, monitoring for concerns, increasing engagement, and more. Our AI summarization model has several customizable parameters that you can experiment with for other types of recordings.
To learn more about how to use AI summarization for call coaching, see AssemblyAI blog.