登録出来たので単に登録出来てなかっただけの模様。。 改めて登録します。
ブラウザでTTSを使用してみる
ブラウザでTTS(テキスト トゥ スピーチ)を使用してみた
var Speech = new SpeechSynthesisUtterance(); Speech.lang = 'ja-JP'; Speech.volume = 1; Speech.rate = 1; Speech.pitch = 1; Speech.text = 'ほげほげ'; window.speechSynthesis.speak(Speech);
ボリューム
volume = [0 – 1];
レート(速度)
rate = [0 – 1];
ピッチ(トーン?)
pitch = [0 – 1];
検索
コメントを残す