
HLS not working
Hello guys,
I have an Iphone application that uploads small chunks of mp4 videos that I treat individually using ffmpeg
(ffmpeg -i inputFile.mp4 -vcodec libx264 -acodec libfaac -ab 128k -ar 44100 -intra -b 2000k -minrate 2000k -maxrate 2000k outputFile.ts)
and upon each submit l update the m3u8 playlist in order to have a live streaming playlist.
I have purchased JWPlayer yesterday now I am trying to setup the player using this code :
jwplayer('my-video').setup({
file: 'http://localhost/HLS/123123.m3u8',
width: '640',
height: '360',
skin: 'modieus'
});
The player periodically refreshes the playlist and the files are pulled from the server but they are not played and the player is stuck on the loading icon ...
How can I detect why the chunks aren't played ?
Thanks in advance.