Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to play HTTP Live Streaming(HLS) in all PC browsers?

We have stored audio sources in WOWZA server.We are searching a audio player to play audio in Web Browser over RTMP or HTTP(HLS).

We have tested HTML5 audio tag, but it does not support RTMP and HLS streaming.

Tried :

<audio controls autoplay>
<source src="http://host-name/path/playlist.m3u8" type="audio/mpegurl">
Your browser does not support the audio element.
</audio>

Questions :

WHat about Jplayer,JWplayer and flowplayer?

Please let me know appropriate audio player for this or there is any solution in HTML5 ?

like image 269
Creative Learner Avatar asked Mar 24 '15 10:03

Creative Learner


1 Answers

Only Safari 6.0+ has native HLS support.

JWplayer has HLS audio-only support:

JWPlayer - Audio Demo

The open-source mediaelement.js also supports HLS to a degree.

like image 155
aergistal Avatar answered Oct 10 '22 09:10

aergistal