Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.29 KB

README.md

File metadata and controls

26 lines (19 loc) · 1.29 KB

Video.js - YouTube Source Support

Allows you to use YouTube URL as source with Video.js.

How does it work?

Including the script vjs.youtube.js will add the YouTube as a tech. You just have to add it to your techOrder option. Then, you add the option src with your YouTube URL.

It supports:

You must use the last version of VideoJS available in the folder lib, the current version on CDN will not work until it is updated

Here is an example:

<link href="video-js.css" rel="stylesheet">
<script src="video.js"></script>
<script src="vjs.youtube.js"></script>
<video id="vid1" src="" class="video-js vjs-default-skin" controls preload="auto" width="640" height="360" data-setup='{ "techOrder": ["youtube"], "src": "http://www.youtube.com/watch?v=xjS6SftYQaQ&list=SPA60DCEB33156E51F" }'></video>

Additional Informations

ytcontrols: Display the YouTube controls instead of Video.js.

##Special Thank You Thanks to John Hurliman for the original code on the old Video.js