No - not from java. However, if I execute the command from a cmd window, vlc pops open a new cmd like window saying
"Dumped contents to vlc-help.txt file. Press the RETURN key to continue."
I previously had no problems interacting with VLC from Java. I used to launch using process = Runtime.getRuntime().exec("C:\\Program Files(x86)\\VideoLAN\\VLC\\vlc.exe") and read the stdout using process.getErrorStream(). For example, to get the VLC version I used the following command: &q...