使用天蓝色的法语文字语音

时间:2019-02-26 10:05:20

标签: python azure api speech-to-text

我正在使用语音从Azure与Python文本。 我想用法语使用它,但没有成功。对于英语,它很好用,但对于法语,我不知道该怎么做。 我正在使用Python 3.7。 我使用这里写的代码: https://docs.microsoft.com/fr-fr/azure/cognitive-services/speech-service/quickstart-python

感谢帮助

1 个答案:

答案 0 :(得分:0)

这是我的做法:

speech_config = speechsdk.SpeechConfig(subscription=speech_key, 
                                   region=service_region, 
                                   speech_recognition_language="fr-FR")

audio_config = speechsdk.audio.AudioConfig(filename=filepath)

speech_recognizer = speechsdk.SpeechRecognizer(speech_config=speech_config, 
                                               audio_config=audio_config)
result = speech_recognizer.recognize_once()

print(result.reason, result.text)