1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-31 11:26:45 +02:00
video.js/tech/youtube/youtube.html
2012-08-13 13:34:40 -07:00

20 lines
518 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>VideoJS | HTML5 Video Player</title>
<link href="video-js.css" rel="stylesheet" type="text/css">
<!-- video.js must be in the <head> for older IEs to work. -->
<script src="video.js"></script>
</head>
<body>
<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'>
</video>
</body>
</html>