因为我正在为此目的而进行基于语音的项目,所以我想用我尝试过的SpeechSynthesisUtterance以泰米尔语返回我的泰米尔语输入,但我没有获得确切的语音。请有人提出建议,让我知道我做错了什么
这是我的代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script>
var utterance = new SpeechSynthesisUtterance('Hello,உங்கள் பதிவு செயல்முறை நிறைவடைந்தது');
utterance.lang='ta-IN'; // for US english, en-GR for british
window.speechSynthesis.speak(utterance);
</script>
</body>
</html>