JWPlayer control panel error while playing HLS file

I have jwplayer installed, which plays the file mp4as it should. At the same setting, using the file hls, the control panel “sticks” to the player and does not disappear when the user cursor is outside the image.

Here is an example of a player with two different files: the HLS file on the top, on which there is a control panel error, and the mp4 file on the bottom, which works fine: http://streaming2.cinely.com/title/1

Here is my jwplayer setup:

playerInstance.setup({
    skin: "glow",
    icons: false,
    width: '100%',
    height: '100%',
    sources: sources,
    controlbar: 'bottom',
    plugins: {
        'overlay': {
            data: data['Data'],
            beforeOverlayUrl: '/static/plugins/overlay/templates/beforeOverlay.html',
            afterOverlayUrl: '/static/plugins/overlay/templates/afterOverlay.html'
        }
    },
    // file: 'http://stream.flowplayer.org/bauhaus.mp4',
});

Why is this problem occurring and how can I fix it for the hls file?

+4
source share

All Articles