Reputation: 319
This is my first time I'm working with dash.js and I want to know if I can play .m3u8 playlist with dash.js. If not can you suggest another way of doing it.
Upvotes: 0
Views: 1657
Reputation: 1080
No, dash.js only supports MPEG-DASH. See https://github.com/Dash-Industry-Forum/dash.js/wiki for more information on dash.js.
M3U8 playlists are used in HLS which is a different streaming format. If you google "hls html5 player" you'll find a variety of open-source and commercial solutions to choose from.
Upvotes: 2