mirror of
https://github.com/videojs/video.js.git
synced 2024-11-28 08:58:46 +02:00
ef321a8072
Removed demo source code from repository root. Was receiving pull requests for the release files instead of source files. This makes it more clear where to make changes.
20 lines
518 B
HTML
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>
|
|
|