mirror of
https://github.com/videojs/video.js.git
synced 2025-03-19 21:28:23 +02:00
54 lines
2.0 KiB
Plaintext
54 lines
2.0 KiB
Plaintext
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<title>Video.js Sandbox</title>
|
||
|
|
||
|
<link href="../src/css/video-js.css" rel="stylesheet" type="text/css">
|
||
|
|
||
|
<!--[if IE]>
|
||
|
<script src="https://getfirebug.com/releases/lite/1.4/firebug-lite.js"></script>
|
||
|
<!--<![endif]-->
|
||
|
|
||
|
<script src='../src/js/goog.base.js'></script>
|
||
|
<script src='../src/js/core.js'></script>
|
||
|
<script src='../src/js/lib.js'></script>
|
||
|
<script src='../src/js/events.js'></script>
|
||
|
<script src='../src/js/component.js'></script>
|
||
|
<script src='../src/js/player.js'></script>
|
||
|
<script src='../src/js/media.js'></script>
|
||
|
<script src='../src/js/media.html5.js'></script>
|
||
|
<script src='../src/js/media.flash.js'></script>
|
||
|
<script src='../src/js/controls.js'></script>
|
||
|
<script src='../src/js/tracks.js'></script>
|
||
|
<script src='../src/js/setup.js'></script>
|
||
|
<script src='../src/js/json.js'></script>
|
||
|
|
||
|
<script type="text/javascript" charset="utf-8">
|
||
|
// Easy access to test Flash over HTML5. Add ?flash to URL
|
||
|
if (window.location.href.indexOf("?flash") !== -1) {
|
||
|
videojs.options.techOrder = ["Flash"];
|
||
|
videojs.options.flash.swf = "../src/swf/video-js.swf";
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
<p>You can use /sandbox/ for writing and testing your own code. Nothing in /sandbox/ will get checked into the repo, except files that end in .example, so please don't edit or add those files. To get started make a copy of index.html.example and rename it to index.html.</p>
|
||
|
|
||
|
<video id="vid1" class="video-js vjs-default-skin" controls preload="auto" width="640" height="264"
|
||
|
poster="http://video-js.zencoder.com/oceans-clip.png"
|
||
|
data-setup='{}'>
|
||
|
<source src="http://video-js.zencoder.com/oceans-clip.mp4" type='video/mp4'>
|
||
|
<source src="http://video-js.zencoder.com/oceans-clip.webm" type='video/webm'>
|
||
|
<source src="http://video-js.zencoder.com/oceans-clip.ogv" type='video/ogg'>
|
||
|
<p>Video Playback Not Supported</p>
|
||
|
</video>
|
||
|
|
||
|
<script>
|
||
|
vid = document.getElementById("vid1");
|
||
|
</script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|