Search code examples
azurespeech-to-text

Azure Cognitive Services Speech to Text


I just transcribed an audio file with Azure Speech to Text. However, I used python and the Speech SDK of Azure but I was wondering if there was a more easier way to do this?

For example, I upload the audio file in the console, then a job is created where the audio file is transcribed and stored in Azure Storage and I can finally download it from there. For my usecase this would have been way faster.

Thanks


Solution

  • Please check the ingestion client which automatically transcribe audio files uploaded to a storage container. https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/ingestion. Thanks!