Advertisement
adalrigopisano

Untitled

Nov 12th, 2023
1,462
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.11 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Page Title</title>
  5. </head>
  6. <body>
  7. <script src="https://ssl.p.jwpcdn.com/player/v/8.30.0/jwplayer.js"></script>
  8. <script> jwplayer.key = 'XSuP4qMl+9tK17QNb+4+th2Pm9AWgMO/cYH8CI0HGGr7bdjo';
  9. </script>
  10.     <div id="player"></div>
  11.     <script>
  12.         var playerInstance = jwplayer("player");
  13.         playerInstance.setup({
  14.             playlist: [{
  15.                 "title": "",
  16.                 "description": "",
  17.                 "sources": [
  18.                     {
  19.                         "default": false,
  20.                         "type": "mpd",
  21.                         "file":'https://dce-ac-live.cdn.indazn.com/dashdrm/dazn-linear-024/stream.mpd?p=web',
  22.                         "drm": {
  23.                             "clearkey": { "keyId": "82f8e2a17dac44c0a18f660479349c59", "key": "1b144f73e6fefe91cd05f850e2b589d0" }
  24.                         },
  25.                         "label": "0",
  26.                         "label": "Italian",
  27.                         "kind": "captions"
  28.                     }
  29.                 ]
  30.             }],
  31.             width: "100%",
  32.             height: "100%",
  33.             aspectratio: "16:9",
  34.             allowfullscreen: true,
  35.             autostart: true,
  36.             skin: {
  37.                 name: "",
  38.                 active: "RED",
  39.                 inactive: "yellow",
  40.                 background: ""
  41.             },
  42.             logo: {
  43.                 file: "", // URL o percorso del tuo logo
  44.                 link: "", // Link opzionale al tuo sito web
  45.                 position: "top-left", // Posizione del logo (puoi personalizzarla)
  46.                 margin: 0
  47.             }
  48.         });
  49.  
  50.         jwplayer("player").on("play", function(e){
  51.             jwplayer("player").setCurrentAudioTrack(0);
  52.         });
  53.     </script>
  54.     <style>
  55.         @keyframes blink {
  56.             0% { opacity: 1; }
  57.             50% { opacity: 0; }
  58.             100% { opacity: 1; }
  59.         }
  60.        
  61.         .jw-text-live::before {
  62.             background-color: red !important;
  63.             animation: blink 1s infinite;
  64.         }
  65.     </style>
  66. </body>
  67. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement