I would like to give a possibility to my visitors to open some m3u8 links through MX Player by default when they click in a player button. I want to offer this possibility to Android visitors. My first intention was to use VLC Player but after reading this post i changed my mind to MX Player if this is possible.
Please keep in mind that i'm looking for a solution for people surfing through android BROWSERS to my website and NOT in an App.
Something like this would be ideal:
<object type="application/x-mx-plugin" data="http://server.example.com/video1.m3u8" width="400" height="300" id="video1">
<param name="movie" value="http://server.example.com/video1.m3u8"/>
<embed type="application/x-mx-plugin" name="video1"
autoplay="no" loop="no" width="400" height="300"
target="http://server.example.com/video1.m3u8" />
</object>
and
<a href="javascript:;" onclick='document.video1.play()'>Play video1</a>