Reputation: 101
What are the different ways of starting VLC media player from the command line in Linux?
It is maddeningly difficult to find any information about this. Here is what I've discovered so far:
vlc - start VLC media player
cvlc - start VLC media player without the interface
qvlc - start the Qt version of VLC media player
What about the others:
svlc -
rvlc -
nvlc -
Upvotes: 6
Views: 3103
Reputation: 31219
Take a look at the aliases in Makefile.am.
svlc
- enables skinsrvlc
- enables the remote control interfacenvlc
- enables ncurses
Upvotes: 6