video.js - Playing m3u8 on any devices (IOS, Android, PC) -


is possible play m3u8 file using video.js on devices? far, able play them on android or ios. want play them on pc well.

this using no luck.

thanks help

<source src="http://www.domaine-name.com/name/playlist.m3u8" type='video/mp4'> 

from wikipedia:

an m3u file plain text file specifies locations of 1 or more media files. file saved "m3u" or "m3u" filename extension. each entry carries 1 specification. specification can 1 of following:

  • an absolute local pathname; e.g., c:\my music\heavysets.mp3
  • a local pathname relative m3u file location; e.g. heavysets.mp3
  • a url.

as m3u stores multimedia items locations, should parse , play them using proper audio/video playback lib.

take @ question

edit: link in comment points m3u, should link multimedia files:

content of first m3u:

#extm3u #ext-x-stream-inf:program-id=1,bandwidth=613798 http://tveurope1.zion3media.com:1935/demoweb1/mystream/playlist.m3u8?wowzasessionid=506379083 

when follow link playlist this:

#extm3u #ext-x-allow-cache:no #ext-x-targetduration:10 #ext-x-media-sequence:1343 #extinf:11, media_1343.ts?wowzasessionid=506379083 #extinf:12, media_1344.ts?wowzasessionid=506379083 #extinf:9, media_1345.ts?wowzasessionid=506379083 

example of multimedia resource playlist:

http://tveurope1.zion3media.com:1935/demoweb1/mystream/media_1343.ts?wowzasessionid=506379083 

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -