项目作者: videojs

项目描述 :
YouTube playback technology for Video.js
高级语言: JavaScript
项目地址: git://github.com/videojs/videojs-youtube.git
创建时间: 2013-04-05T10:08:03Z
项目社区:https://github.com/videojs/videojs-youtube

开源协议:

下载


YouTube Playback Technology
for Video.js

Greenkeeper badge

Install

You can use bower (bower install videojs-youtube), npm (npm install videojs-youtube) or the source and build it using npm run build. Then, the only file you need is dist/Youtube.min.js.

Version Note

Use branch vjs4 if you still using old VideoJS v4.x.

Example

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link type="text/css" rel="stylesheet" href="../node_modules/video.js/dist/video-js.min.css" />
  5. </head>
  6. <body>
  7. <video
  8. id="vid1"
  9. class="video-js vjs-default-skin"
  10. controls
  11. autoplay
  12. width="640" height="264"
  13. data-setup='{ "techOrder": ["youtube"], "sources": [{ "type": "video/youtube", "src": "https://www.youtube.com/watch?v=xjS6SftYQaQ"}] }'
  14. >
  15. </video>
  16. <script src="../node_modules/video.js/dist/video.min.js"></script>
  17. <script src="../dist/Youtube.min.js"></script>
  18. </body>
  19. </html>

See the examples folder for more

How does it work?

Including the script Youtube.min.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:

Options

It supports every regular Video.js options. Additionally, you can change any YouTube parameter. Here is an example of setting the iv_load_policy parameter to 1.

  1. <video
  2. id="vid1"
  3. class="video-js vjs-default-skin"
  4. controls
  5. autoplay
  6. width="640" height="264"
  7. data-setup='{ "techOrder": ["youtube"], "sources": [{ "type": "video/youtube", "src": "https://www.youtube.com/watch?v=xjS6SftYQaQ"}], "youtube": { "iv_load_policy": 1 } }'
  8. >
  9. </video>

YouTube controls

Because controls is already a Video.js option, to use the YouTube controls, you must set the ytControls parameter.

  1. <video
  2. id="vid1"
  3. class="video-js vjs-default-skin"
  4. controls
  5. autoplay
  6. width="640" height="264"
  7. data-setup='{ "techOrder": ["youtube"], "sources": [{ "type": "video/youtube", "src": "https://www.youtube.com/watch?v=xjS6SftYQaQ"}], "youtube": { "ytControls": 2 } }'
  8. >
  9. </video>

Custom Player Options

If you need to set any additional options on the YouTube player, you may do so with the customVars parameter:

  1. <video
  2. id="vid1"
  3. class="video-js vjs-default-skin"
  4. controls
  5. autoplay
  6. width="640" height="264"
  7. data-setup='{ "techOrder": ["youtube"], "sources": [{ "type": "video/youtube", "src": "https://www.youtube.com/watch?v=xjS6SftYQaQ"}], "youtube": { "customVars": { "wmode": "transparent" } } }'
  8. >
  9. </video>

Special Thank You

Thanks to Steve Heffernan for the amazing Video.js and to John Hurliman for the original version of the YouTube tech

License

The MIT License (MIT)

Copyright (c) Benoit Tremblay trembl.ben@gmail.com and videojs-youtube contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.