Current when making requests to https://eastus.api.cognitive.microsoft.com/speechtotext/v3.0/transcriptions I get an error saying diarization is not supported for this language. Example request below:
{
"contentUrls": [
"https://contoso.com/mystoragelocation",
"https://contoso.com/myotherstoragelocation"
],
"properties": {
"diarizationEnabled": true,
"wordLevelTimestampsEnabled": true,
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked"
},
"locale": "he-IL",
"displayName": "Transcription using default model for he-IL"
}
Above example is for a Hebrew mono audio file. The documentation says Hebrew is supported here: https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/language-support
However requests set up as above return:
{"code":"InvalidPayload","message":"This locale does not support diarization."}}
Is there documentation to say which locales support diarization or is this a bug?
Thanks