Hiya - for this webm file when i transcribe with code like this:
options = PrerecordedOptions(smart_format=True, model="nova-3", diarize=True)
response = deepgram.listen.rest.v("1").transcribe_url(
{"url": presigned_url}, options, timeout=httpx.Timeout(300.0, connect=10.0)
)
It outputs this very short transcript
[
{
"speaker": "Speaker 0",
"text": "okay that's recording so what should we talk about should we talk about our weekends yes so what did you come to so on the weekend yeah",
"start_time": 0.88,
"end_time": 210.50493
}
]
which is cutting off a big chunk of the audio. I've attached the file in question.
Many thanks in advance for the help!