2016-10-28 6 views
0

native에서 Google US English으로 음성을 변경하려고 시도하면 성공하지 못합니다.네이티브 이외의 음성을 사용하는 SpeechSynthesisUtterance

https://jsfiddle.net/uv2k0qws/

function speak(text) { 
    var msg = new SpeechSynthesisUtterance(); 
    var voices = speechSynthesis.getVoices(); 
    msg.volume = 1; 
    msg.rate = 1; 
    msg.pitch = 2; 
    msg.text = text; 
    msg.lang = "en-US"; 
    msg.name = "Google US English"; 
    msg.voiceURI = "Google US English" 
    speechSynthesis.speak(msg); 
} 
speak('Attention! This is a test.'); 

모든 단서 : 이것은 내가 사용하고있는 코드? 감사합니다

답변

1

이 작동 :

var utterance = new SpeechSynthesisUtterance(); 

    utterance.onstart = function (event) { 
     console.log('The utterance started to be spoken.') 
    }; 

    window.speechSynthesis.onvoiceschanged = function() { 

     voices = window.speechSynthesis.getVoices(); 
     utterance.voice = voices.filter(function (voice) { return voice.lang == 'pt-BR'; })[0]; 

    } 


    $(document).ready(function() { 
     utterance.text = "Bom dia amigos!"; 
     window.speechSynthesis.speak(utterance) 
    })