Reproduce streaming vlc on android

Hello,

I’m developing a web page that plays rtsp links. I am using vlc embedded plugin to play the streams. My code is:

    <object classid="clsid:9BE31822-FDAD-461B-AD51-        BE1D1C159921" codebase="http://downloads.videolan.org/pub/videolan/vlc/latest/win32/axvlc.cab" width="400" height="300" id="vlc" events="True"> 
        <param name="ShowDisplay" value="True" ></param> 
        <param name="Volume" value="100" />
        <param name="AutoLoop" value="no"></param> 
        <param name="AutoPlay" value="yes"></param> 
       <embed type="application/x-google-vlc-plugin" name="vlcfirefox" autoplay="yes" loop="no" width="400" height="300" target="rtsp://<publicIp>:8554/stream"></embed> 
    </object>


    <script type='text/javascript'>
       window.onload = function(){
        var vlc = document.getElementById('vlc');
         vlc.playlist.playItem( vlc.playlist.add("rtsp://<publicIP>:8554/stream", "live", ":network-caching=150") );
      };
    </script>

I have no problem whatching the rtsp on PC across all browsers. But I can’t see the stream on android.

Android browser doesn’t recognize the vlc object and on chrome for android I receive the message: “chrome for android doesn’t support this plugin”.

Is there any solution for this? Is it possible to watch a video with the vlc web plugin on android? If not, is there any way I can watch the rtsp stream on android devices?

Thank you.

There is an open source VLC player called osmo4. Maybe you can use their code in your android app. http://gpac.wp.mines-telecom.fr/home/

Thank you XdebugX for the quick answer.

But is it possible to reproduce the rtsp stream without developing an android app?

Thank you.

If your just looking for an rtsp player, there are plenty on the play store. Search for vlc player.