SGvagon

Untitled

Feb 14th, 2021
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <script language="JavaScript"> var tag = document.createElement('script');
  2. tag.src = "https://www.youtube.com/iframe_api";
  3. var firstScriptTag = document.getElementsByTagName('script')[0];
  4. firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
  5. var player{SIMPLETEXT};
  6.  
  7. function onYouTubeIframeAPIReady() {
  8. player{SIMPLETEXT} = new YT.Player('player{SIMPLETEXT}');
  9. }
  10.  
  11. function convertMToS(hms){
  12.  
  13. // your input string
  14. var a = hms.split(':'); // split it at the colons
  15.  
  16. // minutes are worth 60 seconds. Hours are worth 60 minutes.
  17. var seconds = (+a[0]) * 60 * 60 + (+a[1]) * 60 + (+a[2]);
  18. console.log(seconds);
  19. return seconds;
  20. }</script>
  21. <div class="ytplayer"><iframe id="player{SIMPLETEXT}" class="ytplayerframe"width="467px"height="263px"src="http://www.youtube.com/embed/{SIMPLETEXT}?enablejsapi=1&rel=0&modestbranding=0&color=white&controls=1"frameborder="0"allowfullscreen></iframe></div>
Advertisement
Add Comment
Please, Sign In to add comment