python - How to get timestamps in Azure text to Speech Synthesized Audio - Stack Overflow

I am trying get timestamps for the generated audio using Azure Text to Speech. I have configured the sp

I am trying get timestamps for the generated audio using Azure Text to Speech. I have configured the speech config correctly but I can't find any property related to timestamps in response object. Following code is my code.

speech_config = speechsdk.SpeechConfig(subscription=speech_key, region=service_region)

speech_config.speech_synthesis_voice_name = "en-US-AndrewMultilingualNeural"
speech_config.request_word_level_timestamps()

text = "Hi"

# use the default speaker as audio output.
speech_synthesizer = speechsdk.SpeechSynthesizer(speech_config=speech_config)

result = speech_synthesizer.speak_text_async(text).get()
print(result.properties)

I am trying get timestamps for the generated audio using Azure Text to Speech. I have configured the speech config correctly but I can't find any property related to timestamps in response object. Following code is my code.

speech_config = speechsdk.SpeechConfig(subscription=speech_key, region=service_region)

speech_config.speech_synthesis_voice_name = "en-US-AndrewMultilingualNeural"
speech_config.request_word_level_timestamps()

text = "Hi"

# use the default speaker as audio output.
speech_synthesizer = speechsdk.SpeechSynthesizer(speech_config=speech_config)

result = speech_synthesizer.speak_text_async(text).get()
print(result.properties)
Share Improve this question asked Nov 21, 2024 at 7:21 Axen_RangsAxen_Rangs 4273 gold badges9 silver badges24 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

To get timestamps in Azure Text to Speech synthesized audio, you need to use the SSML (Speech Synthesis Markup Language) with the wordBoundary or sentenceBoundary tag and enable the prosody feature.

Use SSML with wordBoundary or sentenceBoundary:

Azure Text to Speech supports adding SSML tags to capture word or sentence boundaries in the synthesized speech. These tags generate timestamps for each word or sentence. Enable Timestamps in API Request:

You need to set the IncludeWordBoundary or IncludeSentenceBoundary in the synthesis request.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1742306585a4419058.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信