37670f52 by David LaPalomento

Merge pull request #21 from videojs/issue/example-explanation

Add some explanation text to the example page. Fixes #15.
2 parents f726e987 a3fd4521
...@@ -33,8 +33,24 @@ ...@@ -33,8 +33,24 @@
33 <!-- bunnies --> 33 <!-- bunnies -->
34 <script src="test/tsSegment-bc.js"></script> 34 <script src="test/tsSegment-bc.js"></script>
35 35
36 <style>
37 body {
38 font-family: Arial, sans-serif;
39 }
40 .info {
41 background-color: #eee;
42 border: thin solid #333;
43 border-radius: 3px;
44 padding: 0 5px;
45 }
46 </style>
47
36 </head> 48 </head>
37 <body> 49 <body>
50 <div class="info">
51 <p>The video below is an <a href="https://developer.apple.com/library/ios/documentation/networkinginternet/conceptual/streamingmediaguide/Introduction/Introduction.html#//apple_ref/doc/uid/TP40008332-CH1-SW1">HTTP Live Stream</a>. On desktop browsers other than Safari, the HLS plugin will polyfill support for the format on top of the video.js Flash tech.</p>
52 <p>Due to security restrictions in Flash, you will have to load this page over HTTP(S) to see the example in action.</p>
53 </div>
38 <video id="video" 54 <video id="video"
39 class="video-js vjs-default-skin" 55 class="video-js vjs-default-skin"
40 height="300" 56 height="300"
......