这是我的代码。我正在尝试在xaamp服务器上运行它的.php文件中播放音频文件,但音频栏出现但完全禁用请帮助
<audio controls>
<source src="ypousaf.mp3" autoplay />
Your browser does not support the audio tag.
</audio>
答案 0 :(得分:0)
仅IE支持Mp3文件。 要在其他浏览器中播放音频文件,您需要将其转换为其他格式
以下是不同浏览器支持的格式列表。 您可以在http://www.w3schools.com/html/html5_audio.asp
找到更多信息音频格式和浏览器支持 目前,该元素有3种支持的文件格式:MP3,Wav和Ogg:
浏览器MP3 Wav Ogg Internet Explorer是否否 Chrome是是是 Firefox NO 更新:在Windows 7,Windows 8,Windows Vista和Android上运行的Firefox 21现在支持MP3 YES YES Safari YES YES NO 歌剧否是是
这是我用过的代码......
<!DOCTYPE html>
<html><body>
<audio controls>
<source src="Ellie Goulding - Burn - YouTube.mp3" autoplay />
Your browser does not support the audio tag.
</audio>
<audio controls>
<source src="Ellie Goulding - Burn - YouTube.mp3" type="audio/mpeg" autoplay>
Your browser does not support the audio element.
</audio>
</body>
</html>
使用firefox 29在两个扩展程序中都很完美,只有firefox支持mp3文件。