Dynamic HLS Manifest

Hi all,


Let me start out with saying Im a complete novice with code. Ive been following along with some tutorials and have managed to create a basic TV App that streams .m3u8 files.


http://tv-tikilive-hls-live.hls.adaptive.level3.net/hls2/60.m3u8


Awesome.


The problem is when I try add a url like the one below. I does not play but if you put in into safari, VLC etc it plays perfectly. Any ideas how my app can handle this type of dynamic address.


Ive had to alter the address for security reasons but take my word it plays


http://82329.149.50.211/shls/LIVE%24TG4/11424.m3u8?start=LIVE&end=END&device=HLS

If these urls are defined in the xml, you need to escape "&" like below.

videoURL = videoURL.replace(/&/g, '&');
Dynamic HLS Manifest
 
 
Q