Vlc: Difference between revisions

From wikinotes
 
(5 intermediate revisions by the same user not shown)
Line 40: Line 40:


= Usage =
= Usage =
<blockquote>
== Cli ==
<blockquote>
<blockquote>
<source lang="bash">
<source lang="bash">
Line 51: Line 53:
vlc v4l2://            # video from default webcam
vlc v4l2://            # video from default webcam
</source>
</source>
<syntaxhighlight lang="bash">
nvlc  # tui vlc
</syntaxhighlight>
</blockquote><!-- Cli -->
== Hotkeys ==
<blockquote>
<syntaxhighlight lang="yaml">
space:  pause
n:      next playlist item
p:      prev playlist item
b:      cycle audio tracks
v:      cycle subtitles
e:      step one frame forwards
ctrl/alt/shift left/right:  scrub timeline
w:      wallpaper mode
alt-l:  playlist menu
alt-i:  view menu
</syntaxhighlight>
</blockquote><!-- Hotkeys -->
== Interpreter ==
<blockquote>
<syntaxhighlight lang="bash">
cvlc
vlc -I rc  # vlc interactive interpreter
</syntaxhighlight>
</blockquote><!-- Interpreter -->
</blockquote><!-- Usage -->
</blockquote><!-- Usage -->

Latest revision as of 15:53, 12 February 2023

A very modular video player.

Documentation

official docs https://wiki.videolan.org/Documentation:Documentation/
vlc hotkeys https://www.vlchelp.com/vlc-media-player-shortcuts/

Locations

${SYSLOG} vlc logs to the syslog, but Tools/Messages can be configured to watch

Install

sudo pacman -S vlc \
    `# dvd playback` \
    libdvdcss \
    libdvdnav \
    libdvdread \
    `# webcam playback` \
    v4l2-utils `# linux only` \
    zvbi

udftools # possibly required
libaacs  # bluerays

modprobe sg  # enable /dev/sr* and /dev/sg* devices

Usage

Cli

vlc --no-one-instance  \    # open new vlc window
    --start-time <seconds>  # start window at time

vlc -vvv    # each additional 'v' increases log verbosity
vlc --list  # list all available modules in your VLC build

vlc v4l2:///dev/video0  # video from specific webcam
vlc v4l2://             # video from default webcam
nvlc  # tui vlc

Hotkeys

space:  pause
n:      next playlist item
p:      prev playlist item

b:      cycle audio tracks
v:      cycle subtitles

e:      step one frame forwards
ctrl/alt/shift left/right:  scrub timeline

w:      wallpaper mode

alt-l:  playlist menu
alt-i:  view menu

Interpreter

cvlc
vlc -I rc  # vlc interactive interpreter