动态创建音频时提供多种格式(ogg,mp3)

时间:2014-05-07 11:38:09

标签: javascript html5 audio html5-audio dynamically-generated

使用html5音频时,您可以提供多种格式/编解码器:

<audio controls>
   <source src="horse.ogg" type="audio/ogg">
   <source src="horse.mp3" type="audio/mpeg"> <-- secondary format here
   Your browser does not support the audio element.
</audio>

我用

创建音频
var audio = new Audio('pathtomyaudio/myaudio.mp3');
audio.load();

有没有办法动态提供其他扩展程序,如ogg?

任何帮助表示赞赏:)

0 个答案:

没有答案