By default m3u8 file playing Mac Safari browser, but it is not playing in other browsers. What need to be done to play all browser both support HTML5 and non HTML5?

Sri

link|improve this question

54% accept rate
feedback

2 Answers

I don't exactly understand what the deal is with .m3u8 playlists... but I don't particularly like them.. That said, this seems to think it does what you want... github / etianen / html5media

HTML5 video and audio tags make embedding media into documents as easy as embedding an image. All it takes is a single or tag. HTML5 allows you to embed video and audio into your document...

All you have to do is embed a javascript in the of your HTML doc, and some sort of magic, or lack thereof... does the rest..

<script src="/path/to/your/html5media.min.js"></script>

I was able to play .m3u8 movies, streaming from a Wowza server in desktop browsers via a native html5 embed, like...

<video src="video.mp4" width="320" height="240" controls preload></video>

I have NOT, however, yet been able to get them to go "fullscreen" via native HTML controls... but I'm looking into it..

link|improve this answer
feedback

I have not found any plugins in PC browsers can play the M3U8 Live Streaming.I am working for it.But I found i can make a program in a server and play a new stream which be changed by my server. The MpegTS is a splited video.So you can recieve MPEGTS blocks and send it out in a same pipe to VideoLan.Then you will found you have recieved a Live! I am writing some in SilverLight to let it can play M3U8 Live.But I found the MpegTS file splitter is difficult......But I hope my idea can help you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.