Sha256: cb32429dab731098ff152abc5bd229dbe348f3442ee301531e1bcd86131f7d4a
Contents?: true
Size: 858 Bytes
Versions: 15
Compression:
Stored size: 858 Bytes
Contents
<!DOCTYPE html> <html> <head> <link type="text/css" rel="stylesheet" href="../node_modules/video.js/dist/video-js.min.css" /> </head> <body> <video id="vid1" class="video-js vjs-default-skin" controls width="640" height="264" data-setup='{ "techOrder": ["youtube"], "sources": [{ "type": "video/youtube", "src": "https://www.youtube.com/watch?v=xjS6SftYQaQ"}] }' > </video> <script src="../node_modules/video.js/dist/video.js"></script> <script src="../dist/Youtube.js"></script> <script> // An example of playing with the Video.js javascript API // You can look at the doc there: http://docs.videojs.com/docs/guides/api.html videojs('vid1').ready(function() { var myPlayer = this; myPlayer.src({ type: 'video/youtube', src: 'https://www.youtube.com/watch?v=y6Sxv-sUYtM' }); }); </script> </body> </html>
Version data entries
15 entries across 15 versions & 1 rubygems