<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body onload="myFunction()">
<script>
function myFunction() {
// Create the utterance object setting the chosen parameters
var utterance = new SpeechSynthesisUtterance();
var myarray = new Array(4);
myarray[0] = "Move Bay from door 10 to 20";
utterance.text = myarray[0];
utterance.lang = "ar-uk";
speechSynthesis.speak(utterance);
}
</script>
</body>
</html>
음성 합성 속성 문자의 텍스트를 전달 및 음성 여기아래 코드는 Chrome에서 잘 작동하지만 동일한 코드가 Internet Explorer에서 작동하지 않습니다. Internet Explorer에서 음성 합성을 사용하는 방법?
무료 SAPI WSR을 사용 (음성 API)를 가지고 , Internet Explorer에서는 전혀 지원되지 않습니다. – vronjec