嗨我有一个问题我的JW播放器没有出现在我的浏览器中我试过其他浏览器它仍然没有显示,有一个<div>
包装它所以我设置宽度和高度到那个div仍然没有出现,我也试过移动视频播放器但它仍然没有显示出来。
这是我的代码:
<div class="videoplayerwrap">
<div id="se_video"></div>
<script type="text/javascript" src="//embed.scaleengine.net/user/barakyah-channel/7.x/jwplayer.js"></script>
<script>jwplayer.key="Z20sg3$ggS5FsdfDFGdR3tuktyDk5ne4vuRLfk50g=32="</script>
<script type="text/javascript">
jwplayer('#se_video').setup({
autostart: 'false',
sources: [
{ file: 'rtmp://barakyah-channel.videocdn.scaleengine.net/barakyah-channel/live/mp4:kollosal'},
{ file: 'http://barakyah-channel.videocdn.scaleengine.net/barakyah-channel/live/kollosal/playlist.m3u8'}
],
rtmp: {
'bufferlength': '5'
},
width: "100%",
aspectratio: "16:9",
androidhls: "true",
primary: "flash"
});
</script>
</div>
CSS
.videoplayerwrap {
float: left;
width: 808px;
}
答案 0 :(得分:0)
在设置元素
之前删除#
jwplayer('#se_video') -> jwplayer('se_video')