
jwplayer-7.12.11 not working on mobile devices
I am using mp4 video. Video is stored on same server.
var player = jwplayer('player');
var w_height = $(document).height();
var w_width = $(document).width();
jwplayer("player").setup({
repeat: false,
file: "../videos/big_buck_bunny_720p_5mb.mp4",
playbackRateControls: false,
logo: {file: '../videos/learn.png', position: 'bottom-left', hide: false, class: 'jw-logo'},
stretching: "fill",
height: w_height,
autostart: false,
width: w_width,
controls: true
});
Video is appearing on the desktop but not on the mobile devices. Please suggest.
Thank you!