在没有rtmp的情况下在jwplayer上播放m3u8文件

问题描述 投票:0回答:1

我通过在网络上进行了相当长的搜索而构建了这段代码,其中充满了尝试与各种玩家一起玩这个游戏的失败,

http://85.132.71.4:1935/turktv/ntv.sdp/playlist.m3u8

m3u8 流。我将把我的紧凑(粘贴到 html 文件中)代码放在这里,希望有人能指出我正确的方向。感谢您的阅读。

<html>
<head>
<title>test page</title>
</head>
<body>


<script type='text/javascript' src='http://dev.landgraaf.net/jwplayer.js'></script>

<div id='livefeed'></div>

<script type="text/javascript">
  jwplayer('livefeed').setup({
    'id': 'playerID',
    'width': '480',
    'height': '300',
    'provider': 'video',
    'file': 'http://85.132.71.4:1935/turktv/ntv.sdp/playlist.m3u8',
    'image': 'http://dev.landgraaf.net/webcam.jpg',
    'bufferlength':5,
    'modes': [
        {type: 'flash', src: 'http://dev.landgraaf.net/player.swf'},
        {
          type: 'html5',
          config: {
          levels: [ {'file': 'http://85.132.71.4:1935/turktv/ntv.sdp/playlist.m3u8'} ],
           'provider': 'video',
           'x-webkit-airplay': 'allow'
          }
        }
    ]
  });
</script>


</body>
</html>
html flash video-streaming jwplayer m3u8
1个回答
0
投票

M3U8 在 JW5 中无法以 Flash 模式运行。为此,您需要 JW6。以下是更多信息 - http://www.longtailvideo.com/support/jw-player/28856/using-apple-hls-streaming,如果您想试用我们,请联系我们 - http: //www.jwplayer.com/contact-us/

© www.soinside.com 2019 - 2024. All rights reserved.