“JS TTS” Código de respuesta

JS TTS

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

JS Narre Text

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

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

Respuestas similares a “JS TTS”

Preguntas similares a “JS TTS”

Más respuestas relacionadas con “JS TTS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código