JW HLS流媒体与高清按钮

时间:2014-03-19 10:22:16

标签: jwplayer m3u8

民间,

我在我的网站上使用JW高级版,我希望在所有设备,笔记本电脑和台式机中使用JW播放器播放我的VOD内容,其中HD按钮显示多种风格。

我用这段代码来展示播放器,

    <script type='text/javascript'>
        jwplayer('myElement').setup({
        playlist: [{
                image:"poster.jpg",

                sources: [{
              file: "http://54.84.148.121/mediacache/_definst_/mp4:kalturanew/content/entry/data/0/0/0_piphfrui_0_fkzp15ye_1.mp4/playlist.m3u8",
              label: "720p SD"
            },{file: "http://54.84.148.121/mediacache/_definst_/mp4:kalturanew/content/entry/data/0/0/0_piphfrui_0_5gg8sfep_1.mp4/playlist.m3u8",
              label: "560p SD"
            }]

           }],            
            height: "100%",
            width: "100%",
            abouttext: "Konnect+"
          });
    </script>

但我没有在播放器控制栏中获得高清按钮。

但是我使用了http://www.longtailvideo.com/support/jw-player/29393/hls-adaptive-stream/

中所述的myManifest.m3u8文件
    <div id="myElement">Loading the player...</div>
    <script type='text/javascript'>
        jwplayer('myElement').setup({
        playlist: [{
                image:"Biryani-Release-poster.jpg",
                file: "myManifest.m3u8"
           }],            
            height: "55%",
            width: "50%",
            abouttext: "Konnect+"
          });
    </script>

myManifest.m3u8:

    #EXTM3U
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=160000,RESOLUTION=480x256 1280/http://54.84.148.121/mediacache/_definst_/mp4:kalturanew/content/entry/data/0/0/0_piphfrui_0_fkzp15ye_1.mp4/playlist.m3u8
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=83200,RESOLUTION=480x256 640/http://54.84.148.121/mediacache/_definst_/mp4:kalturanew/content/entry/data/0/0/0_piphfrui_0_5gg8sfep_1.mp4/playlist.m3u8

这表示它无效m3ub:没有级别可以玩.. 这是链接http://uniqueegroup.com/hlsTest.html

有人能建议我正确的方式吗?

由于

1 个答案:

答案 0 :(得分:0)

在.m3u8之后,你必须使用以下

?dimension = 720p而不是1280 / http,因为它不会检测到m3u8中的http网址。我已经检查过您的演示,并且当您进行此更正时它将起作用。