mirror of
https://github.com/videojs/video.js.git
synced 2024-11-28 08:58:46 +02:00
23 lines
643 B
HTML
23 lines
643 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 preload="none" 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'>
|
|
</video>
|
|
|
|
</body>
|
|
</html>
|