For Batch transcription as suggested in document https://learn.microsoft.com/en-us/azure/ai-services/speech-service/batch-transcription-create?pivots=rest-api, we are storing transcription results in an Azure container by providing "destinationContainerUrl" also used TimetoLive parameter so that transcription results will be automatically deleted.
but we noticed that transcription results are not getting removed from Azure container, we are providing value in TimetoLive as "timeToLive": "PT0H10M", so expecting transcription will be deleted post 10 min after the transcription job is created, but we noticed that transcription is still present in the container. Can anyone please guide if there are any different / additional setting needs to be done while creating transcription request.
Please refer to below transcription payload
{
"displayName": "TranscriptionDemo1",
"locale": "en-US",
"properties": {
"diarizationEnabled": true,
"wordLevelTimestampsEnabled": true,
"timeToLive": "PT0H10M",
"destinationContainerUrl": "SAS URL"
},
"contentUrls": [
"https://www.signalogic.com/melp/EngSamples/Orig/male.wav"
],
"contentContainerUrl": "",
"customProperties": {
"diarizationV3Enabled": true,
"diarizationMinSpeakers": 1,
"diarizationMaxSpeakers": 10
}
}