I implement playing VR file in webpage using JWPlayer according to your guide.
When I uploaded file in my dashboard video list, then it working no problem
But I uploaded file in my own file server. And I used the file, then is not working.
Can I play VR files that I put on the outside file server?
** working
jwplayer("jwplayer").setup({
hlshtml: true,
playlist: [{
title: 'Caminandes VR',
mediaid: 'BhUOejDZ',
stereomode: 'monoscopic',
file: "http://content.jwplatform.com/videos/BhUOejDZ-S42bGMkU.mp4"
}]
});
** not working
jwplayer("jwplayer").setup({
hlshtml: true,
playlist: [{
title: 'Caminandes VR',
stereomode: 'monoscopic',
file: "http://cbs-vod.gscdn.com:8080/cbsv/cbsvod/test/vr2.MP4"
}]
});
↧