HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

vlc — Cross-platform multimedia player. See also: `mpv`, `mplayer`, `ytfzf`. More information: <https://wi

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandmultimediaclicrossvlcplatformplayersee

Problem

How to use the vlc command: Cross-platform multimedia player. See also: mpv, mplayer, ytfzf. More information: <https://wiki.videolan.org/Documentation:Command_line/>.

Solution

vlc — Cross-platform multimedia player. See also: mpv, mplayer, ytfzf. More information: <https://wiki.videolan.org/Documentation:Command_line/>.

Play a file:
vlc {{path/to/file}}


Play in fullscreen:
vlc --fullscreen {{path/to/file}}


Play muted:
vlc --no-audio {{path/to/file}}


Play repeatedly:
vlc --loop {{path/to/file}}


Play video from a URL:
vlc {{https://www.youtube.com/watch?v=oHg5SJYRHA0}}

Code Snippets

Play a file

vlc {{path/to/file}}

Play in fullscreen

vlc --fullscreen {{path/to/file}}

Play muted

vlc --no-audio {{path/to/file}}

Play repeatedly

vlc --loop {{path/to/file}}

Play video from a URL

vlc {{https://www.youtube.com/watch?v=oHg5SJYRHA0}}

Context

tldr-pages: common/vlc

Revisions (0)

No revisions yet.