HTML5 stream m3u radio player

ぐ巨炮叔叔 提交于 2019-12-11 14:19:37

问题


I have a problem with building HTML5 audio player using m3u format.

I have tried do it like this:

<audio id="audio-player" src="http://fm101.uz:9900/mobile.m3u" type="audio/aacp" controls="controls"></audio>

回答1:


Instead of the m3u extension use the true url, you can discover this url opening the m3u file on winamp (or another audio program) and on the playlist window, right-click, properties and you can see "http://fm101.uz:9900/fm101_high" or something similar.

<audio src="http://fm101.uz:9900/fm101_high" controls="controls"> </audio>

http://jsfiddle.net/h4oo9012/1/



来源:https://stackoverflow.com/questions/26546013/html5-stream-m3u-radio-player

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!