jwplayer,播放时无法播放播放列表

时间:2013-04-13 20:30:39

标签: streaming webcam jwplayer live-streaming

我正在使用jwplayer播放实时网络摄像头。我想在流媒体播放时播放播放列表中的广告。这是我展示直播的代码。有人可以帮忙吗?

<script type='text/javascript'>
      jwplayer('mediaspace').setup({
    'flashplayer': 'player.swf',
    'type': 'rtmp',
    'streamer': 'rtmp://localhost/oflaDemo',
    'autostart': 'true',
    'bufferlength': '3',
    'file': 'aaa',
    'controlbar': 'bottom',
    'width': '320',
    'height': '260'
  });
</script>

1 个答案:

答案 0 :(得分:0)

试试这个,它是使用JwPlayer 6

<script type='text/javascript'>
      jwplayer('mediaspace').setup({
    'flashplayer': 'player.swf',
    'autostart': 'true',
    'bufferlength': '3',
    'file': 'aaa',
    'controlbar': 'bottom',
    'width': '320',
    'height': '260',
    playlist: [{
sources: [{ 
//First video
   file: "rtmp://localhost/oflaDemo"
},{
//alternative video
file: "http://180.244.230.232:5080/live/streams/test.m3u8"
        }]
    }],
  });
</script>