Hi I have tried speech to text with audio files using azure speech to text and everything is working correctly. Can some one guide me how to do the speech to text in azure using audio url. I'm using the REST API.
Asked
Active
Viewed 309 times
0
-
what have you done so far? Have you looked at the documentation? See "batch transcription" feature: https://learn.microsoft.com/en-US/azure/cognitive-services/speech-service/batch-transcription – Nicolas R Oct 06 '22 at 09:31
1 Answers
0
To second what Nicolas said: if you'd like to use a REST API to convert audio URLs to text, batch transcription is the way to go.
Details on fetching the audio: https://learn.microsoft.com/en-US/azure/cognitive-services/speech-service/batch-transcription-audio-data
And a JS sample for batch: https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/batch/js/node

Travis Wilson
- 111
- 2