Skip to content

Commit

Permalink
Updated youtube.html to work
Browse files Browse the repository at this point in the history
  • Loading branch information
heff committed Aug 13, 2012
1 parent 0edfae5 commit fffa9dd
Showing 1 changed file with 24 additions and 5 deletions.
29 changes: 24 additions & 5 deletions tech/youtube/youtube.html
@@ -1,18 +1,37 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>VideoJS | HTML5 Video Player</title> <title>YouTube Test</title>


<link href="video-js.css" rel="stylesheet" type="text/css"> <link href="../../design/video-js.css" rel="stylesheet" type="text/css">


<!-- video.js must be in the <head> for older IEs to work. --> <!--[if IE]>
<script src="video.js"></script> <script src="https://getfirebug.com/releases/lite/1.4/firebug-lite.js"></script>
<!--<![endif]-->

<script src="../../src/core.js"></script>
<script src="../../src/lib.js"></script>
<script src="../../src/json.js"></script>

<script src="../../src/component.js"></script>
<script src="../../src/player.js"></script>
<script src="../../src/tech.js"></script>
<script src="../../src/controls.js"></script>
<script src="../../src/events.js"></script>
<script src="../../src/tracks.js"></script>

<script src="../../tech/html5/html5.js"></script>
<script src="../../tech/flash/flash.js"></script>

<script src="../../tech/youtube/youtube.js"></script>

<script src="../../src/setup.js"></script>


</head> </head>
<body> <body>


<video id="example_video_1" class="video-js vjs-default-skin" controls width="640" height="264" data-setup='{"techOrder":["youtube","html5"]}'> <video id="example_video_1" class="video-js vjs-default-skin" controls width="640" height="264" data-setup='{"techOrder":["youtube","html5"]}'>
<source src="http://www.youtube.com/watch?v=YjaZNYSt7o0" type='video/youtube'> <source src="http://www.youtube.com/watch?v=9bZkp7q19f0" type='video/youtube'>
</video> </video>


</body> </body>
Expand Down

0 comments on commit fffa9dd

Please sign in to comment.