

Create a container on your Azure Blob Storage with the name: audiofiles.
TEXT TO SPEECH RECORDER PCM CODE
The code can be found here: Code on GitHub Getting it all working on your local machine Meaning that you only pay for the compute used when the function is actualy executed.Īzure functions are triggered by many different events like a message on a service bus, a change in an Azure Table, a http trigger or by a timer.įor this example I use an Azure Function that is triggered when a blob is uploaded in an Azure Storage Container.

Upload an audio file in a supported format (audio/WAV by using the following codecs PCM single channel / Siren / SirenSR) as a blob to a storage container on an Azure Storage account.I recently had a case like that and I made an Azure Function that can process spoken text into written text and store this output in an Azure Table. Recordings are great, you can just sit back and listen to them, but sometimes you just want to scan over the text or maybe your environment is not the best for listening to audio. Sometimes it is just easier to record some information instead of typing it. Speech to Text in an Azure Function Published on: Monday, April 2, 2018
