forked from flowplayer/flowplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (24 loc) · 1.01 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!doctype html>
<head>
<!-- player skin -->
<link rel="stylesheet" type="text/css" href="skin/minimalist.css">
<!-- site specific styling -->
<style type="text/css">
body { font: 12px "Myriad Pro", "Lucida Grande", sans-serif; text-align: center; padding-top: 5%; }
.flowplayer { width: 80%; }
</style>
<!-- flowplayer depends on jQuery 1.7.1+ (for now) -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<!-- include flowplayer -->
<script type="text/javascript" src="flowplayer.min.js"></script>
</head>
<body>
<!-- the player -->
<div class="flowplayer" data-swf="flowplayer.swf" data-ratio="0.4167">
<video>
<source type="video/webm" src="http://stream.flowplayer.org/bauhaus/624x260.webm">
<source type="video/mp4" src="http://stream.flowplayer.org/bauhaus/624x260.mp4">
<source type="video/ogv" src="http://stream.flowplayer.org/bauhaus/624x260.ogv">
</video>
</div>
</body>