VLC Media Player – How to Play Stream Without Interface

guiinternetlinuxstreamingvlc-media-player

I would like to use VLC to play an Internet radio stream without starting the GUI. Is that possible? I have explored the command line documentation for VLC a bit and I did not came to any solution.

So far I just invoke:

$ vlc <stream>

I am on Linux (Ubuntu 13.10).

Best Answer

For playing vlc in the command line without launching a ui, it looks like this page has what you need.

Specifically, I think you want this command:

vlc --intf dummy vcd://

This specifies a dummy interface that never acually launches anything. I can't test this because I am away from my linux box right now, but here's the full command I think you're looking for:

vlc --intf dummy <stream>
Related Question