How to open VLC wit JAVA and later play a file with it..?
Hi,
I do it if I want to Play a file with VLC:
Runtime rt = Runtime.getRuntime();
try {
rt.exec("C:\\Program Files\\VideoLAN\\VLC\\vlc " + "C:\\songs\\llarala.mp3");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
but I want to Open VLC and later work with this VLC opend, for example to Play a file with it. Anyone knows how to do it? Thanks.. I' m new about that..

