Parameters to start VLC on Android with command line
Posted: 10 Nov 2012 20:18
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.:
The call in the android application I'm doing this:
*Remembering that this command is executed within my Activity in Android application and I'm on Ubuntu 12.04.
Could anyone help me?
Thankful!
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]
Code: Select all
Intent intapp = new Intent(Intent.ACTION_MAIN);
intapp.putExtra("???", "[commands]????");
startActivity(intapp);
Could anyone help me?
Thankful!