Skip to content Skip to sidebar Skip to footer

Javascript Text To Speech Arabic

I'm trying to make SpeechSynthesisUtterance work for Arabic It's working fine for English But when Arabic is used Any idea what I'm doing wrong?

Solution 1:

The SpeechSynthesisUtterance function doesn't support Arabic, and only supports the following languages with their respective voices :

speechSynthesis.onvoiceschanged = function() {
  var voices = this.getVoices();
  console.log(voices);
};

Post a Comment for "Javascript Text To Speech Arabic"