src/pyams_media/skin/resources/flowplayer/index.html
changeset 0 fd39db613f8b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/pyams_media/skin/resources/flowplayer/index.html	Wed Sep 02 15:31:55 2015 +0200
@@ -0,0 +1,32 @@
+<!doctype html>
+
+<head>
+
+   <!-- player skin -->
+   <link rel="stylesheet" href="skin/functional.css">
+
+   <!-- site specific styling -->
+   <style>
+   body { font: 12px "Myriad Pro", "Lucida Grande", sans-serif; text-align: center; padding-top: 5%; }
+   .flowplayer { width: 80%; }
+   </style>
+
+   <!-- for video tag based installs flowplayer depends on jQuery 1.7.2+ -->
+   <script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
+
+   <!-- include flowplayer -->
+   <script 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="https://stream.flowplayer.org/bauhaus.webm">
+         <source type="video/mp4" src="https://stream.flowplayer.org/bauhaus.mp4">
+      </video>
+   </div>
+
+</body>