I have a mobile website and I have created a hyperlink like below to open VLC to stream the video but its not work in Android. iOs is working fine.
I have try it in Samsung S4, Nexus S and Nexus 7 but no luck. Please advise. Thank you.
Code: Select all
$url = urlencode('rtsp://192.168.1.1:554');
<a href="vlc://<?php echo $url;?>">Play in VLC</a>
ChunKet