Page 1 of 1

Can you run VLC as a Windows Process (no visible VLC Window)

Posted: 10 Jun 2011 23:01
by Mel_3
1 - Can VLC be run as a Windows Process... or whatever...
... so that the VLC Window is not open and not viewable by the user?
... that is... VLC is playing videos (or streaming) in the background but without a VLC window being open?

2 - If so, how would we launch this from a batch file or via the Windows Command Line?

Thanks for any help.

Re: Can you run VLC as a Windows Process (no visible VLC Win

Posted: 11 Jun 2011 11:23
by Lotesdelere

Re: Can you run VLC as a Windows Process (no visible VLC Win

Posted: 11 Jun 2011 14:18
by VLC_help
If you want VLC without GUI, then

Code: Select all

vlc -I dummy --dummy-quiet
and if you don't want decorations to video window, then --no-video-deco

so e.g.

Code: Select all

"C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" -I dummy --dummy-quiet --no-video-deco c:\movies\my_video.avi

Re: Can you run VLC as a Windows Process (no visible VLC Win

Posted: 11 Jun 2011 22:30
by Mel_3
Thanks guys!