Azure Speech in Foundry Tools
An Azure service that integrates speech processing into apps and services.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
audio_file=@'9a043053-a1ad-4ebd-861a-c85426697147.wav'
curl --location --request POST \
"https://eastus.stt.speech.microsoft.com/speech/recognition/conversation/cognitiveservices/v1?language=en-US&format=detailed" \
--header "Ocp-Apim-Subscription-Key: " \
--header "Content-Type: audio/wav" \
--data-binary $audio_file
-- getting DisplayText empty for most of the audio files
{
"RecognitionStatus": "Success",
"Offset": 300000,
"Duration": 301200000,
"DisplayText": ""
}
An Azure service that integrates speech processing into apps and services.