As i'm doing voice based project for that purpose i want to return my Tamil language input in Tamil language with SpeechSynthesisUtterance i tried but i did not get the exact voice.Please anyone suggest me and let me know what i did wrong.
This is my code:
<!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>