我的想法是创建一个JS,使用Google“TTS Api”动态播放任何文本作为音频文件。这是我的JS代码的一部分,也就是我在Chrome中执行文件时遇到的错误。不知何故,我无法在for-Loop中访问我的数组中的某些音频对象。
数组text_part
包含我要使用的文本。
数组audioElementListe
包含不同的音频对象。
我得到的错误: 未捕获的TypeError:无法调用未定义的方法'play'
BTW英语不是我的母语,我是一个完全的JS-Beginner;)
audioElementListe = new Array(3);
function start()
{
text_part = new Array(3);
text_part[0]='Hallo';
text_part[1]='Florian';
text_part[2]='Haha';
for(var i = 0; i < text_part.length; i++)
{
audioElementListe[i] = new Audio("");
}
for(var i = 0; i < text_part.length; i++)
{
var help = 0;
var url = "http://translate.google.com/translate_tts?tl=de&q="+text_part[i];
audioElementListe[i] = new Audio("");
document.body.appendChild(audioElementListe[i]);
audioElementListe[i].src=url;
audioElementListe[i].addEventListener('canPlay', function()
{audioElementListe[i].play();}, false);
//Error seems to be right here
audioElementListe[i].addEventListener('ended', function()
{audioElementListe[i++].play();}, false);
}
audioElementListe[0].play();
}
编辑:通过不创建新的音频对象但改变它的来源,制定了“解决方法”。
<html>
<head>
</head>
<body>
<script type="text/javascript">
var audioElement;
var i;
function start()
{
i=0;
text_part = new Array(3);
text_part[0]='Hallo';
text_part[1]='Florian';
text_part[2]='Haha';
var url = "http://translate.google.com/translate_tts?tl=de&q="+text_part[i];
audioElement = new Audio("");
document.body.appendChild(audioElement);
audioElement.src=url;
audioElement.addEventListener('canPlay', function() {audioElement.play();}, false);
audioElement.addEventListener('ended', function()
{
i++;
if(i<text_part.length)
{
var url = "http://translate.google.com/translate_tts?tl=de&q="+text_part[i];
audioElement.src=url;
audioElement.addEventListener('canPlay', function() {audioElement.play();}, false);
audioElement.play();
}
;}, false);
audioElement.play();
}
答案 0 :(得分:0)
我们需要在等效长度的大多数部分中打破要读取的字符串并引入适当的js语句setTimeOut(string,dt)