我试图使用网络语音 api 用葡萄牙语转录一个单词,我将属性设置为“pt-BR”(不幸的是,不支持葡萄牙语 - 欧洲语),但总是用英语回复。
有人可以帮忙吗?
谢谢
代码:
<script type="text/javascript">
var synth = window.speechSynthesis;
function falatarea(){
var utteranceY = new SpeechSynthesisUtterance();
utteranceY.text = "teste";
utteranceY.lang = "pt-BR";
utteranceY.voice = "pt-BR";
window.speechSynthesis.speak(utteranceY);
}
</script>