Run radio player with .m3u8 extension in html5

0

Can anyone give me an example of how to play a playlist of a radio in .m3u8 extension with an audio player in html5?

This appears when reporting the correct MIME

    
asked by anonymous 26.08.2014 / 19:09

1 answer

1

You need to provide the MIME type to work properly

<video width="352" height="198" controls>
    <source src="playlist.m3u8" type="application/x-mpegURL">
</video>
    
26.08.2014 / 19:12