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!