“Teks untuk berbicara menggunakan JavaScript” Kode Jawaban

SMS ke Pidato dalam Kode JavaScript

const speak = (msg) => {
  const sp = new SpeechSynthesisUtterance(msg);
  [sp.voice] = speechSynthesis.getVoices();
  speechSynthesis.speak(sp);
}

speak('Hi, Welcome to Javascript Text to Speech. It is really awesome.');
Akash

Teks untuk berbicara menggunakan JavaScript

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

Pidato untuk SMS di JS

function readOutLoud(message) {
  var speech = new SpeechSynthesisUtterance();

  // Set the text and voice attributes.
  speech.text = message;
  speech.volume = 1;
  speech.rate = 1;
  speech.pitch = 1;

  window.speechSynthesis.speak(speech);
}
The Gem Dev

Jawaban yang mirip dengan “Teks untuk berbicara menggunakan JavaScript”

Pertanyaan yang mirip dengan “Teks untuk berbicara menggunakan JavaScript”

Lebih banyak jawaban terkait untuk “Teks untuk berbicara menggunakan JavaScript” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya