A .NET Core console app that transcribes .WAV audio files to text using Azure Speech service.
To use:
- Create a Speech resource in Azure (https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/get-started#create-a-speech-resource-in-azure)
- Update SpeechRecognitionFromFile.cs to have your Azure subscription key and service region.
- Run
dotnet build
. - Run
dotnet run -- C:\\temp\\input\\
(using your own path to a directory that contains .WAV files) - When it finishes running successfully the transribed text will be in
output.txt
.
I used these resources to build this: