如何在不下载文件的情况下以html格式流式传输windows media文件?我尝试了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文件?
发布于 2016-11-04 13:50:27
你不能。没有浏览器支持这种格式。
将音频文件转换为支持的格式。(例如,MP3;一切都支持它。)
https://stackoverflow.com/questions/40415729
复制相似问题