How to hide the filepath while playback?
Posted: 21 Sep 2014 17:08
Hey Guys,
I open the vlc media player out of my c# code:
But in the VLC you can still see the filepath (In my example, it is a url) via Tools >> Media-Info.
How I can force VLC to not show the path? It would be best, if I could do that with a parameter to the vlc.exe.
Thanks in advance,
Lenn
I open the vlc media player out of my c# code:
Code: Select all
var info = new ProcessStartInfo(vlc_path, "--quiet --meta-title=#TITLE# --qt-minimal-view --width=500 --height=400 #FILEPATH#") { };
Process.Start(info);
How I can force VLC to not show the path? It would be best, if I could do that with a parameter to the vlc.exe.
Thanks in advance,
Lenn