Page 1 of 1

Parameters to start VLC on Android with command line

Posted: 10 Nov 2012 20:18
by leonardo.araujo
Hello All,

I'm needing start the VLC VideoLAN (http://www.videolan.org/) in my Android device, for example, if the user to clicks on button "receive video stream", then I run the command line to start the VLC VideoLAN.

ex.:

Code: Select all

$ vlc [options] [stream]
The call in the android application I'm doing this:

Code: Select all

Intent intapp = new Intent(Intent.ACTION_MAIN); intapp.putExtra("???", "[commands]????"); startActivity(intapp);
*Remembering that this command is executed within my Activity in Android application and I'm on Ubuntu 12.04.

Could anyone help me?

Thankful!

Re: Parameters to start VLC on Android with command line

Posted: 11 Nov 2012 13:52
by edwardw

Code: Select all

Intent intapp = new Intent(Intent.ACTION_VIEW, Uri.parse("udp://@111.11.11.11:1111")); startActivity(intapp);