如何在html中传输wma文件(windows媒体文件)

时间:2016-11-04 05:14:57

标签: html html5 audio web

如何在不下载的情况下以html格式传输Windows媒体文件 文件 ? 我尝试使用html音频,嵌入标签,但wma文件不支持

<audio controls="mycontrol" height="50" width="50">
 <source src="music.mp3" type="audio/mp3" />
 <source src="music.ogg" type="audio/ogg" />
<embed height="50" width="50" src="music.mp3" />
</audio>

流式传输或播放wma文件的其他任何方式?

1 个答案:

答案 0 :(得分:2)

你不能。没有浏览器支持这种格式。

将音频文件转换为支持的格式。 (MP3,例如;一切都支持它。)

相关问题