Tanner
Tanner

Reputation: 430

Video.js and YouTube

I've been unable to get the YouTube plugin working with videoJS. I have what I believe is the latest versions of video.js and vjs.youtube.js. Here's the code I'm using.

<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=7woVTuN8k3c" }'>
</video>

Any ideas about what I'm doing wrong?

EDIT: Here's a link to a jsfiddle example. Actually, Firefox and Safari are both working for me, but Chrome and IE do not. Are these supported?

Upvotes: 1

Views: 4827

Answers (2)

Cameron Tangney
Cameron Tangney

Reputation: 678

I've posted an example of getting youtube working on another question: enabling youtube playback with video.js wrapper

Not sure if that helps your issue - but there are a few working examples linked from there that work on chrome for me (linux/osx).

Upvotes: 0

PiLHA
PiLHA

Reputation: 2374

You need to use a plugin to run YouTube videos in Video.js

See my example

Upvotes: 3

Related Questions