view source
JavaScript
console.log('hello');
window.speechSynthesis.onvoiceschanged = () => {
this.voices = window.speechSynthesis.getVoices();
console.log(this.voices);
};
var input = $('<input>').val('hello').css({display:'block',fontSize:32});
var btn = $('<button>').text('talk');
$('#demo').append(input).append(btn);
var voices = window.speechSynthesis.getVoices();
function talk(v){
voices = window.speechSynthesis.getVoices();
var voiceJa = voices[5];
var utter = new SpeechSynthesisUtterance(v);
utter.voice = voiceJa;
utter.volume = 1;
utter.rate = 1;
utter.pitch = 1;
utter.lang = 'ja-JP';
voices = window.speechSynthesis.getVoices();
utter.voice = voices[1];
console.log(utter);
voices.forEach(function(v, i){
if(v.name.match(/日本/)){
utter.voice = voices[i];
}
});
window.speechSynthesis.speak(utter);
}
btn.on('click', function(){
var text = input.val();
talk(text);
})
CSS
HTML
ページのソースを表示 : Ctrl+U , DevTools : F12
view-source:https://hi0a.com/demo/-js/js-speech-hello/
ABOUT
hi0a.com 「ひまアプリ」は無料で遊べるミニゲームや便利ツールを公開しています。
プログラミング言語の動作デモやWEBデザイン、ソースコード、フロントエンド等の開発者のための技術を公開しています。
必要な機能の関数をコピペ利用したり勉強に活用できます。
プログラムの動作サンプル結果は画面上部に出力表示されています。
環境:最新のブラウザ GoogleChrome / Windows / Android / iPhone 等の端末で動作確認しています。
画像素材や音素材は半分自作でフリー素材配布サイトも利用しています。LINK参照。
動く便利なものが好きなだけで技術自体に興味はないのでコードは汚いです。
途中放置や実験状態、仕様変更、API廃止等で動かないページもあります。