A Pen by chandan688 on CodePen.
Created
March 27, 2022 01:07
-
-
Save HeNy007/10bf0ec16c4e2a764faf530ba13f7ea4 to your computer and use it in GitHub Desktop.
plyr with vast ads
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<video controls crossorigin playsinline poster="https://cdn.plyr.io/static/demo/View_From_A_Blue_Moon_Trailer-HD.jpg"> | |
<source src="https://livestream.knowtable.xyz:5443/show/streams/show.m3u8" type="application/x-mpegURL" size="720"> | |
<source src="https://livestream.knowtable.xyz:5443/show/streams/show.m3u8" type="application/x-mpegURL" size="480"> | |
<!-- Fallback for browsers that don't support the <video> element --> | |
</div> | |
<!-- Plyr resources and browser polyfills are specified in the pen settings --> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Change the second argument to your options: | |
// https://github.com/sampotts/plyr/#options | |
const player = new Plyr('video', {captions: {active: true}, ads: {enabled: true, tagUrl: 'https://pubads.g.doubleclick.net/gampad/ads?sz=640x480&iu=/124319096/external/single_ad_samples&ciu_szs=300x250&impl=s&gdfp_req=1&env=vp&output=vast&unviewed_position_start=1&cust_params=deployment%3Ddevsite%26sample_ct%3Dskippablelinear&correlator='}}); | |
// Expose player so it can be used from the console | |
window.player = player; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html, | |
body, | |
#container { | |
margin: 0; | |
padding: 0; | |
width: 100%; | |
height: 100%; | |
background: #000; | |
color: #fff; | |
overflow: hidden; | |
} | |
#container { | |
position: absolute; | |
text-align: center | |
} | |
video { | |
outline: 0 | |
} | |
.container { | |
margin: 50px auto; | |
max-width: 600px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment