[vlc-devel] VLC Android App

Edward Wang edward.c.wang at compdigitec.com
Wed Jan 16 00:35:16 CET 2013


On 13-01-14 09:26 AM, MOHIT SHARMA <mohit7575 at gmail.com> wrote:
> This is a very basic question but couldn't find anything related to it 
> on . Is there any Intent call for playing video through vlc via my 
> Android App . 

Intent in = new Intent(Intent.ACTION_VIEW, 
Uri.parse("rtsp://127.12.34.56/"));
in.setDataAndType(u, "video/mp4"); /* replace video/mp4 with whatever */
startActivity(in);

Regards,
         Edward Wang



More information about the vlc-devel mailing list