代码示例:

<!DOCTYPE html>
<!--
    Copyright 2018 Novage LLC.
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
        http://www.apache.org/licenses/LICENSE-2.0
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
-->
<html lang="en">
<head>

    <meta charset="UTF-8">

    <title>JWPlayer with hls.js engine and P2P demo</title>

    <script src="https://cdn.jsdelivr.net/npm/[email protected]/build/p2p-media-loader-core.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/[email protected]/build/p2p-media-loader-hlsjs.min.js"></script>
    <script src="./hola-jwplayer-hlsjs.min.js"></script>

    <script src="https://content.jwplatform.com/libraries/aG3IMhIy.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>

    <style>
        #wrapper {
            width: 720px;
            margin-left: auto;
            margin-right: auto;
            display: block;
        }
    </style>

</head>
<body>
    <div id="wrapper">
        <div id="player"></div>
    </div>

    <script>
      jwplayer.key = "uoW6qHjBL3KNudxKVnwa3rt5LlTakbko9e6aQ6VUyKQ=";
        if (Hls.isSupported() && p2pml.hlsjs.Engine.isSupported()) {
            var engine = new p2pml.hlsjs.Engine();
            var player = jwplayer("player");
            player.setup({
                file: "<?php echo($_GET['url']);?>",
             	 playbackRateControls: true,
            });
            var provider = require("@hola.org/jwplayer-hlsjs");
            provider.attach();
            p2pml.hlsjs.initJwPlayer(player, {
                liveSyncDurationCount: 7, // To have at least 7 segments in queue
                loader: engine.createLoaderClass()
            });
        } else {
           var player = jwplayer("player");
          player.setup({
            autostart: true,
                sources: [{
                  file: "<?php echo($_GET['url']);?>",
                   type: "mp4"
                }],
          });
        }
    </script>

</body>
</html>

整合包下载:t1

作者 admin

发表评论

您的电子邮箱地址不会被公开。