“JS TTS” Respostas de código

JS TTS

var msg = new SpeechSynthesisUtterance();
msg.text = "Hello World";
window.speechSynthesis.speak(msg);
Tartaud

JS narra texto

// Narrate some text:
var msg = new SpeechSynthesisUtterance('Hello world!');
window.speechSynthesis.speak(msg);

// Cancel the narration:
window.speechSynthesis.cancel();
garzj

Respostas semelhantes a “JS TTS”

Perguntas semelhantes a “JS TTS”

Mais respostas relacionadas para “JS TTS” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código