play - mediagoom/mg GitHub Wiki

Once your file are published in a Web Server you can play them.

Look at the Media goom sample player project to see how to play adapting on the device.

For mpeg-dash you can just use this snipet on your page:

<script src="http://cdn.dashjs.org/latest/dash.all.min.js"></script>
...
<style>
    video {
       width: 640px;
       height: 360px;
    }
</style>
...
<body>
   <div>
       <video data-dashjs-player autoplay src="[url of your source]" controls>
       </video>
   </div>
</body>
⚠️ **GitHub.com Fallback** ⚠️