Hi.
Using HLS streaming to all browsers. Safari displaying labels fine, but Chrome/Firefox don't.
What can I do to get quality switch.
For some reason, I don't have "base" playlist.m3u8, containing streams, only discrete.
My config:
jwplayer('video_player_1').setup({
width: '100%',
height: '',
image: '',
autostart: 'false',
aspectratio: '16:9',
type: 'hls',
hlshtml: true,
hlsLabels: { "3300": "1080p", "1300" : "720p", "850":"480p" },
qualityLabels: { "3300": "1080p", "1300" : "720p", "850":"480p" },
sources: [
{file: 'http://localhost:3000/broadcast/access/live/1/hls/hd/playlist.m3u8', 'label': 'HD'},
{file: 'http://localhost:3000/broadcast/access/live/1/hls/sd/playlist.m3u8', 'label': 'SD'},
{file: 'http://localhost:3000/broadcast/access/live/1/hls/low/playlist.m3u8', 'label': 'LOW'},
],
});
Thanks!
↧