src/pyams_media/skin/resources/flowplayer/index.html
changeset 0 fd39db613f8b
equal deleted inserted replaced
-1:000000000000 0:fd39db613f8b
       
     1 <!doctype html>
       
     2 
       
     3 <head>
       
     4 
       
     5    <!-- player skin -->
       
     6    <link rel="stylesheet" href="skin/functional.css">
       
     7 
       
     8    <!-- site specific styling -->
       
     9    <style>
       
    10    body { font: 12px "Myriad Pro", "Lucida Grande", sans-serif; text-align: center; padding-top: 5%; }
       
    11    .flowplayer { width: 80%; }
       
    12    </style>
       
    13 
       
    14    <!-- for video tag based installs flowplayer depends on jQuery 1.7.2+ -->
       
    15    <script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
       
    16 
       
    17    <!-- include flowplayer -->
       
    18    <script src="flowplayer.min.js"></script>
       
    19 
       
    20 </head>
       
    21 
       
    22 <body>
       
    23 
       
    24    <!-- the player -->
       
    25    <div class="flowplayer" data-swf="flowplayer.swf" data-ratio="0.4167">
       
    26       <video>
       
    27          <source type="video/webm" src="https://stream.flowplayer.org/bauhaus.webm">
       
    28          <source type="video/mp4" src="https://stream.flowplayer.org/bauhaus.mp4">
       
    29       </video>
       
    30    </div>
       
    31 
       
    32 </body>