I have used JW Player plugin in my joomla website. We have a lot of videos to upload in our website, so we are using Amazon. In the desktop webbrowser the controls of player are working fine. But in mobile and safari webbrowser the controls are not shown properly.
This is the code I have added for amazon tag({amazon}{/amazon}
).
<script type=\"text/javascript\">
jwplayer('{SOURCE}').setup({
'playlist': [{
sources: [{
'file':'https://s3.amazonaws.com/qa-mp4format/{SOURCE}'
},{
'file':'rtmp://srzg2rz4587c9.cloudfront.net/cfx/st/mp4:{SOURCE}'
}]
}],
'image': '{PLAYER_POSTER_FRAME_REMOTE}',
'height': '{HEIGHT}',
'width': '{WIDTH}',
'autostart': '{PLAYER_AUTOPLAY}',
'repeat': '{PLAYER_LOOP}',
'primary': 'flash',
'controls': '{JWPLAYER_CONTROLS}'
});
Please help me to solve this problem.