Tuesday, January 15, 2013

HLS on Android

For Android devices to play HLS stream properly you have to assign application/vnd.apple.mpegurl content type to m3u8 playlist.


location /hls {
types {
application/vnd.apple.mpegurl m3u8;
}
alias /tmp/hls;
}


I want to thank module users in nginx-rtmp-ru google group for this solution.

No comments:

Post a Comment