Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <html lang="en">
<head>
    <meta charset="UTF-8">
    <title>CDNBye Clappr Demo</title>
    <!-- Clappr Builds -->
    <script src="//cdn.jsdelivr.net/npm/@clappr/player@0.4.7/dist/clappr.min.js"></script>
    <script type="text/javascript" src="//cdn.jsdelivr.net/gh/clappr/clappr-level-selector-plugin@0.3.0/dist/level-selector.min.js"></script>
    <!-- P2PEngine -->
    <script src="https://cdn.jsdelivr.net/npm/swarmcloud-hls@latest/dist/p2p-engine.min.js"></script>
    <!-- P2P Clappr Plugin -->
    <script src="https://cdn.jsdelivr.net/npm/swarmcloud-hls@latest/dist/clappr-p2p-plugin.min.js"></script>
</head>
<body>
<div id="player"></div>
<h3>download info:</h3>
<p id="info"></p>
<script>
    const isHlsjsSupported = Clappr.HLS.HLSJS.isSupported
    Clappr.HLS.HLSJS.isSupported = function() {
        if (document.createElement('video').canPlayType('application/vnd.apple.mpegurl')
            && /Safari/.test(navigator.userAgent)
            && !/Chrome/.test(navigator.userAgent)) {
            return false
        }
        return isHlsjsSupported()
    }
    var p2pConfig = {
        // logLevel: 'debug',
        swFile: './sw.js',
        live: false,        // set to true in live mode
        getStats: function (totalP2PDownloaded, totalP2PUploaded, totalHTTPDownloaded) {
            var total = totalHTTPDownloaded + totalP2PDownloaded;
            document.querySelector('#info').innerText = `p2p ratio: ${Math.round(totalP2PDownloaded/total*100)}%, saved traffic: ${totalP2PDownloaded}KB, uploaded: ${totalP2PUploaded}KB`;
        },
        // trackerZone: 'hk',        // if using Hongkong tracker
        // trackerZone: 'us',        // if using USA tracker
        // token: YOUR_TOKEN
        // Other p2pConfig options provided by CDNBye
    }
    if (!Clappr.HLS.HLSJS.isSupported()) {
        // use ServiceWorker based p2p engine if hls.js is not supported, need additional file sw.js
        new P2pEngineHls.ServiceWorkerEngine(p2pConfig)
    }
    P2PEngineHls.tryRegisterServiceWorker(p2pConfig).then(() => {
        var player = new Clappr.Player(
            {
                source: "https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8",
                parentId: "#player",
                autoPlay: true,
                plugins: [LevelSelector, SwarmCloudClapprPlugin],
                playback: {
                    hlsjsConfig: {
                        maxBufferSize: 0,       // Highly recommended setting in live mode
                        maxBufferLength: 12,     // Highly recommended setting in live mode
                        liveSyncDurationCount: 10,   // Highly recommended setting in live mode
                        // Other hlsjsConfig options provided by hls.js
                        p2pConfig
                    }
                }
            });
    })

</script>
</body>
</html>

              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console