kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

video.html (465B)



      1 <!DOCTYPE>
      2 <html>
      3 <head>
      4 	<link href="https:////vjs.zencdn.net/4.7/video-js.css" rel="stylesheet">
      5 	<script src="https:////vjs.zencdn.net/4.7/video.js"></script>
      6 	<title>Video stream over Kore</title>
      7 </head>
      8 
      9 <body>
     10 
     11 <video class="video-js vjs-default-skin" width="640"
     12     height="240" controls preload="auto" data-setup='{"example_option":true}'>
     13 	<source src="/video.ogg" type="video/ogg">
     14 Your browser does not support the video tag.
     15 </video>
     16 
     17 </body>
     18 </html>