Difference between revisions of "VLC command-line help"

From VideoLAN Wiki
Jump to navigation Jump to search
 
(34 intermediate revisions by 15 users not shown)
Line 1: Line 1:
:''See also [[Command line]], [[Console|Console interfaces]]''
+
{{See also|Command-line interface|Console|label2=Console interfaces}}
As you may have noticed, running the command
+
{{WindowsCLI}}
 +
Running the command
 
  vlc --help
 
  vlc --help
on some [[command prompt]]s is not very useful due to to the non-scrollable pop-up window that opened.
+
will create a .TXT file containing all the command-line options.
  
If you look for help, on a particular module, use
+
You can also use this to get more exhaustive list:
  vlc -p module --advanced
+
vlc -H
 +
 
 +
If you look for help, on a particular module, you can also use
 +
  vlc -p module --advanced --help-verbose
 +
<code>--help-verbose</code> explains things. Omit this option if too much output is generated
 +
 
 +
To view this without leaving the command-line in Windows, use the following command (assuming you installed it in the default folder):
 +
more "{{VLC folder|windows}}\vlc-help.txt"
 +
This trick uses the command-line command <code>more</code> to show the file screen-by-screen. Pressing spacebar will advance the output a screen at a time, and pressing enter will advance the output one line at a time.
  
 
Undocumented option:
 
Undocumented option:
  -vvv     "Verbose verbose verbose". Verbose output
+
-vv     "Verbose verbose". Verbose output (debug infos can be displayed by selecting "Debug logging" interface under View->Add Interface menu)
  
Here's the output of ''vlc -H'' of the stable 0.9.8a in Windows. If you are looking for 0.8.6 help, go [[VLC-0-8-6_command-line_help]].
+
Here's the output of ''vlc -H'' of vlc-4.0.0-dev under Windows. If the text is too small, pressing <kbd>Ctrl</kbd> and <kbd>+</kbd> together in most browsers will increase the font size (reset with <kbd>Ctrl</kbd> and <kbd>0</kbd> together).
  
Part 1/2
+
<small><pre>
  <nowiki>
 
 
Usage: vlc [options] [stream] ...
 
Usage: vlc [options] [stream] ...
You can specify multiple streams on the commandline. They will be enqueued in the playlist.
+
You can specify multiple streams on the commandline.
 +
They will be enqueued in the playlist.
 
The first item specified will be played first.
 
The first item specified will be played first.
  
Line 25: Line 34:
  
 
Stream MRL syntax:
 
Stream MRL syntax:
   [[access][/demux]://]URL[@[title][:chapter][-[title][:chapter]]] [:option=value ...]
+
   [[access][/demux]://]URL[#[title][:chapter][-[title][:chapter]]]
 +
  [:option=value ...]
  
 
   Many of the global --options can also be used as MRL specific :options.
 
   Many of the global --options can also be used as MRL specific :options.
Line 31: Line 41:
  
 
URL syntax:
 
URL syntax:
   [file://]filename             Plain media file
+
   file:///path/file             Plain media file
   http://ip:port/file           HTTP URL
+
   http://host[:port]/file       HTTP URL
   ftp://ip:port/file             FTP URL
+
   ftp://host[:port]/file         FTP URL
   mms://ip:port/file             MMS URL
+
   mms://host[:port]/file         MMS URL
 
   screen://                      Screen capture
 
   screen://                      Screen capture
   [dvd://][device][@raw_device]  DVD device
+
   dvd://[device]                 DVD device
   [vcd://][device]               VCD device
+
   vcd://[device]                 VCD device
   [cdda://][device]             Audio CD device
+
   cdda://[device]               Audio CD device
 
   udp://[[<source address>]@[<bind address>][:<bind port>]]
 
   udp://[[<source address>]@[<bind address>][:<bind port>]]
 
                                 UDP stream sent by a streaming server
 
                                 UDP stream sent by a streaming server
   vlc://pause:<seconds>          Special item to pause the playlist for a certain time
+
   vlc://pause:<seconds>          Pause the playlist for a certain time
 
   vlc://quit                    Special item to quit VLC
 
   vlc://quit                    Special item to quit VLC
  
Audio
 
These options allow you to modify the behavior of the audio subsystem, and to add audio filters which can be used for post processing or visual effects (spectrum analyzer, etc.). Enable these filters here, and configure them in the "audio filters" modules section.
 
      --audio, --no-audio        Enable audio (default enabled)
 
          You can completely disable the audio output. The audio decoding stage
 
          will not take place, thus saving some processing power. (default
 
          enabled)
 
      --volume=<integer [0 .. 1024]>
 
                                Default audio volume
 
          You can set the default audio output volume here, in a range from 0
 
          to 1024.
 
      --volume-step=<integer [0 .. 1024]>
 
                                Audio output volume step
 
          The step size of the volume is adjustable using this option, in a
 
          range from 0 to 1024.
 
      --aout-rate=<integer>      Audio output frequency (Hz)
 
          You can force the audio output frequency here. Common values are -1
 
          (default), 48000, 44100, 32000, 22050, 16000, 11025, 8000.
 
      --hq-resampling, --no-hq-resampling
 
                                High quality audio resampling (default
 
                                enabled)
 
          This uses a high quality audio resampling algorithm. High quality
 
          audio resampling can be processor intensive so you can disable it and
 
          a cheaper resampling algorithm will be used instead. (default enabled)
 
      --spdif, --no-spdif        Use S/PDIF when available (default disabled)
 
          S/PDIF can be used by default when your hardware supports it as well
 
          as the audio stream being played. (default disabled)
 
      --force-dolby-surround={0 (Auto), 1 (On), 2 (Off)}
 
                                Force detection of Dolby Surround
 
          Use this when you know your stream is (or is not) encoded with Dolby
 
          Surround but fails to be detected as such. Even if the stream is not
 
          actually encoded with Dolby Surround, turning on this option might
 
          enhance your experience, especially when combined with the Headphone
 
          Channel Mixer.
 
      --audio-desync=<integer>  Audio desynchronization compensation
 
          This delays the audio output. The delay must be given in
 
          milliseconds.This can be handy if you notice a lag between the video
 
          and the audio.
 
      --audio-replay-gain-mode={none,track,album}
 
                                Replay gain mode
 
          Select the replay gain mode
 
      --audio-replay-gain-preamp=<float>
 
                                Replay preamp
 
          This allows you to change the default target level (89 dB) for stream
 
          with replay gain information
 
      --audio-replay-gain-default=<float>
 
                                Default replay gain
 
          This is the gain used for stream without replay gain information
 
      --audio-replay-gain-peak-protection, --no-audio-replay-gain-peak-protection
 
                                Peak protection (default enabled)
 
          Protect against sound clipping (default enabled)
 
  -A, --aout=<string>            Audio output module
 
          This is the audio output method used by VLC. The default behavior is
 
          to automatically select the best method available.
 
      --audio-filter=<string>    Audio filters
 
          This adds audio post processing filters, to modify the sound
 
          rendering.
 
      --audio-visual=<string>    Audio visualizations
 
          This adds visualization modules (spectrum analyzer, etc.).
 
  
  Video
+
  Visualizer filter (visual)
These options allow you to modify the behavior of the video output subsystem. You can for example enable video filters (deinterlacing, image adjusting, etc.). Enable these filters here and configure them in the "video filters" modules section. You can also set many miscellaneous video options.
+
  General:
      --video, --no-video        Enable video (default enabled)
+
       --effect-list=<string>    Effects list
          You can completely disable the video output. The video decoding stage
+
           A list of visual effect, separated by commas. Current effects
          will not take place, thus saving some processing power. (default
+
           include: dummy, scope, spectrum, spectrometer and vuMeter.
          enabled)
+
       --effect-width=<integer>  Video width
       --grayscale, --no-grayscale
+
           The width of the effects video window, in pixels.
                                Grayscale video output (default disabled)
+
       --effect-height=<integer> Video height
           Output video in grayscale. As the color information aren't decoded,
+
           The height of the effects video window, in pixels.
          this can save some processing power. (default disabled)
+
       --effect-fft-window={none,hann,flattop,blackmanharris,kaiser}  
  -f, --fullscreen, --no-fullscreen
+
                                 FFT window
                                Fullscreen video output (default disabled)
+
           The type of FFT window to use for spectrum-based visualizations.
           Start video in fullscreen mode (default disabled)
+
       --effect-kaiser-param=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
      --embedded-video, --no-embedded-video
+
                                 Kaiser window parameter
                                Embedded video (default enabled)
+
          The parameter alpha for the Kaiser window. Increasing alpha increases
          Embed the video output in the main interface. (default enabled)
+
           the main-lobe width and decreases the side-lobe amplitude.
      --drop-late-frames, --no-drop-late-frames
+
   Spectrum analyser:
                                Drop late frames (default enabled)
+
       --visual-80-bands, --no-visual-80-bands
          This drops frames that are late (arrive to the video output after
+
                                Show 80 bands instead of 20
          their intended display date). (default enabled)
+
                                 (default enabled)
      --skip-frames, --no-skip-frames
+
           Show 80 bands instead of 20
                                Skip frames (default enabled)
+
       --visual-peaks, --no-visual-peaks
          Enables framedropping on MPEG2 stream. Framedropping occurs when your
+
                                Draw peaks in the analyzer
          computer is not powerful enough (default enabled)
+
                                 (default enabled)
      --quiet-synchro, --no-quiet-synchro
+
           Draw peaks in the analyzer
                                Quiet synchro (default disabled)
+
  Spectrometer:
          This avoids flooding the message log with debug output from the video
+
       --spect-show-original, --no-spect-show-original
          output synchronization mechanism. (default disabled)
+
                                 Enable original graphic spectrum
       --overlay, --no-overlay    Overlay video output (default enabled)
 
           Overlay is the hardware acceleration capability of your video card
 
          (ability to render video directly). VLC will try to use it by
 
          default. (default enabled)
 
      --video-on-top, --no-video-on-top
 
                                Always on top (default disabled)
 
          Always place the video window on top of other windows. (default
 
          disabled)
 
      --disable-screensaver, --no-disable-screensaver
 
                                Disable screensaver (default enabled)
 
          Disable the screensaver during video playback. (default enabled)
 
       --video-title-show, --no-video-title-show
 
                                Show media title on video (default enabled)
 
          Display the title of the video on top of the movie. (default enabled)
 
      --video-title-timeout=<integer>
 
                                Show video title for x miliseconds
 
           Show the video title for n miliseconds, default is 5000 ms (5 sec.)
 
       --video-title-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}
 
                                 Position of video title
 
           Place on video where to display the title (default bottom center).
 
       --mouse-hide-timeout=<integer>
 
                                 Hide cursor and fullscreen controller after x
 
                                miliseconds
 
           Hide mouse cursor and fullscreen controller after n miliseconds,
 
          default is 3000 ms (3 sec.)
 
   Snapshot:
 
       --snapshot-path=<string>  Video snapshot directory (or filename)
 
          Directory where the video snapshots will be stored.
 
      --snapshot-prefix=<string> Video snapshot file prefix
 
          Video snapshot file prefix
 
      --snapshot-format={png,jpg}
 
                                 Video snapshot format
 
           Image format which will be used to store the video snapshots
 
       --snapshot-preview, --no-snapshot-preview
 
                                 Display video snapshot preview (default
 
                                enabled)
 
           Display the snapshot preview in the screen's top-left corner.
 
          (default enabled)
 
       --snapshot-sequential, --no-snapshot-sequential
 
                                 Use sequential numbers instead of timestamps
 
 
                                 (default disabled)
 
                                 (default disabled)
           Use sequential numbers instead of timestamps for snapshot numbering
+
           Enable the "flat" spectrum analyzer in the spectrometer.
          (default disabled)
+
      --spect-show-base, --no-spect-show-base
      --snapshot-width=<integer> Video snapshot width
+
                                Draw the base of the bands
           You can enforce the width of the video snapshot. By default it will
+
                                (default enabled)
          keep the original width (-1). Using 0 will scale the width to keep
+
          Draw the base of the bands
           the aspect ratio.
+
      --spect-radius=<integer>   Base pixel radius
       --snapshot-height=<integer>
+
           Defines radius size in pixels, of base of bands(beginning).
                                Video snapshot height
+
      --spect-sections=<integer [1 .. 2147483647]>
           You can enforce the height of the video snapshot. By default it will
+
                                Spectral sections
          keep the original height (-1). Using 0 will scale the height to keep
+
           Determines how many sections of spectrum will exist.
          the aspect ratio.
+
       --spect-color=<integer>   V-plane color
  Window properties:
+
           YUV-Color cube shifting across the V-plane ( 0 - 127 ).
       --width=<integer>          Video width
+
       --spect-show-bands, --no-spect-show-bands
          You can enforce the video width. By default (-1) VLC will adapt to
+
                                Draw bands in the spectrometer
           the video characteristics.
+
                                (default enabled)
       --height=<integer>        Video height
+
           Draw bands in the spectrometer
          You can enforce the video height. By default (-1) VLC will adapt to
+
       --spect-80-bands, --no-spect-80-bands
           the video characteristics.
+
                                Show 80 bands instead of 20
       --video-x=<integer>       Video X coordinate
+
                                (default enabled)
           You can enforce the position of the top left corner of the video
+
           Show 80 bands instead of 20
          window (X coordinate).
+
       --spect-separ=<integer>   Number of blank pixels between bands.
       --video-y=<integer>       Video Y coordinate
+
           Number of blank pixels between bands.
           You can enforce the position of the top left corner of the video
+
       --spect-amp=<integer>     Amplification
          window (Y coordinate).
+
           This is a coefficient that modifies the height of the bands.
       --crop=<string>           Video cropping
+
      --spect-show-peaks, --no-spect-show-peaks
           This forces the cropping of the source video. Accepted formats are
+
                                Draw peaks in the analyzer
          x:y (4:3, 16:9, etc.) expressing the global image aspect.
+
                                (default enabled)
       --custom-crop-ratios=<string>
+
          Draw peaks in the analyzer
                                 Custom crop ratios list
+
       --spect-peak-width=<integer>  
           Comma seperated list of crop ratios which will be added in the
+
                                Peak extra width
          interface's crop ratios list.
+
           Additions or subtractions of pixels on the peak width.
       --aspect-ratio=<string>   Source aspect ratio
+
       --spect-peak-height=<integer>  
           This forces the source aspect ratio. For instance, some DVDs claim to
+
                                 Peak height
           be 16:9 while they are actually 4:3. This can also be used as a hint
+
           Total pixel height of the peak items.
           for VLC when a movie does not have aspect ratio information. Accepted
+
 
          formats are x:y (4:3, 16:9, etc.) expressing the global image aspect,
+
libprojectM effect (projectm)
           or a float value (1.25, 1.3333, etc.) expressing pixel squareness.
+
       --projectm-preset-path=<string>  
      --monitor-par=<string>     Monitor pixel aspect ratio
+
                                projectM preset path
           This forces the monitor aspect ratio. Most monitors have square
+
           Path to the projectM preset directory
          pixels (1:1). If you have a 16:9 screen, you might need to change
+
      --projectm-title-font=<string>
           this to 4:3 in order to keep proportions.
+
                                Title font
       --custom-aspect-ratios=<string>
+
           Font used for the titles
                                Custom aspect ratios list
+
      --projectm-menu-font=<string>
           Comma seperated list of aspect ratios which will be added in the
+
                                Font menu
          interface's aspect ratio list.
+
           Font used for the menus
       --hdtv-fix, --no-hdtv-fix Fix HDTV height (default enabled)
+
      --projectm-width=<integer> Video width
           This allows proper handling of HDTV-1080 video format even if broken
+
           The width of the video window, in pixels.
           encoder incorrectly sets height to 1088 lines. You should only
+
      --projectm-height=<integer>  
          disable this option if your video has a non-standard format requiring
+
                                Video height
           all 1088 lines. (default enabled)
+
           The height of the video window, in pixels.
       --video-deco, --no-video-deco
+
      --projectm-meshx=<integer> Mesh width
                                 Window decorations (default enabled)
+
           The width of the mesh, in pixels.
           VLC can avoid creating window caption, frames, etc... around the
+
       --projectm-meshy=<integer> Mesh height
           video, giving a "minimal" window. (default enabled)
+
           The height of the mesh, in pixels.
       --video-title=<string>     Video title
+
       --projectm-texture-size=<integer>
           Custom title for the video window (in case the video is not embedded
+
                                Texture size
           in the interface).
+
          The size of the texture, in pixels.
       --align={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}
+
 
                                 Video alignment
+
  Goom effect (goom)
           Enforce the alignment of the video in its window. By default (0) it
+
      --goom-width=<integer>    Goom display width
           will be centered (0=center, 1=left, 2=right, 4=top, 8=bottom, you can
+
           This allows you to set the resolution of the Goom display (bigger
          also use combinations of these values, like 6=4+2 meaning top-right).
+
           resolution will be prettier but more CPU intensive).
      --zoom=<float>             Zoom video
+
      --goom-height=<integer>    Goom display height
           You can zoom the video by the specified factor.
+
           This allows you to set the resolution of the Goom display (bigger
  -V, --vout=<string>           Video output module
+
          resolution will be prettier but more CPU intensive).
           This is the the video output method used by VLC. The default behavior
+
       --goom-speed=<integer [1 .. 10]>
          is to automatically select the best method available.
+
                                 Goom animation speed
      --video-filter=<string>   Video filter module
+
           This allows you to set the animation speed (between 1 and 10,
           This adds post-processing filters to enhance the picture quality, for
+
           defaults to 6).
           instance deinterlacing, or distortthe video.
+
 
       --vout-filter=<string>     Video output filter module
+
3D OpenGL spectrum visualization (glspectrum)
           This adds video output filters like clone or wall
+
       --glspectrum-width=<integer>  
 
+
                                Video width
Subpictures
+
           The width of the visualization window, in pixels.
These options allow you to modify the behavior of the subpictures subsystem. You can for example enable subpictures filters (logo, etc.). Enable these filters here and configure them in the "subpictures filters" modules section. You can also set many miscellaneous subpictures options.
+
      --glspectrum-height=<integer>
  On Screen Display:
+
                                Video height
       --spu, --no-spu            Enable sub-pictures (default enabled)
+
           The height of the visualization window, in pixels.
           You can completely disable the sub-picture processing. (default
+
 
          enabled)
+
Wall video filter (wall)
       --osd, --no-osd            On Screen Display (default disabled)
+
       --wall-cols=<integer [1 .. 15]>
           VLC can display messages on the video. This is called OSD (On Screen
+
                                Number of columns
           Display). (default disabled)
+
          Number of horizontal windows in which to split the video.
       --text-renderer=<string>   Text rendering module
+
      --wall-rows=<integer [1 .. 15]>
           VLC normally uses Freetype for rendering, but this allows you to use
+
                                 Number of rows
           svg for instance.
+
           Number of vertical windows in which to split the video.
  Subtitles:
+
      --wall-active=<string>    Active windows
       --sub-file=<string>       Use subtitle file
+
           Comma-separated list of active windows, defaults to all
           Load this subtitle file. To be used when autodetect cannot detect
+
      --wall-element-aspect=<string>  
          your subtitle file.
+
                                Element aspect ratio
       --sub-autodetect-file, --no-sub-autodetect-file
+
           Aspect ratio of the individual displays building the wall.
                                 Autodetect subtitle files (default enabled)
+
 
           Automatically detect a subtitle file, if no subtitle filename is
+
Panoramix: wall with overlap video filter (panoramix)
          specified (based on the filename of the movie). (default enabled)
+
Split the video in multiple windows to display on a wall of screens
       --sub-autodetect-fuzzy=<integer>
+
      --panoramix-cols=<integer [-1 .. 15]>  
                                 Subtitle autodetection fuzziness
+
                                Number of columns
           This determines how fuzzy subtitle and movie filename matching will
+
           Select the number of horizontal video windows in which to split the
           be. Options are:
+
          video
0 = no subtitles autodetected
+
      --panoramix-rows=<integer [-1 .. 15]>  
1 = any subtitle
+
                                Number of rows
           file
+
           Select the number of vertical video windows in which to split the
2 = any subtitle file containing the movie name
+
           video
3 = subtitle
+
       --panoramix-bz-length=<integer [0 .. 100]>  
          file matching the movie name with additional chars
+
                                length of the overlapping area (in %)
4 = subtitle file
+
           Select in percent the length of the blended zone
           matching the movie name exactly
+
      --panoramix-bz-height=<integer [0 .. 100]>
       --sub-autodetect-path=<string>
+
                                height of the overlapping area (in %)
                                 Subtitle autodetection paths
+
          Select in percent the height of the blended zone (case of 2x2 wall)
           Look for a subtitle file in those paths too, if your subtitle file
+
       --panoramix-attenuate, --no-panoramix-attenuate
           was not found in the current directory.
+
                                Attenuation
       --sub-margin=<integer>     Force subtitle position
+
                                (default enabled)
           You can use this option to place the subtitles under the movie,
+
           Check this option if you want attenuate blended zone by this plug-in
          instead of over the movie. Try several positions.
+
          (if option is unchecked, attenuate is made by opengl)
  Overlays:
+
       --panoramix-bz-begin=<integer [0 .. 100]>
       --sub-filter=<string>     Subpictures filter module
+
                                Attenuation, begin (in %)
          This adds so-called "subpicture filters". These filters overlay some
+
           Select in percent the Lagrange coefficient of the beginning blended
           images or text over the video (like a logo, arbitrary text...).
+
           zone
  Track settings:
+
       --panoramix-bz-middle=<integer [0 .. 100]>  
       --program=<integer>       Program
+
                                Attenuation, middle (in %)
           Choose the program to select by giving its Service ID. Only use this
+
           Select in percent the Lagrange coefficient of the middle of blended
          option if you want to read a multi-program stream (like DVB streams
+
           zone
          for example).
+
       --panoramix-bz-end=<integer [0 .. 100]>  
       --programs=<string>       Programs
+
                                Attenuation, end (in %)
           Choose the programs to select by giving a comma-separated list of
+
           Select in percent the Lagrange coefficient of the end of blended zone
          Service IDs (SIDs). Only use this option if you want to read a
+
       --panoramix-bz-middle-pos=<integer [1 .. 99]>
          multi-program stream (like DVB streams for example).
+
                                 middle position (in %)
      --audio-track=<integer>   Audio track
+
           Select in percent (50 is center) the position of the middle point
           Stream number of the audio track to use (from 0 to n).
+
          (Lagrange) of blended zone
       --sub-track=<integer>     Subtitles track
+
       --panoramix-bz-gamma-red=<float [0.000000 .. 5.000000]>  
           Stream number of the subtitle track to use (from 0 to n).
+
                                 Gamma (Red) correction
       --audio-language=<string> Audio language
+
           Select the gamma for the correction of blended zone (Red or Y
           Language of the audio track you want to use (comma separated, two or
+
           component)
          three letter country code).
+
      --panoramix-bz-gamma-green=<float [0.000000 .. 5.000000]>
       --sub-language=<string>   Subtitle language
+
                                Gamma (Green) correction
           Language of the subtitle track you want to use (comma separated, two
+
           Select the gamma for the correction of blended zone (Green or U
          or three letters country code).
+
           component)
       --audio-track-id=<integer> Audio track ID
+
       --panoramix-bz-gamma-blue=<float [0.000000 .. 5.000000]>  
           Stream ID of the audio track to use.
+
                                 Gamma (Blue) correction
       --sub-track-id=<integer>   Subtitles track ID
+
           Select the gamma for the correction of blended zone (Blue or V
           Stream ID of the subtitle track to use.
+
           component)
  Playback control:
+
       --panoramix-bz-blackcrush-red=<integer [0 .. 255]>  
       --input-repeat=<integer>   Input repetitions
+
                                Black Crush for Red
           Number of time the same input will be repeated
+
           Select the Black Crush of blended zone (Red or Y component)
       --start-time=<integer>     Start time
+
       --panoramix-bz-blackcrush-green=<integer [0 .. 255]>  
           The stream will start at this position (in seconds).
+
                                Black Crush for Green
       --stop-time=<integer>     Stop time
+
           Select the Black Crush of blended zone (Green or U component)
           The stream will stop at this position (in seconds).
+
       --panoramix-bz-blackcrush-blue=<integer [0 .. 255]>  
       --run-time=<integer>       Run time
+
                                Black Crush for Blue
           The stream will run this duration (in seconds).
+
           Select the Black Crush of blended zone (Blue or V component)
       --input-list=<string>     Input list
+
       --panoramix-bz-whitecrush-red=<integer [0 .. 255]>  
           You can give a comma-separated list of inputs that will be
+
                                White Crush for Red
          concatenated together after the normal one.
+
           Select the White Crush of blended zone (Red or Y component)
       --input-slave=<string>     Input slave (experimental)
+
      --panoramix-bz-whitecrush-green=<integer [0 .. 255]>  
           This allows you to play from several inputs at the same time. This
+
                                White Crush for Green
          feature is experimental, not all formats are supported. Use a '#'
+
           Select the White Crush of blended zone (Green or U component)
          separated list of inputs.
+
       --panoramix-bz-whitecrush-blue=<integer [0 .. 255]>  
      --bookmarks=<string>       Bookmarks list for a stream
+
                                White Crush for Blue
           You can manually give a list of bookmarks for a stream in the form
+
           Select the White Crush of blended zone (Blue or V component)
          "{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-off
+
       --panoramix-bz-blacklevel-red=<integer [0 .. 255]>  
          set},{...}"
+
                                Black Level for Red
  Default devices:
+
           Select the Black Level of blended zone (Red or Y component)
      --dvd=<string>            DVD device
+
       --panoramix-bz-blacklevel-green=<integer [0 .. 255]>  
           This is the default DVD drive (or file) to use. Don't forget the
+
                                Black Level for Green
          colon after the drive letter (eg. D:)
+
           Select the Black Level of blended zone (Green or U component)
       --vcd=<string>             VCD device
+
       --panoramix-bz-blacklevel-blue=<integer [0 .. 255]>  
           This is the default VCD device to use.
+
                                Black Level for Blue
       --cd-audio=<string>       Audio CD device
+
           Select the Black Level of blended zone (Blue or V component)
           This is the default Audio CD device to use.
+
       --panoramix-bz-whitelevel-red=<integer [0 .. 255]>  
  Network settings:
+
                                White Level for Red
      --server-port=<integer>    UDP port
+
           Select the White Level of blended zone (Red or Y component)
           This is the default port used for UDP streams. Default is 1234.
+
       --panoramix-bz-whitelevel-green=<integer [0 .. 255]>  
       --mtu=<integer>           MTU of the network interface
+
                                White Level for Green
           This is the maximum application-layer packet size that can be
+
           Select the White Level of blended zone (Green or U component)
          transmitted over the network (in bytes).
+
       --panoramix-bz-whitelevel-blue=<integer [0 .. 255]>  
  -6, --ipv6, --no-ipv6          Force IPv6 (default disabled)
+
                                White Level for Blue
           IPv6 will be used by default for all connections. (default disabled)
+
           Select the White Level of blended zone (Blue or V component)
  -4, --ipv4, --no-ipv4          Force IPv4 (default disabled)
+
       --panoramix-active=<string>  
           IPv4 will be used by default for all connections. (default disabled)
+
                                Active windows
       --ipv4-timeout=<integer>  TCP connection timeout
+
           Comma-separated list of active windows, defaults to all
           Default TCP connection timeout (in milliseconds).  
+
 
  Socks proxy:
+
Clone video filter (clone)
       --socks=<string>          SOCKS server
+
Duplicate your video to multiple windows and/or video output modules
           SOCKS proxy server to use. This must be of the form address:port. It
+
       --clone-count=<integer>   Number of clones
          will be used for all TCP connections
+
           Number of video windows in which to clone the video.
       --socks-user=<string>      SOCKS user name
+
       --clone-vout-list=<string> Video output modules
          User name to be used for connection to the SOCKS proxy.
+
           You can use specific video output modules for the clones. Use a
      --socks-pwd=<string>      SOCKS password
+
          comma-separated list of modules.
           Password to be used for connection to the SOCKS proxy.
+
 
  Metadata:
+
YUV video output (yuv)
       --meta-title=<string>      Title metadata
+
       --yuv-file=<string>       device, fifo or filename
          Allows you to specify a "title" metadata for an input.
+
           device, fifo or filename to write yuv frames too.
      --meta-author=<string>    Author metadata
+
      --yuv-chroma=<string>     Chroma used
          Allows you to specify an "author" metadata for an input.
+
           Force use of a specific chroma for output.
      --meta-artist=<string>    Artist metadata
+
      --yuv-yuv4mpeg2, --no-yuv-yuv4mpeg2
          Allows you to specify an "artist" metadata for an input.
+
                                Add a YUV4MPEG2 header
      --meta-genre=<string>      Genre metadata
+
                                (default disabled)
          Allows you to specify a "genre" metadata for an input.
+
          The YUV4MPEG2 header is compatible with mplayer yuv video output and
      --meta-copyright=<string>  Copyright metadata
+
           requires YV12/I420 fourcc.
           Allows you to specify a "copyright" metadata for an input.
+
 
       --meta-description=<string>
+
WGL extension for OpenGL (wgl)
                                Description metadata
+
       --gpu-affinity=<integer>   GPU affinity
          Allows you to specify a "description" metadata for an input.
+
           GPU affinity
      --meta-date=<string>      Date metadata
+
 
          Allows you to specify a "date" metadata for an input.
+
Video memory output (vmem)
      --meta-url=<string>        URL metadata
+
       --vmem-width=<integer>     Width
          Allows you to specify a "url" metadata for an input.
+
           Video memory buffer width.
  Advanced:
+
      --vmem-height=<integer>    Height
      --cr-average=<integer>    Clock reference average counter
+
           Video memory buffer height.
          When using the PVR input (or a very irregular source), you should set
+
       --vmem-pitch=<integer>     Pitch
           this to 10000.
+
           Video memory buffer pitch in bytes.
       --clock-synchro={-1 (Default), 0 (Disable), 1 (Enable)}
+
      --vmem-chroma=<string>    Chroma
                                 Clock synchronisation
+
           Output chroma for the memory image as a 4-character string, eg.
           It is possible to disable the input clock synchronisation for
+
          "RV32".
           real-time sources. Use this if you experience jerky playback of
+
 
          network streams.
+
Dummy video output (vdummy)
       --network-synchronisation, --no-network-synchronisation
+
      --dummy-chroma=<string>    Dummy image chroma format
                                 Network synchronisation (default disabled)
+
           Force the dummy video output to create images using a specific chroma
           This allows you to remotely synchronise clocks for server and client.
+
          format instead of trying to improve performances by using the most
           The detailed settings are available in Advanced / Network Sync.
+
          efficient one.
           (default disabled)
+
 
 +
OpenGL video output (gl)
 +
       --gl={any,wgl,none}        OpenGL extension
 +
           Extension through which to use the Open Graphics Library (OpenGL).
 +
       --glconv={any,direct3d9,none}
 +
                                Open GL/GLES hardware converter
 +
           Force a "glconv" module.
 +
  Colorspace conversion:
 +
       --rendering-intent={0 (Perceptual), 1 (Relative colorimetric), 2 (Absolute colorimetric), 3 (Saturation)}
 +
                                Rendering intent for color conversion
 +
           The algorithm used to convert between color spaces
 +
       --target-prim={0 (Unknown primaries), 1 (ITU-R Rec. BT.601 (525-line = NTSC, SMPTE-C)), 2 (ITU-R Rec. BT.601 (625-line = PAL, SECAM)), 3 (ITU-R Rec. BT.709 (HD), also sRGB), 4 (ITU-R Rec. BT.470 M), 5 (ITU-R Rec. BT.2020 (UltraHD)), 6 (Apple RGB), 7 (Adobe RGB (1998)), 8 (ProPhoto RGB (ROMM)), 9 (CIE 1931 RGB primaries), 10 (DCI-P3 (Digital Cinema)), 11 (Panasonic V-Gamut (VARICAM)), 12 (Sony S-Gamut)}
 +
                                Display primaries
 +
           The primaries associated with the output display
 +
       --target-trc={0 (Unknown gamma), 1 (ITU-R Rec. BT.1886 (CRT emulation + OOTF)), 2 (IEC 61966-2-4 sRGB (CRT emulation)), 3 (Linear light content), 4 (Pure power gamma 1.8), 5 (Pure power gamma 2.2), 6 (Pure power gamma 2.8), 7 (ProPhoto RGB (ROMM)), 8 (ITU-R BT.2100 PQ (perceptual quantizer), aka SMPTE ST2048), 9 (ITU-R BT.2100 HLG (hybrid log-gamma), aka ARIB STD-B67), 10 (Panasonic V-Log (VARICAM)), 11 (Sony S-Log1), 12 (Sony S-Log2)}
 +
                                Display gamma / transfer function
 +
           The gamma/transfer function associated with the output display
 +
  Tone mapping:
 +
       --tone-mapping={3 (Hable (filmic mapping, recommended)), 1 (Mobius (linear + knee)), 2 (Reinhard (simple non-linear)), 4 (Gamma-Power law), 5 (Linear stretch (peak to peak)), 0 (Hard clip out-of-gamut)}  
 +
                                 Tone-mapping algorithm
 +
           Algorithm to use when converting from wide gamut to standard gamut,
 +
           or from HDR to SDR
 +
       --tone-mapping-param=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                 Tone-mapping parameter
 +
           This parameter can be used to tune the tone-mapping curve. Specifics
 +
           depend on the curve used.
 +
      --tone-mapping-desat=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                Tone-mapping desaturation coefficient
 +
           How strongly to desaturate overbright colors towards white. 0.0
 +
          disables this behavior.
 +
      --tone-mapping-warn, --no-tone-mapping-warn
 +
                                Highlight clipped pixels
 +
                                (default disabled)
 +
          Debugging tool to indicate which pixels were clipped as part of the
 +
          tone mapping process.
 +
  Dithering:
 +
      --dither-algo={-1 (Disabled), 0 (Blue noise), 3 (White noise), 1 (Bayer matrix (ordered dither))}
 +
                                Dithering algorithm
 +
          The algorithm to use when dithering to a lower bit depth (degrades
 +
          performance on some platforms).
 +
      --dither-depth=<integer [0 .. 16]>
 +
                                Dither depth override (0 = framebuffer depth)
 +
          Overrides the detected framebuffer depth. Useful to dither to lower
 +
          bit depths than otherwise required.
 +
 
 +
OpenGL video output for Windows (glwin32)
 +
      --glconv={any,direct3d9,none}
 +
                                Open GL/GLES hardware converter
 +
          Force a "glconv" module.
 +
  Colorspace conversion:
 +
      --rendering-intent={0 (Perceptual), 1 (Relative colorimetric), 2 (Absolute colorimetric), 3 (Saturation)}
 +
                                Rendering intent for color conversion
 +
          The algorithm used to convert between color spaces
 +
      --target-prim={0 (Unknown primaries), 1 (ITU-R Rec. BT.601 (525-line = NTSC, SMPTE-C)), 2 (ITU-R Rec. BT.601 (625-line = PAL, SECAM)), 3 (ITU-R Rec. BT.709 (HD), also sRGB), 4 (ITU-R Rec. BT.470 M), 5 (ITU-R Rec. BT.2020 (UltraHD)), 6 (Apple RGB), 7 (Adobe RGB (1998)), 8 (ProPhoto RGB (ROMM)), 9 (CIE 1931 RGB primaries), 10 (DCI-P3 (Digital Cinema)), 11 (Panasonic V-Gamut (VARICAM)), 12 (Sony S-Gamut)}
 +
                                Display primaries
 +
          The primaries associated with the output display
 +
      --target-trc={0 (Unknown gamma), 1 (ITU-R Rec. BT.1886 (CRT emulation + OOTF)), 2 (IEC 61966-2-4 sRGB (CRT emulation)), 3 (Linear light content), 4 (Pure power gamma 1.8), 5 (Pure power gamma 2.2), 6 (Pure power gamma 2.8), 7 (ProPhoto RGB (ROMM)), 8 (ITU-R BT.2100 PQ (perceptual quantizer), aka SMPTE ST2048), 9 (ITU-R BT.2100 HLG (hybrid log-gamma), aka ARIB STD-B67), 10 (Panasonic V-Log (VARICAM)), 11 (Sony S-Log1), 12 (Sony S-Log2)}
 +
                                Display gamma / transfer function
 +
          The gamma/transfer function associated with the output display
 +
  Tone mapping:
 +
      --tone-mapping={3 (Hable (filmic mapping, recommended)), 1 (Mobius (linear + knee)), 2 (Reinhard (simple non-linear)), 4 (Gamma-Power law), 5 (Linear stretch (peak to peak)), 0 (Hard clip out-of-gamut)}
 +
                                Tone-mapping algorithm
 +
          Algorithm to use when converting from wide gamut to standard gamut,
 +
          or from HDR to SDR
 +
      --tone-mapping-param=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                Tone-mapping parameter
 +
          This parameter can be used to tune the tone-mapping curve. Specifics
 +
          depend on the curve used.
 +
      --tone-mapping-desat=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                Tone-mapping desaturation coefficient
 +
          How strongly to desaturate overbright colors towards white. 0.0
 +
          disables this behavior.
 +
      --tone-mapping-warn, --no-tone-mapping-warn
 +
                                Highlight clipped pixels
 +
                                (default disabled)
 +
          Debugging tool to indicate which pixels were clipped as part of the
 +
          tone mapping process.
 +
  Dithering:
 +
      --dither-algo={-1 (Disabled), 0 (Blue noise), 3 (White noise), 1 (Bayer matrix (ordered dither))}
 +
                                Dithering algorithm
 +
          The algorithm to use when dithering to a lower bit depth (degrades
 +
          performance on some platforms).
 +
      --dither-depth=<integer [0 .. 16]>
 +
                                Dither depth override (0 = framebuffer depth)
 +
          Overrides the detected framebuffer depth. Useful to dither to lower
 +
          bit depths than otherwise required.
 +
 
 +
Flaschen-Taschen video output (flaschen)
 +
      --flaschen-display=<string>
 +
                                Flaschen-Taschen display address
 +
          IP address or hostname of the Flaschen-Taschen display. Something
 +
          like ft.noise or ftkleine.noise
 +
      --flaschen-width=<integer> Width
 +
          Video width
 +
      --flaschen-height=<integer>
 +
                                Height
 +
          Video height
 +
 
 +
Embedded window video (drawable)
 +
      --drawable-hwnd=<integer>  Window handle (HWND)
 +
          Video will be embedded in this pre-existing window. If zero, a new
 +
          window will be created.
 +
 
 +
DirectX (DirectDraw) video output (directdraw)
 +
Recommended video output for Windows XP. Incompatible with Vista's Aero interface
 +
      --directx-hw-yuv, --no-directx-hw-yuv
 +
                                Use hardware YUV->RGB conversions
 +
                                (default enabled)
 +
          Try to use hardware acceleration for YUV->RGB conversions. This
 +
          option doesn't have any effect when using overlays.
 +
      --directx-overlay, --no-directx-overlay
 +
                                Overlay video output
 +
                                (default enabled)
 +
          Overlay is the hardware acceleration capability of your video card
 +
          (ability to render video directly). VLC will try to use it by
 +
          default.
 +
      --directx-use-sysmem, --no-directx-use-sysmem
 +
                                Use video buffers in system memory
 +
                                (default disabled)
 +
          Create video buffers in system memory instead of video memory. This
 +
          isn't recommended as usually using video memory allows benefiting
 +
          from more hardware acceleration (like rescaling or YUV->RGB
 +
          conversions). This option doesn't have any effect when using
 +
          overlays.
 +
      --directx-3buffering, --no-directx-3buffering
 +
                                Use triple buffering for overlays
 +
                                (default enabled)
 +
          Try to use triple buffering when using YUV overlays. That results in
 +
          much better video quality (no flickering).
 +
      --directx-device={,display,\\.\DISPLAY1}
 +
                                Name of desired display device
 +
          In a multiple monitor configuration, you can specify the Windows
 +
          device name of the display that you want the video window to open on.
 +
          For example, "\\.\DISPLAY1" or "\\.\DISPLAY2".
 +
 
 +
Direct3D9 video output (direct3d9)
 +
Recommended video output for Windows Vista and later versions
 +
      --direct3d9-hw-blending, --no-direct3d9-hw-blending
 +
                                Use hardware blending support
 +
                                (default enabled)
 +
          Try to use hardware acceleration for subtitle/OSD blending.
 +
      --direct3d9-shader={Disabled,Invert,Grayscale,Convert601to709,GammaCorrection18,GammaCorrection22,GammaCorrectionBT709,WidenColorSpace,HLSL File}
 +
                                Pixel Shader
 +
          Choose a pixel shader to apply.
 +
      --direct3d9-shader-file=<string>
 +
                                Path to HLSL file
 +
          Path to an HLSL file containing a single pixel shader.
  
  Decoders
+
  Direct3D11 video output (direct3d11)
  This option can be used to alter the way VLC selects its codecs (decompression methods). Only advanced users should alter this option as it can break playback of all your streams.
+
  Recommended video output for Windows 8 and later versions
       --codec=<string>          Preferred decoders list
+
       --direct3d11-hw-blending, --no-direct3d11-hw-blending
          List of codecs that VLC will use in priority. For instance,
+
                                Use hardware blending support
          'dummy,a52' will try the dummy and a52 codecs before trying the other
+
                                (default enabled)
          ones. Only advanced users should alter this option as it can break
+
           Try to use hardware acceleration for subtitle/OSD blending.
           playback of all your streams.
 
      --encoder=<string>        Preferred encoders list
 
          This allows you to select a list of encoders that VLC will use in
 
          priority.
 
  
  Input
+
  Video transformation filter (transform)
  These options allow you to modify the behavior of the input subsystem, such as the DVD or VCD device, the network interface settings or the subtitle channel.
+
  Rotate or flip the video
       --access=<string>          Access module
+
       --transform-type={90,180,270,hflip,vflip,transpose,antitranspose}
           This allows you to force an access module. You can use it if the
+
                                Transform type
          correct access is not automatically detected. You should not set this
+
           Transform type
          as a global option unless you really know what you are doing.
+
 
       --access-filter=<string>   Access filter module
+
Sharpen video filter (sharpen)
           Access filters are used to modify the stream that is being read. This
+
Augment contrast between contours.
          is used for instance for timeshifting.
+
       --sharpen-sigma=<float [0.000000 .. 2.000000]>  
      --demux=<string>          Demux module
+
                                Sharpen strength (0-2)
          Demultiplexers are used to separate the "elementary" streams (like
+
           Set the Sharpen strength, between 0 and 2. Defaults to 0.05.
          audio and video streams). You can use it if the correct demuxer is
+
 
          not automatically detected. You should not set this as a global
+
Sepia video filter (sepia)
          option unless you really know what you are doing.
+
Gives video a warmer tone by applying sepia effect
       --prefer-system-codecs, --no-prefer-system-codecs
+
       --sepia-intensity=<integer [0 .. 255]>
                                 Prefer system plugins over VLC (default
+
                                 Sepia intensity
                                disabled)
+
           Intensity of sepia effect
           Indicates whether VLC will prefer native plugins installed on system
 
          over VLC owns plugins whenever a choice is available. (default
 
          disabled)
 
  
  Stream output
+
  Scene video filter (scene)
  These options allow you to set default global options for the stream output subsystem.
+
  Send your video to picture files
       --sout=<string>           Default stream output chain
+
       --scene-format=<string>   Image format
           You can enter here a default stream output chain. Refer to the
+
           Format of the output images (png, jpeg, ...).
          documentation to learn how to build such chains.Warning: this chain
+
       --scene-width=<integer>   Image width
          will be enabled for all streams.
+
           You can enforce the image width. By default (-1) VLC will adapt to
      --sout-display, --no-sout-display
+
           the video characteristics.
                                Display while streaming (default disabled)
+
       --scene-height=<integer>   Image height
          Play locally the stream while streaming it. (default disabled)
+
           You can enforce the image height. By default (-1) VLC will adapt to
      --sout-keep, --no-sout-keep
+
           the video characteristics.
                                Keep stream output open (default disabled)
+
       --scene-prefix=<string>   Filename prefix
          This allows you to keep an unique stream output instance across
+
           Prefix of the output images filenames. Output filenames will have the
          multiple playlist item (automatically insert the gather stream output
+
           "prefixNUMBER.format" form if replace is not true.
          if not specified) (default disabled)
+
       --scene-path=<string>      Directory path prefix
      --sout-all, --no-sout-all  Enable streaming of all ES (default disabled)
+
           Directory path where images files should be saved. If not set, then
          Stream all elementary streams (video, audio and subtitles) (default
+
           images will be automatically saved in users homedir.
          disabled)
+
       --scene-replace, --no-scene-replace
      --sout-audio, --no-sout-audio
+
                                Always write to the same file
                                Enable audio stream output (default enabled)
+
                                 (default disabled)
          Choose whether the audio stream should be redirected to the stream
+
           Always write to the same file instead of creating one file per image.
          output facility when this last one is enabled. (default enabled)
+
          In this case, the number is not appended to the filename.
      --sout-video, --no-sout-video
+
       --scene-ratio=<integer [1 .. 2147483647]>  
                                Enable video stream output (default enabled)
+
                                Recording ratio
          Choose whether the video stream should be redirected to the stream
+
           Ratio of images to record. 3 means that one image out of three is
          output facility when this last one is enabled. (default enabled)
+
           recorded.
      --sout-spu, --no-sout-spu  Enable SPU stream output (default enabled)
 
          Choose whether the SPU streams should be redirected to the stream
 
          output facility when this last one is enabled. (default enabled)
 
       --sout-mux-caching=<integer>
 
                                Stream output muxer caching (ms)
 
           This allow you to configure the initial caching amount for stream
 
          output  muxer. This value should be set in milliseconds.
 
  VLM:
 
      --vlm-conf=<string>        VLM configuration file
 
           Read a VLM configuration file as soon as VLM is started.
 
       --mux=<string>            Mux module
 
          This is a legacy entry to let you configure mux modules
 
      --access_output=<string>  Access output module
 
          This is a legacy entry to let you configure access output modules
 
      --ttl=<integer>           Hop limit (TTL)
 
           This is the hop limit (also known as "Time-To-Live" or TTL) of the
 
          multicast packets sent by the stream output (-1 = use operating
 
          system built-in default).
 
      --miface=<string>          Multicast output interface
 
           Default multicast interface. This overrides the routing table.
 
       --miface-addr=<string>     IPv4 multicast output interface address
 
           IPv4 adress for the default multicast interface. This overrides the
 
           routing table.
 
      --dscp=<integer>          DiffServ Code Point
 
          Differentiated Services Code Point for outgoing UDP streams (or IPv4
 
          Type Of Service, or IPv6 Traffic Class). This is used for network
 
          Quality of Service.
 
       --packetizer=<string>      Preferred packetizer list
 
           This allows you to select the order in which VLC will choose its
 
           packetizers.
 
       --sap-flow-control, --no-sap-flow-control
 
                                 Control SAP flow (default disabled)
 
           If this option is enabled, the flow on the SAP multicast address will
 
          be controlled. This is needed if you want to make announcements on
 
          the MBone. (default disabled)
 
       --sap-interval=<integer>   SAP announcement interval
 
           When the SAP flow control is disabled, this lets you set the fixed
 
           interval between SAP announcements.
 
  
  CPU
+
  Rotate video filter (rotate)
These options allow you to enable special CPU optimizations. You should always leave all these enabled.
+
       --rotate-angle=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
       --fpu, --no-fpu            Enable FPU support (default enabled)
+
                                Angle in degrees
          If your processor has a floating point calculation unit, VLC can take
+
           Angle in degrees (0 to 359)
           advantage of it. (default enabled)
+
       --rotate-use-motion, --no-rotate-use-motion
       --mmx, --no-mmx            Enable CPU MMX support (default enabled)
+
                                Use motion sensors
          If your processor supports the MMX instructions set, VLC can take
+
                                (default disabled)
          advantage of them. (default enabled)
+
           Use HDAPS, AMS, APPLESMC or UNIMOTION motion sensors to rotate the
      --3dn, --no-3dn            Enable CPU 3D Now! support (default enabled)
+
           video
           If your processor supports the 3D Now! instructions set, VLC can take
+
 
           advantage of them. (default enabled)
+
Puzzle interactive game video filter (puzzle)
      --mmxext, --no-mmxext      Enable CPU MMX EXT support (default enabled)
+
       --puzzle-rows=<integer [2 .. 42]>
          If your processor supports the MMX EXT instructions set, VLC can take
+
                                Number of puzzle rows
          advantage of them. (default enabled)
+
           Number of puzzle rows
       --sse, --no-sse            Enable CPU SSE support (default enabled)
+
       --puzzle-cols=<integer [2 .. 42]>
          If your processor supports the SSE instructions set, VLC can take
+
                                Number of puzzle columns
           advantage of them. (default enabled)
+
           Number of puzzle columns
       --sse2, --no-sse2          Enable CPU SSE2 support (default enabled)
+
       --puzzle-border=<integer [0 .. 40]>  
          If your processor supports the SSE2 instructions set, VLC can take
+
                                Border
           advantage of them. (default enabled)
+
           Unshuffled Border width.
 
+
       --puzzle-preview, --no-puzzle-preview
Miscellaneous
+
                                Small preview
These options allow you to select default modules. Leave these alone unless you really know what you are doing.
+
                                 (default disabled)
  Special modules:
+
           Show small preview.
       --memcpy=<string>         Memory copy module
+
       --puzzle-preview-size=<integer [0 .. 100]>  
          You can select which memory copy module you want to use. By default
+
                                Small preview size
           VLC will select the fastest one supported by your hardware.
+
           Show small preview size (percent of source).
  Plugins:
+
       --puzzle-shape-size=<integer [0 .. 100]>
       --plugins-cache, --no-plugins-cache
+
                                 Piece edge shape size
                                 Use a plugins cache (default enabled)
+
           Size of the curve along the piece's edge
           Use a plugins cache which will greatly improve the startup time of
+
       --puzzle-auto-shuffle=<integer [0 .. 30000]>
          VLC. (default enabled)
+
                                 Auto shuffle
       --plugin-path=<string>     Modules search path
+
           Auto shuffle delay during game
           Additional path for VLC to look for its modules. You can add several
+
       --puzzle-auto-solve=<integer [0 .. 30000]>
          paths by concatenating them using " PATH_SEP " as separator
+
                                 Auto solve
  Performance options:
+
           Auto solve delay during game
       --minimize-threads, --no-minimize-threads
+
       --puzzle-rotation={0 (0), 1 (0/180), 2 (0/90/180/270), 3 (0/90/180/270/mirror)}
                                 Minimize number of threads (default disabled)
+
                                 Rotation
           This option minimizes the number of threads needed to run VLC.
+
           Rotation parameter: none;180;90-270;mirror
          (default disabled)
+
       --puzzle-mode={0 (jigsaw puzzle), 1 (sliding puzzle), 2 (swap puzzle), 3 (exchange puzzle)}
       --use-stream-immediate, --no-use-stream-immediate
+
                                Game mode
                                (Experimental) Don't do caching at the access
+
           Select game mode variation from jigsaw puzzle to sliding puzzle.
                                 level. (default disabled)
 
           This option is useful if you want to lower the latency when reading a
 
          stream (default disabled)
 
       --auto-adjust-pts-delay, --no-auto-adjust-pts-delay
 
                                (Experimental) Minimize latency whenreading
 
                                 live stream. (default disabled)
 
           This option is useful if you want to lower the latency when reading a
 
          stream (default disabled)
 
       --one-instance, --no-one-instance
 
                                Allow only one running instance (default
 
                                disabled)
 
          Allowing only one running instance of VLC can sometimes be useful,
 
          for example if you associated VLC with some media types and you don't
 
          want a new instance of VLC to be opened each time you double-click on
 
          a file in the explorer. This option will allow you to play the file
 
          with the already running instance or enqueue it. (default disabled)
 
      --started-from-file, --no-started-from-file
 
                                VLC is started from file association (default
 
                                disabled)
 
          Tell VLC that it is being launched due to a file association in the
 
          OS (default disabled)
 
      --one-instance-when-started-from-file, --no-one-instance-when-started-from-file
 
                                 One instance when started from file (default
 
                                enabled)
 
           Allow only one running instance when started from file. (default
 
          enabled)
 
       --playlist-enqueue, --no-playlist-enqueue
 
                                Enqueue items to playlist when in one
 
                                instance mode (default disabled)
 
          When using the one instance only option, enqueue items to playlist
 
          and keep playing current item. (default disabled)
 
      --high-priority, --no-high-priority
 
                                Increase the priority of the process (default
 
                                disabled)
 
          Increasing the priority of the process will very likely improve your
 
          playing experience as it allows VLC not to be disturbed by other
 
          applications that could otherwise take too much processor time.
 
          However be advised that in certain circumstances (bugs) VLC could
 
          take all the processor time and render the whole system unresponsive
 
           which might require a reboot of your machine. (default disabled)
 
  
  Playlist
+
  Video post processing filter (postproc)
These options define the behavior of the playlist. Some of them can be overridden in the playlist dialog box.
+
      --postproc-q=<integer [0 .. 6]>
  -Z, --random, --no-random      Play files randomly forever (default disabled)
+
                                 Post processing quality
          VLC will randomly play files in the playlist until interrupted.
+
           Quality of post processing. Valid range is 0 (disabled) to 6
          (default disabled)
+
           (highest) Higher levels require more CPU power, but produce higher
  -L, --loop, --no-loop          Repeat all (default disabled)
+
           quality pictures. With default filter chain, the values map to the
          VLC will keep playing the playlist indefinitely. (default disabled)
+
           following filters: 1: hb, 2-4: hb+vb, 5-6: hb+vb+dr
  -R, --repeat, --no-repeat      Repeat current item (default disabled)
+
       --postproc-name=<string>   FFmpeg post processing filter chains
          VLC will keep playing the current playlist item. (default disabled)
+
           FFmpeg post processing filter chains
      --play-and-exit, --no-play-and-exit
+
 
                                 Play and exit (default disabled)
+
Posterize video filter (posterize)
           Exit if there are no more items in the playlist. (default disabled)
+
Posterize video by lowering the number of colors
      --play-and-stop, --no-play-and-stop
+
       --posterize-level=<integer [2 .. 256]>  
                                Play and stop (default disabled)
+
                                 Posterize level
           Stop the playlist after each played playlist item. (default disabled)
+
           Posterize level (number of colors is cube of this value)
      --media-library, --no-media-library
+
 
                                Use media library (default enabled)
+
Motion blur filter (motionblur)
           The media library is automatically saved and reloaded each time you
+
      --blur-factor=<integer [1 .. 127]>  
          start VLC. (default enabled)
+
                                Blur factor (1-127)
      --playlist-tree, --no-playlist-tree
+
           The degree of blurring from 1 to 127.
                                Display playlist tree (default disabled)
+
 
          The playlist can use a tree to categorize some items, like the
+
Mirror video filter (mirror)
           contents of a directory. (default disabled)
+
Splits video in two same parts, like in a mirror
       --open=<string>           Default stream
+
       --mirror-split={0 (Vertical), 1 (Horizontal)}  
           This stream will always be opened at VLC startup.
+
                                 Mirror orientation
      --auto-preparse, --no-auto-preparse
+
           Defines orientation of the mirror splitting. Can be vertical or
                                Automatically preparse files (default enabled)
+
           horizontal.
          Automatically preparse files added to the playlist (to retrieve some
+
       --mirror-direction={0 (Left to right/Top to bottom), 1 (Right to left/Bottom to top)}
          metadata). (default enabled)
+
                                Direction
       --album-art={0 (Manual download only), 1 (When track starts playing), 2 (As soon as track is added)}
+
           Direction of the mirroring.
                                Album art policy
+
 
          Choose how album art will be downloaded.
+
High Quality 3D Denoiser filter (hqdn3d)
  -S, --services-discovery=<string>
+
       --hqdn3d-luma-spat=<float [0.000000 .. 254.000000]>
                                 Services discovery modules
+
                                Spatial luma strength (0-254)
           Specifies the services discovery modules to load, separated by
+
           Spatial luma strength (0-254)
          semi-colons. Typical values are sap, hal, ...
+
       --hqdn3d-chroma-spat=<float [0.000000 .. 254.000000]>
  -v, --verbose=<integer>       Verbosity (0,1,2)
+
                                 Spatial chroma strength (0-254)
           This is the verbosity level (0=only errors and standard messages,
+
           Spatial chroma strength (0-254)
          1=warnings, 2=debug).
+
       --hqdn3d-luma-temp=<float [0.000000 .. 254.000000]>
  -q, --quiet, --no-quiet        Be quiet (default disabled)
+
                                Temporal luma strength (0-254)
          Turn off all warning and information messages. (default disabled)
+
           Temporal luma strength (0-254)
      --file-logging, --no-file-logging
+
      --hqdn3d-chroma-temp=<float [0.000000 .. 254.000000]>
                                Log to file (default disabled)
+
                                Temporal chroma strength (0-254)
          Log all VLC messages to a text file. (default disabled)
+
           Temporal chroma strength (0-254)
       --language={auto,en,ar,pt_BR,en_GB,bg,ca,zh_TW,cs,da,nl,fi,fr,gl,ka,de,he,hu,it,ja,ko,ms,oc,fa,pl,pt_PT,pa,ro,ru,zh_CN,sr,sk,sl,es,sv,tr,uk}
 
                                 Language
 
           You can manually select a language for the interface. The system
 
           language is auto-detected if "auto" is specified here.
 
       --color, --no-color        Color messages (default enabled)
 
          This enables colorization of the messages sent to the console Your
 
          terminal needs Linux color support for this to work. (default enabled)
 
      --advanced, --no-advanced  Show advanced options (default enabled)
 
           When this is enabled, the preferences and/or interfaces will show all
 
          available options, including those that most users should never
 
          touch. (default enabled)
 
       --interact, --no-interact  Interface interaction (default enabled)
 
           When this is enabled, the interface will show a dialog box each time
 
          some user input is required. (default enabled)
 
       --show-intf, --no-show-intf
 
                                 Show interface with mouse (default disabled)
 
           When this is enabled, the interface is shown when you move the mouse
 
          to the edge of the screen in fullscreen mode. (default disabled)
 
       --stats, --no-stats        Collect statistics (default enabled)
 
           Collect miscellaneous statistics. (default enabled)
 
  -I, --intf=<string>            Interface module
 
          This is the main interface used by VLC. The default behavior is to
 
          automatically select the best module available.
 
      --extraintf=<string>      Extra interface modules
 
          You can select "additional interfaces" for VLC. They will be launched
 
          in the background in addition to the default interface. Use a comma
 
          separated list of interface modules. (common values are "rc" (remote
 
           control), "http", "gestures" ...)
 
      --control=<string>        Control interfaces
 
          You can select control interfaces for VLC.
 
  
  Hot keys
+
  Grain video filter (grain)
  These settings are the global VLC key bindings, known as "hotkeys".
+
  Adds filtered gaussian noise
       --key-toggle-fullscreen=<integer>
+
       --grain-variance=<float [0.000000 .. 10.000000]>  
                                 Fullscreen
+
                                 Variance
           Select the hotkey to use to swap fullscreen state.
+
           Variance of the gaussian noise
       --key-leave-fullscreen=<integer>
+
       --grain-period-min=<integer [1 .. 64]>  
                                 Leave fullscreen
+
                                 Minimal period
           Select the hotkey to use to leave fullscreen state.
+
           Minimal period of the noise grain in pixel
       --key-play-pause=<integer> Play/Pause
+
       --grain-period-max=<integer [1 .. 64]>  
           Select the hotkey to use to swap paused state.
+
                                Maximal period
       --key-pause=<integer>      Pause only
+
           Maximal period of the noise grain in pixel
           Select the hotkey to use to pause.
+
 
       --key-play=<integer>       Play only
+
Gradient video filter (gradient)
           Select the hotkey to use to play.
+
Apply color gradient or edge detection effects
       --key-faster=<integer>    Faster
+
       --gradient-mode={gradient,edge,hough}
          Select the hotkey to use for fast forward playback.
+
                                Distort mode
      --key-slower=<integer>    Slower
+
           Distort mode, one of "gradient", "edge" and "hough".
           Select the hotkey to use for slow motion playback.
+
       --gradient-type=<integer [0 .. 1]>  
       --key-next=<integer>       Next
+
                                Gradient image type
           Select the hotkey to use to skip to the next item in the playlist.
+
           Gradient image type (0 or 1). 0 will turn the image to white while 1
       --key-prev=<integer>       Previous
+
          will keep colors.
           Select the hotkey to use to skip to the previous item in the playlist.
+
       --gradient-cartoon, --no-gradient-cartoon
      --key-stop=<integer>      Stop
+
                                Apply cartoon effect
          Select the hotkey to stop playback.
+
                                (default enabled)
       --key-position=<integer>   Position
+
           Apply cartoon effect. It is only used by "gradient" and "edge".
           Select the hotkey to display the position.
+
 
      --key-jump-extrashort=<integer>
+
Gradfun video filter (gradfun)
                                Very short backwards jump
+
Debanding algorithm
          Select the hotkey to make a very short backwards jump.
+
       --gradfun-radius=<integer [4 .. 32]>  
       --key-jump+extrashort=<integer>
+
                                Radius
                                 Very short forward jump
+
           Radius in pixels
           Select the hotkey to make a very short forward jump.
+
       --gradfun-strength=<float [0.510000 .. 255.000000]>  
       --key-jump-short=<integer> Short backwards jump
+
                                Strength
           Select the hotkey to make a short backwards jump.
+
           Strength used to modify the value of a pixel
       --key-jump+short=<integer> Short forward jump
+
 
           Select the hotkey to make a short forward jump.
+
Gaussian blur video filter (gaussianblur)
       --key-jump-medium=<integer>
+
Add a blurring effect
                                Medium backwards jump
+
       --gaussianblur-sigma=<float [0.010000 .. 4096.000000]>  
           Select the hotkey to make a medium backwards jump.
+
                                Gaussian's std deviation
      --key-jump+medium=<integer>
+
           Gaussian's standard deviation. The blurring will take into account
                                 Medium forward jump
+
          pixels up to 3*sigma away in any direction.
           Select the hotkey to make a medium forward jump.
+
 
       --key-jump-long=<integer>  Long backwards jump
+
FPS conversion video filter (fps)
           Select the hotkey to make a long backwards jump.
+
      --fps-fps=<string>         Frame rate
      --key-jump+long=<integer>  Long forward jump
+
          Frame rate
           Select the hotkey to make a long forward jump.
+
 
      --key-nav-activate=<integer>
+
Extract RGB component video filter (extract)
                                Activate
+
       --extract-component={16711680 (Red), 65280 (Green), 255 (Blue)}
           Select the key to activate selected item in DVD menus.
+
                                 RGB component to extract
       --key-nav-up=<integer>    Navigate up
+
           RGB component to extract. 0 for Red, 1 for Green and 2 for Blue.
           Select the key to move the selector up in DVD menus.
+
 
       --key-nav-down=<integer>   Navigate down
+
Erase video filter (erase)
           Select the key to move the selector down in DVD menus.
+
Remove zones of the video using a picture as mask
       --key-nav-left=<integer>   Navigate left
+
       --erase-mask=<string>     Image mask
           Select the key to move the selector left in DVD menus.
+
          Image mask. Pixels with an alpha value greater than 50% will be
       --key-nav-right=<integer> Navigate right
+
           erased.
          Select the key to move the selector right in DVD menus.
+
       --erase-x=<integer>       X coordinate
       --key-disc-menu=<integer> Go to the DVD menu
+
           X coordinate of the mask.
           Select the key to take you to the DVD menu
+
       --erase-y=<integer>       Y coordinate
       --key-title-prev=<integer> Select previous DVD title
+
           Y coordinate of the mask.
           Select the key to choose the previous title from the DVD
+
 
       --key-title-next=<integer> Select next DVD title
+
Deinterlacing video filter (deinterlace)
           Select the key to choose the next title from the DVD
+
      --sout-deinterlace-mode={discard,blend,mean,bob,linear,x,yadif,yadif2x,phosphor,ivtc}
       --key-chapter-prev=<integer>
+
                                 Streaming deinterlace mode
                                 Select prev DVD chapter
+
           Deinterlace method to use for streaming.
           Select the key to choose the previous chapter from the DVD
+
       --sout-deinterlace-phosphor-chroma={1 (Latest), 2 (AltLine), 3 (Blend), 4 (Upconvert)}
       --key-chapter-next=<integer>
+
                                Phosphor chroma mode for 4:2:0 input
                                 Select next DVD chapter
+
           Choose handling for colours in those output frames that fall across
           Select the key to choose the next chapter from the DVD
+
          input frame boundaries.  Latest: take chroma from new (bright) field
      --key-quit=<integer>      Quit
+
           only. Good for interlaced input, such as videos from a camcorder.
          Select the hotkey to quit the application.
+
          AltLine: take chroma line 1 from top field, line 2 from bottom field,
       --key-vol-up=<integer>    Volume up
+
          etc.  Default, good for NTSC telecined input (anime DVDs, etc.). 
           Select the key to increase audio volume.
+
           Blend: average input field chromas. May distort the colours of the
       --key-vol-down=<integer>   Volume down
+
          new (bright) field, too.  Upconvert: output in 4:2:2 format
          Select the key to decrease audio volume.
+
          (independent chroma for each field). Best simulation, but requires
      --key-vol-mute=<integer>   Mute
+
          more CPU and memory bandwidth.
          Select the key to mute audio.
+
       --sout-deinterlace-phosphor-dimmer={1 (Off), 2 (Low), 3 (Medium), 4 (High)}
       --key-subdelay-up=<integer>
+
                                Phosphor old field dimmer strength
                                 Subtitle delay up
+
           This controls the strength of the darkening filter that simulates CRT
           Select the key to increase the subtitle delay.
+
          TV phosphor light decay for the old field in the Phosphor framerate
       --key-subdelay-down=<integer>
+
          doubler. Default: Low.
                                 Subtitle delay down
+
 
           Select the key to decrease the subtitle delay.
+
Video cropping filter (croppadd)
       --key-audiodelay-up=<integer>
+
  Crop:
                                Audio delay up
+
       --croppadd-croptop=<integer [0 .. 2147483647]>  
           Select the key to increase the audio delay.
+
                                Pixels to crop from top
       --key-audiodelay-down=<integer>
+
           Number of pixels to crop from the top of the image.
                                 Audio delay down
+
       --croppadd-cropbottom=<integer [0 .. 2147483647]>  
           Select the key to decrease the audio delay.
+
                                Pixels to crop from bottom
      --key-audio-track=<integer>
+
           Number of pixels to crop from the bottom of the image.
                                Cycle audio track
+
       --croppadd-cropleft=<integer [0 .. 2147483647]>  
           Cycle through the available audio tracks(languages).
+
                                Pixels to crop from left
      --key-audiodevice-cycle=<integer>
+
          Number of pixels to crop from the left of the image.
                                Cycle through audio devices
+
       --croppadd-cropright=<integer [0 .. 2147483647]>  
          Cycle through available audio devices
+
                                Pixels to crop from right
      --key-subtitle-track=<integer>
+
           Number of pixels to crop from the right of the image.
                                 Cycle subtitle track
+
  Padd:
           Cycle through the available subtitle tracks.
+
       --croppadd-paddtop=<integer [0 .. 2147483647]>  
       --key-aspect-ratio=<integer>
+
                                Pixels to padd to top
                                 Cycle source aspect ratio
+
           Number of pixels to padd to the top of the image after cropping.
           Cycle through a predefined list of source aspect ratios.
+
       --croppadd-paddbottom=<integer [0 .. 2147483647]>  
       --key-crop=<integer>       Cycle video crop
+
                                Pixels to padd to bottom
           Cycle through a predefined list of crop formats.
+
           Number of pixels to padd to the bottom of the image after cropping.
       --key-deinterlace=<integer>
+
       --croppadd-paddleft=<integer [0 .. 2147483647]>  
                                 Cycle deinterlace modes
+
                                 Pixels to padd to left
           Cycle through deinterlace modes.
+
           Number of pixels to padd to the left of the image after cropping.
       --key-intf-show=<integer> Show interface
+
       --croppadd-paddright=<integer [0 .. 2147483647]>  
           Raise the interface above all other windows.
+
                                 Pixels to padd to right
       --key-intf-hide=<integer> Hide interface
+
           Number of pixels to padd to the right of the image after cropping.
           Lower the interface below all other windows.
+
 
       --key-snapshot=<integer>   Take video snapshot
+
Color threshold filter (colorthres)
           Takes a video snapshot and writes it to disk.
+
Select one color in the video
       --key-history-back=<integer>
+
       --colorthres-color={16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 65280 (Lime), 255 (Blue), 65535 (Aqua)}
                                 Go back in browsing history
+
                                Color
           Select the key to go back (to the previous media item) in the
+
           Colors similar to this will be kept, others will be grayscaled. This
          browsing history.
+
          must be an hexadecimal (like HTML colors). The first two chars are
       --key-history-forward=<integer>
+
          for red, then green, then blue. #000000 = black, #FF0000 = red,
                                 Go forward in browsing history
+
          #00FF00 = green, #FFFF00 = yellow (red + green), #FFFFFF = white
           Select the key to go forward (to the next media item) in the browsing
+
       --colorthres-saturationthres=<integer>  
          history.
+
                                Saturation threshold
       --key-record=<integer>     Record
+
      --colorthres-similaritythres=<integer>  
           Record access filter start/stop.
+
                                Similarity threshold
       --key-dump=<integer>      Dump
+
 
           Media dump access filter trigger.
+
Canvas video filter (canvas)
       --key-zoom=<integer>      Zoom
+
Automatically resize and pad a video
           Zoom
+
       --canvas-width=<integer [0 .. 2147483647]>  
       --key-unzoom=<integer>     Un-Zoom
+
                                 Output width
           Un-Zoom
+
           Output (canvas) image width
       --key-wallpaper=<integer>  Toggle wallpaper mode in video output
+
       --canvas-height=<integer [0 .. 2147483647]>  
          Toggle wallpaper mode in video output. Only works with the directx
+
                                 Output height
           video output for the time being.
+
           Output (canvas) image height
       --key-menu-on=<integer>    Display OSD menu on top of video output
+
       --canvas-aspect=<string>   Output picture aspect ratio
           Display OSD menu on top of video output
+
          Set the canvas' picture aspect ratio. If omitted, the canvas is
       --key-menu-off=<integer>   Do not display OSD menu on video output
+
           assumed to have the same SAR as the input.
           Do not display OSD menu on top of video output
+
       --canvas-padd, --no-canvas-padd
       --key-menu-right=<integer> Highlight widget on the right
+
                                Pad video
           Move OSD menu highlight to the widget on the right
+
                                 (default enabled)
       --key-menu-left=<integer>  Highlight widget on the left
+
           If enabled, video will be padded to fit in canvas after scaling.
          Move OSD menu highlight to the widget on the left
+
           Otherwise, video will be cropped to fix in canvas after scaling.
      --key-menu-up=<integer>    Highlight widget on top
+
 
           Move OSD menu highlight to the widget on top
+
Bluescreen video filter (bluescreen)
       --key-menu-down=<integerHighlight widget below
+
This effect, also known as "greenscreen" or "chroma key" blends the "blue parts" of the foreground image of the mosaic on the background (like weather forecasts). You can choose the "key" color for blending (blue by default).
           Move OSD menu highlight to the widget below
+
      --bluescreen-u=<integer [0 .. 255]>  
       --key-menu-select=<integer>
+
                                 Bluescreen U value
                                 Select current widget
+
           "U" value for the bluescreen key color (in YUV values). From 0 to
           Selecting current widget performs the associated action.
+
          255. Defaults to 120 for blue.
       --key-crop-top=<integer>   Crop one pixel from the top of the video
+
       --bluescreen-v=<integer [0 .. 255]>  
           Crop one pixel from the top of the video
+
                                 Bluescreen V value
       --key-uncrop-top=<integer> Uncrop one pixel from the top of the video
+
           "V" value for the bluescreen key color (in YUV values). From 0 to
           Uncrop one pixel from the top of the video
+
          255. Defaults to 90 for blue.
       --key-crop-left=<integer> Crop one pixel from the left of the video
+
       --bluescreen-ut=<integer [0 .. 255]>  
           Crop one pixel from the left of the video
+
                                Bluescreen U tolerance
       --key-uncrop-left=<integer>
+
           Tolerance of the bluescreen blender on color variations for the U
                                 Uncrop one pixel from the left of the video
+
          plane. A value between 10 and 20 seems sensible.
           Uncrop one pixel from the left of the video
+
       --bluescreen-vt=<integer [0 .. 255]>  
       --key-crop-bottom=<integer>
+
                                 Bluescreen V tolerance
                                Crop one pixel from the bottom of the video
+
           Tolerance of the bluescreen blender on color variations for the V
          Crop one pixel from the bottom of the video
+
          plane. A value between 10 and 20 seems sensible.
      --key-uncrop-bottom=<integer>
+
 
                                 Uncrop one pixel from the bottom of the video
+
Blending benchmark filter (blendbench)
           Uncrop one pixel from the bottom of the video
+
  Benchmarking:
       --key-crop-right=<integer> Crop one pixel from the right of the video
+
       --blendbench-loops=<integer>  
          Crop one pixel from the right of the video
+
                                Number of time to blend
       --key-uncrop-right=<integer>
+
           The number of time the blend will be performed
                                Uncrop one pixel from the right of the video
+
       --blendbench-alpha=<integer [0 .. 255]>  
          Uncrop one pixel from the right of the video
+
                                Alpha of the blended image
       --key-random=<integer>     Random
+
           Alpha with which the blend image is blended
           Toggle random playlist playback
+
  Base image:
       --key-loop=<integer>       Normal/Repeat/Loop
+
       --blendbench-base-image=<string>  
           Toggle Normal/Repeat/Loop playlist modes
+
                                Image to be blended onto
  Zoom:
+
           The image which will be used to blend onto
       --key-zoom-quarter=<integer>
+
       --blendbench-base-chroma=<string>  
                                1:4 Quarter
+
                                 Chroma for the base image
      --key-zoom-half=<integer>  1:2 Half
+
           Chroma which the base image will be loaded in
      --key-zoom-original=<integer>
+
  Blend image:
                                 1:1 Original
+
       --blendbench-blend-image=<string>  
      --key-zoom-double=<integer>
+
                                 Image which will be blended
                                2:1 Double
+
           The image blended onto the base image
  Jump sizes:
+
       --blendbench-blend-chroma=<string>  
      --extrashort-jump-size=<integer>
+
                                Chroma for the blend image
                                Very short jump length
+
           Chroma which the blend image will be loaded in
           Very short jump length, in seconds.
+
 
       --short-jump-size=<integer>
+
Ball video filter (ball)
                                 Short jump length
+
Augmented reality ball game
          Short jump length, in seconds.
+
       --ball-color={red,green,blue,white}
       --medium-jump-size=<integer>
+
                                Ball color
                                 Medium jump length
+
           Ball color
          Medium jump length, in seconds.
+
       --ball-speed=<integer [1 .. 15]>
       --long-jump-size=<integer> Long jump length
+
                                Ball speed
          Long jump length, in seconds.
+
           Set ball speed, the displacement value                             
      --key-set-bookmark1=<integer>
+
          in number of pixels by frame.
                                Set playlist bookmark 1
+
       --ball-size=<integer [5 .. 30]>  
          Select the key to set this playlist bookmark.
+
                                Ball size
       --key-set-bookmark2=<integer>
+
           Set ball size giving its radius in number                           
                                 Set playlist bookmark 2
+
              of pixels
          Select the key to set this playlist bookmark.
+
       --ball-gradient-threshold=<integer [1 .. 200]>
       --key-set-bookmark3=<integer>
+
                                Gradient threshold
                                Set playlist bookmark 3
+
           Set gradient threshold for edge computation.
          Select the key to set this playlist bookmark.
+
       --ball-edge-visible, --no-ball-edge-visible
      --key-set-bookmark4=<integer>
+
                                Edge visible
                                Set playlist bookmark 4
+
                                (default enabled)
          Select the key to set this playlist bookmark.
+
           Set edge visibility.
       --key-set-bookmark5=<integer>
+
 
                                 Set playlist bookmark 5
+
Antiflicker video filter (antiflicker)
          Select the key to set this playlist bookmark.
+
       --antiflicker-window-size=<integer [0 .. 100]>  
       --key-set-bookmark6=<integer>
+
                                Window size
                                 Set playlist bookmark 6
+
           Number of frames (0 to 100)
          Select the key to set this playlist bookmark.
+
       --antiflicker-softening-size=<integer [0 .. 31]>  
       --key-set-bookmark7=<integer>
+
                                Softening value
                                Set playlist bookmark 7
+
           Number of frames consider for smoothening (0 to 30)
          Select the key to set this playlist bookmark.
+
 
      --key-set-bookmark8=<integer>
+
Convert 3D picture to anaglyph image video filter (anaglyph)
                                 Set playlist bookmark 8
+
       --anaglyph-scheme={red-green,red-blue,red-cyan,trioscopic,magenta-cyan}
          Select the key to set this playlist bookmark.
+
                                Color scheme
       --key-set-bookmark9=<integer>
+
           Define the glasses' color scheme
                                 Set playlist bookmark 9
+
 
          Select the key to set this playlist bookmark.
+
Alpha mask video filter (alphamask)
       --key-set-bookmark10=<integer>
+
Use an image's alpha channel as a transparency mask.
                                 Set playlist bookmark 10
+
       --alphamask-mask=<stringTransparency mask
           Select the key to set this playlist bookmark.
+
           Alpha blending transparency mask. Uses a png alpha channel.
       --key-play-bookmark1=<integer>
+
 
                                 Play playlist bookmark 1
+
Image properties filter (adjust)
           Select the key to play this bookmark.
+
       --contrast=<float [0.000000 .. 2.000000]>  
       --key-play-bookmark2=<integer>
+
                                 Image contrast (0-2)
                                 Play playlist bookmark 2
+
           Set the image contrast, between 0 and 2. Defaults to 1.
           Select the key to play this bookmark.
+
       --brightness=<float [0.000000 .. 2.000000]>  
       --key-play-bookmark3=<integer>
+
                                Image brightness (0-2)
                                 Play playlist bookmark 3
+
           Set the image brightness, between 0 and 2. Defaults to 1.
           Select the key to play this bookmark.
+
       --hue=<float [-180.000000 .. 180.000000]>
       --key-play-bookmark4=<integer>
+
                                Image hue (-180..180)
                                 Play playlist bookmark 4
+
           Set the image hue, between -180 and 180. Defaults to 0.
           Select the key to play this bookmark.
+
       --saturation=<float [0.000000 .. 3.000000]>
       --key-play-bookmark5=<integer>
+
                                Image saturation (0-3)
                                 Play playlist bookmark 5
+
          Set the image saturation, between 0 and 3. Defaults to 1.
           Select the key to play this bookmark.
+
      --gamma=<float [0.010000 .. 10.000000]>  
       --key-play-bookmark6=<integer>
+
                                Image gamma (0-10)
                                 Play playlist bookmark 6
+
           Set the image gamma, between 0.01 and 10. Defaults to 1.
           Select the key to play this bookmark.
+
       --brightness-threshold, --no-brightness-threshold
       --key-play-bookmark7=<integer>
+
                                Brightness threshold
                                 Play playlist bookmark 7
+
                                 (default disabled)
           Select the key to play this bookmark.
+
           When this mode is enabled, pixels will be shown as black or white.
       --key-play-bookmark8=<integer>
+
          The threshold value will be the brightness defined below.
                                 Play playlist bookmark 8
+
 
           Select the key to play this bookmark.
+
Video scaling filter (swscale)
       --key-play-bookmark9=<integer>
+
       --swscale-mode={0 (Fast bilinear), 1 (Bilinear), 2 (Bicubic (good quality)), 3 (Experimental), 4 (Nearest neighbour (bad quality)), 5 (Area), 6 (Luma bicubic / chroma bilinear), 7 (Gauss), 8 (SincR), 9 (Lanczos), 10 (Bicubic spline)}
                                 Play playlist bookmark 9
+
                                 Scaling mode
           Select the key to play this bookmark.
+
           Scaling mode to use.
       --key-play-bookmark10=<integer>
+
 
                                 Play playlist bookmark 10
+
Speech synthesis for Windows (sapi)
           Select the key to play this bookmark.
+
       --sapi-voice=<integer>     Voice Index
       --bookmark1=<string>       Playlist bookmark 1
+
          Voice index
           This allows you to define playlist bookmarks.
+
 
       --bookmark2=<string>       Playlist bookmark 2
+
Freetype2 font renderer (freetype)
           This allows you to define playlist bookmarks.
+
       --freetype-font=<string>   Font
       --bookmark3=<string>       Playlist bookmark 3
+
          Font family for the font you want to use
           This allows you to define playlist bookmarks.
+
       --freetype-monofont=<string>  
      --bookmark4=<string>      Playlist bookmark 4
+
                                Monospace Font
          This allows you to define playlist bookmarks.
+
           Font family for the font you want to use
       --bookmark5=<string>      Playlist bookmark 5
+
       --freetype-opacity=<integer [0 .. 255]>  
           This allows you to define playlist bookmarks.
+
                                Text opacity
      --bookmark6=<string>      Playlist bookmark 6
+
           The opacity (inverse of transparency) of the text that will be
           This allows you to define playlist bookmarks.
+
          rendered on the video. 0 = transparent, 255 = totally opaque.
       --bookmark7=<string>       Playlist bookmark 7
+
       --freetype-color={0 (Black), 8421504 (Gray), 12632256 (Silver), 16777215 (White), 8388608 (Maroon), 16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 8421376 (Olive), 32768 (Green), 32896 (Teal), 65280 (Lime), 8388736 (Purple), 128 (Navy), 255 (Blue), 65535 (Aqua)}
           This allows you to define playlist bookmarks.
+
                                 Text default color
       --bookmark8=<string>       Playlist bookmark 8
+
          The color of the text that will be rendered on the video. This must
           This allows you to define playlist bookmarks.
+
          be an hexadecimal (like HTML colors). The first two chars are for
       --bookmark9=<string>       Playlist bookmark 9
+
          red, then green, then blue. #000000 = black, #FF0000 = red, #00FF00 =
           This allows you to define playlist bookmarks.
+
           green, #FFFF00 = yellow (red + green), #FFFFFF = white
       --bookmark10=<string>     Playlist bookmark 10
+
       --freetype-bold, --no-freetype-bold
           This allows you to define playlist bookmarks.
+
                                 Force bold
  -h, --help, --no-help          print help for VLC (can be combined with
+
                                (default disabled)
                                 --advanced and --help-verbose) (default
+
       --freetype-background-opacity=<integer [0 .. 255]>  
                                disabled)
+
                                 Background opacity
          (default disabled)
+
       --freetype-background-color={0 (Black), 8421504 (Gray), 12632256 (Silver), 16777215 (White), 8388608 (Maroon), 16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 8421376 (Olive), 32768 (Green), 32896 (Teal), 65280 (Lime), 8388736 (Purple), 128 (Navy), 255 (Blue), 65535 (Aqua)}
  -H, --full-help, --no-full-help
+
                                Background color
                                 Exhaustive help for VLC and its modules
+
       --freetype-outline-opacity=<integer [0 .. 255]>  
                                (default enabled)
+
                                 Outline opacity
          (default enabled)
+
       --freetype-outline-color={0 (Black), 8421504 (Gray), 12632256 (Silver), 16777215 (White), 8388608 (Maroon), 16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 8421376 (Olive), 32768 (Green), 32896 (Teal), 65280 (Lime), 8388736 (Purple), 128 (Navy), 255 (Blue), 65535 (Aqua)}
       --longhelp, --no-longhelp  print help for VLC and all its modules (can
+
                                Outline color
                                be combined with --advanced and
+
       --freetype-outline-thickness={0 (None), 2 (Thin), 4 (Normal), 6 (Thick)}
                                 --help-verbose) (default disabled)
+
                                 Outline thickness
          (default disabled)
+
       --freetype-shadow-opacity=<integer [0 .. 255]>  
       --help-verbose, --no-help-verbose
+
                                 Shadow opacity
                                 ask for extra verbosity when displaying help
+
       --freetype-shadow-color={0 (Black), 8421504 (Gray), 12632256 (Silver), 16777215 (White), 8388608 (Maroon), 16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 8421376 (Olive), 32768 (Green), 32896 (Teal), 65280 (Lime), 8388736 (Purple), 128 (Navy), 255 (Blue), 65535 (Aqua)}
                                 (default enabled)
+
                                Shadow color
          (default enabled)
+
      --freetype-shadow-angle=<float [-360.000000 .. 360.000000]>  
  -l, --list, --no-list          print a list of available modules (default
+
                                 Shadow angle
                                 disabled)
+
       --freetype-shadow-distance=<float [0.000000 .. 1.000000]>  
          (default disabled)
+
                                 Shadow distance
  -l, --list-verbose, --no-list-verbose
+
       --freetype-yuvp, --no-freetype-yuvp
                                 print a list of available modules with extra
+
                                Use YUVP renderer
                                detail (default disabled)
+
                                 (default disabled)
          (default disabled)
+
           This renders the font using "paletized YUV". This option is only
  -p, --module=<string>         print help on a specific module (can be
+
          needed if you want to encode into DVB subtitles
                                combined with --advanced and --help-verbose)
+
       --freetype-text-direction={0 (Left to right), 1 (Right to left), 2 (Auto)}
                --ignore-config, --no-ignore-config
+
                                 Text direction
                                 no configuration option will be loaded nor
+
           Paragraph base direction for the Unicode bi-directional algorithm.
                                 saved to config file (default disabled)
+
 
          (default disabled)
+
Transcode stream output (stream_out_transcode)
      --save-config, --no-save-config
+
  Video:
                                save the current command line options in the
+
       --sout-transcode-venc={any,jpeg,png,x264,x265,opus,g711,araw,theora,vorbis,twolame,schroedinger,substx3g,webvtt,speex,flac,t140,avcodec,lpcm,dvbsub,vpx,rtpvideo,dmo,edummy,stats,qsv,none}
                                config (default disabled)
+
                                 Video encoder
          (default disabled)
+
           This is the video encoder module that will be used (and its
      --reset-config, --no-reset-config
+
          associated options).
                                reset the current config to the default
+
       --sout-transcode-vcodec=<string>  
                                values (default disabled)
+
                                 Destination video codec
          (default disabled)
+
           This is the video codec that will be used.
      --reset-plugins-cache, --no-reset-plugins-cache
+
       --sout-transcode-vb=<integer>  
                                resets the current plugins cache (default
+
                                 Video bitrate
                                disabled)
+
           Target bitrate of the transcoded video stream.
          (default disabled)
+
       --sout-transcode-scale=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
      --version, --no-version    print version information (default disabled)
+
                                 Video scaling
          (default disabled)
+
           Scale factor to apply to the video while transcoding (eg: 0.25)
      --config=<string>          use alternate config file
+
       --sout-transcode-fps=<string>  
                --version, --no-version    print version information (default disabled)
+
                                 Video frame-rate
          (default disabled)
+
           Target output frame rate for the video stream.
 +
       --sout-transcode-deinterlace, --no-sout-transcode-deinterlace
 +
                                Deinterlace video
 +
                                 (default disabled)
 +
           Deinterlace the video before encoding.
 +
       --sout-transcode-deinterlace-module={deinterlace,ffmpeg-deinterlace}
 +
                                 Deinterlace module
 +
           Specify the deinterlace module to use.
 +
       --sout-transcode-width=<integer>  
 +
                                 Video width
 +
           Output video width.
 +
       --sout-transcode-height=<integer>  
 +
                                 Video height
 +
           Output video height.
 +
       --sout-transcode-maxwidth=<integer>  
 +
                                Maximum video width
 +
           Maximum output video width.
 +
       --sout-transcode-maxheight=<integer>  
 +
                                Maximum video height
 +
           Maximum output video height.
 +
       --sout-transcode-vfilter=<string>  
 +
                                Video filter
 +
           Video filters will be applied to the video streams (after overlays
 +
          are applied). You can enter a colon-separated list of filters.
 +
  Audio:
 +
       --sout-transcode-aenc={any,jpeg,png,x264,x265,opus,g711,araw,theora,vorbis,twolame,schroedinger,substx3g,webvtt,speex,flac,t140,avcodec,lpcm,dvbsub,vpx,rtpvideo,dmo,edummy,stats,qsv,none}
 +
                                Audio encoder
 +
           This is the audio encoder module that will be used (and its
 +
           associated options).
 +
       --sout-transcode-acodec=<string>  
 +
                                Destination audio codec
 +
           This is the audio codec that will be used.
 +
       --sout-transcode-ab=<integer>  
 +
                                Audio bitrate
 +
           Target bitrate of the transcoded audio stream.
 +
       --sout-transcode-alang=<string>  
 +
                                Audio language
 +
           This is the language of the audio stream.
 +
       --sout-transcode-channels=<integer [0 .. 9]>  
 +
                                Audio channels
 +
           Number of audio channels in the transcoded streams.
 +
      --sout-transcode-samplerate=<integer [0 .. 48000]>
 +
                                 Audio sample rate
 +
          Sample rate of the transcoded audio stream (11250, 22500, 44100 or
 +
          48000).
 +
      --sout-transcode-afilter=<string>
 +
                                 Audio filter
 +
          Audio filters will be applied to the audio streams (after conversion
 +
          filters are applied). You can enter a colon-separated list of
 +
          filters.
 +
  Overlays/Subtitles:
 +
       --sout-transcode-senc={any,jpeg,png,x264,x265,opus,g711,araw,theora,vorbis,twolame,schroedinger,substx3g,webvtt,speex,flac,t140,avcodec,lpcm,dvbsub,vpx,rtpvideo,dmo,edummy,stats,qsv,none}
 +
                                 Subtitle encoder
 +
          This is the subtitle encoder module that will be used (and its
 +
          associated options).
 +
      --sout-transcode-scodec=<string>
 +
                                Destination subtitle codec
 +
          This is the subtitle codec that will be used.
 +
       --sout-transcode-soverlay, --no-sout-transcode-soverlay
 +
                                 Destination subtitle codec
 +
                                 (default disabled)
 +
          This is the subtitle codec that will be used.
 +
      --sout-transcode-sfilter=<string>
 +
                                 Overlays
 +
          This allows you to add overlays (also known as "subpictures") on the
 +
          transcoded video stream. The subpictures produced by the filters will
 +
          be overlayed directly onto the video. You can specify a
 +
          colon-separated list of subpicture modules.
 +
  Miscellaneous:
 +
      --sout-transcode-threads=<integer>
 +
                                 Number of threads
 +
          Number of threads used for the transcoding.
 +
      --sout-transcode-pool-size=<integer [1 .. 1000]>  
 +
                                Picture pool size
 +
          Defines how many pictures we allow to be in pool between
 +
          decoder/encoder threads when threads > 0
 +
      --sout-transcode-high-priority, --no-sout-transcode-high-priority
 +
                                 High priority
 +
                                 (default disabled)
 +
          Runs the optional encoder thread at the OUTPUT priority instead of
 +
          VIDEO.
  
  ATSC A/52 (AC-3) audio decoder
+
  Writes statistic info about stream (stats)
       --a52-dynrng, --no-a52-dynrng
+
       --sout-stats-output=<string>
                                 A/52 dynamic range compression (default
+
                                 Output file
                                enabled)
+
           Writes stats to file instead of stdout
          Dynamic range compression makes the loud sounds softer, and the soft
+
       --sout-stats-prefix=<string>
          sounds louder, so you can more easily listen to the stream in a noisy
+
                                 Prefix to show on output line
          environment without disturbing anyone. If you disable the dynamic
+
           Prefix to show on output line
           range compression the playback will be more adapted to a movie
 
          theater or a listening room. (default enabled)
 
       --a52-upmix, --no-a52-upmix
 
                                 Enable internal upmixing (default disabled)
 
           Enable the internal upmixing algorithm (not recommended). (default
 
          disabled)
 
  
  Standard filesystem directory input
+
  Standard stream output (stream_out_standard)
       --recursive={none,collapse,expand}
+
       --sout-standard-access=<string>
                                 Subdirectory behavior
+
                                 Output access method
           Select whether subdirectories must be expanded.
+
           Output method to use for the stream.
none: subdirectories
+
      --sout-standard-mux=<string>
           do not appear in the playlist.
+
                                Output muxer
collapse: subdirectories appear but
+
           Muxer to use for the stream.
           are expanded on first play.
+
      --sout-standard-dst=<string>
expand: all subdirectories are expanded.
+
                                Output destination
 
+
           Destination (URL) to use for the stream. Overrides path and bind
       --ignore-filetypes=<string>
+
          parameters
                                 Ignored extensions
+
      --sout-standard-bind=<string>
           Files with these extensions will not be added to playlist when
+
                                Address to bind to (helper setting for dst)
           opening a directory.
+
          address:port to bind vlc to listening incoming streams. Helper
This is useful if you add directories that
+
          setting for dst, dst=bind+'/'+path. dst-parameter overrides this.
           contain playlist files for instance. Use a comma-separated list of
+
       --sout-standard-path=<string>  
           extensions.
+
                                 Filename for stream (helper setting for dst)
 +
          Filename for stream. Helper setting for dst, dst=bind+'/'+path.
 +
          dst-parameter overrides this.
 +
      --sout-standard-sap, --no-sout-standard-sap
 +
                                SAP announcing
 +
                                (default disabled)
 +
           Announce this session with SAP.
 +
      --sout-standard-name=<string>
 +
                                Session name
 +
          This is the name of the session that will be announced in the SDP
 +
          (Session Descriptor).
 +
      --sout-standard-description=<string>
 +
                                Session description
 +
          This allows you to give a short description with details about the
 +
           stream, that will be announced in the SDP (Session Descriptor).
 +
      --sout-standard-url=<string>
 +
                                Session URL
 +
          This allows you to give a URL with more details about the stream
 +
          (often the website of the streaming organization), that will be
 +
           announced in the SDP (Session Descriptor).
 +
      --sout-standard-email=<string>
 +
                                Session email
 +
          This allows you to give a contact mail address for the stream, that
 +
           will be announced in the SDP (Session Descriptor).
  
  Fake input
+
  Stream output to memory buffer (smem)
       --fake-caching=<integer>   Caching value in ms
+
       --sout-smem-video-prerender-callback=<string>  
           Caching value for fake streams. This value should be set in
+
                                Video prerender callback
           milliseconds.
+
           Address of the video prerender callback function. This function will
       --fake-fps=<float>         Framerate
+
          set the buffer where render will be done.
           Number of frames per second (eg. 24, 25, 29.97, 30).
+
      --sout-smem-audio-prerender-callback=<string>
       --fake-id=<integer>       ID
+
                                Audio prerender callback
           Set the ID of the fake elementary stream for use in #duplicate{}
+
          Address of the audio prerender callback function. This function will
           constructs (default 0).
+
           set the buffer where render will be done.
       --fake-duration=<integer> Duration in ms
+
       --sout-smem-video-postrender-callback=<string>  
           Duration of the fake streaming before faking an end-of-file (default
+
                                Video postrender callback
           is 0, meaning that the stream is unlimited).
+
           Address of the video postrender callback function. This function will
 +
          be called when the render is into the buffer.
 +
       --sout-smem-audio-postrender-callback=<string>  
 +
                                Audio postrender callback
 +
          Address of the audio postrender callback function. This function will
 +
           be called when the render is into the buffer.
 +
      --sout-smem-video-data=<string>
 +
                                Video Callback data
 +
           Data for the video callback function.
 +
       --sout-smem-audio-data=<string>  
 +
                                Audio callback data
 +
           Data for the video callback function.
 +
      --sout-smem-time-sync, --no-sout-smem-time-sync
 +
                                Time Synchronized output
 +
                                (default enabled)
 +
           Time Synchronisation option for output. If true, stream will render
 +
          as usual, else it will be rendered as fast as possible.
  
  File input
+
  Change the id of an elementary stream (setid)
       --file-caching=<integer>   Caching value in ms
+
  Set ES id:
           Caching value for files. This value should be set in milliseconds.
+
       --sout-setid-id=<integer> Elementary Stream ID
 +
           Specify an identifier integer for this elementary stream
 +
      --sout-setid-new-id=<integer>
 +
                                New ES ID
 +
          Specify an new identifier integer for this elementary stream
 +
  Set ES Lang:
 +
      --sout-setlang-id=<integer>
 +
                                Elementary Stream ID
 +
          Specify an identifier integer for this elementary stream
 +
      --sout-setlang-lang=<string>
 +
                                Language
 +
          Specify an ISO-639 code (three characters) for this elementary stream
  
  Bandwidth limiter
+
  RTP stream output (stream_out_rtp)
       --access-bandwidth=<integer>
+
       --sout-rtp-dst=<string>   Destination
                                Bandwidth limit (bytes/s)
+
           This is the output URL that will be used.
           The bandwidth module will drop any data in excess of that many bytes
+
       --sout-rtp-sdp=<string>    SDP
          per seconds.
+
           This allows you to specify how the SDP (Session Descriptor) for this
 
+
           RTP session will be made available. You must use a url:
Dump
+
          http://location to access the SDP via HTTP, rtsp://location for RTSP
       --dump-force, --no-dump-force
+
           access, and sap:// for the SDP to be announced via SAP.
                                Force use of dump module (default disabled)
+
       --sout-rtp-mux=<string>   Muxer
          Activate the dump module even for media with fast seeking. (default
+
           This allows you to specify the muxer used for the streaming output.
          disabled)
+
           Default is to use no muxer (standard RTP stream).
      --dump-margin=<integer>    Maximum size of temporary file (Mb)
+
       --sout-rtp-sap, --no-sout-rtp-sap
           The dump module will abort dumping of the media if more than this
+
                                SAP announcing
           much megabyte were performed.
+
                                 (default disabled)
 
+
           Announce this session with SAP.
Record
+
       --sout-rtp-name=<string>   Session name
      --record-path=<string>    Record directory
+
           This is the name of the session that will be announced in the SDP
           Directory where the record will be stored.
+
           (Session Descriptor).
 
+
       --sout-rtp-cat=<string>   Session category
Timeshift
+
           This allows you to specify a category for the session, that will be
       --timeshift-granularity=<integer>
+
          announced if you choose to use SAP.
                                Timeshift granularity
+
       --sout-rtp-description=<string>  
           This is the size of the temporary files that will be used to store
+
                                Session description
          the timeshifted streams.
+
           This allows you to give a short description with details about the
      --timeshift-dir=<string>  Timeshift directory
+
          stream, that will be announced in the SDP (Session Descriptor).
           Directory used to store the timeshift temporary files.
+
       --sout-rtp-url=<string>   Session URL
       --timeshift-force, --no-timeshift-force
+
           This allows you to give a URL with more details about the stream
                                 Force use of the timeshift module (default
+
          (often the website of the streaming organization), that will be
                                disabled)
+
          announced in the SDP (Session Descriptor).
           Force use of the timeshift module even if the access declares that it
+
       --sout-rtp-email=<string> Session email
          can control pace or pause. (default disabled)
+
           This allows you to give a contact mail address for the stream, that
 
+
           will be announced in the SDP (Session Descriptor).
FTP input
+
       --sout-rtp-proto={dccp,sctp,tcp,udp,udplite}
       --ftp-caching=<integer>   Caching value in ms
+
                                Transport protocol
           Caching value for FTP streams. This value should be set in
+
           This selects which transport protocol to use for RTP.
           milliseconds.
+
       --sout-rtp-port=<integer> Port
       --ftp-user=<string>       FTP user name
+
           This allows you to specify the base port for the RTP streaming.
           User name that will be used for the connection.
+
       --sout-rtp-port-audio=<integer>  
       --ftp-pwd=<string>         FTP password
+
                                Audio port
           Password that will be used for the connection.
+
           This allows you to specify the default audio port for the RTP
       --ftp-account=<string>     FTP account
+
          streaming.
           Account that will be used for the connection.
+
       --sout-rtp-port-video=<integer>
 
+
                                 Video port
HTTP input
+
           This allows you to specify the default video port for the RTP
       --http-proxy=<string>     HTTP proxy
+
           streaming.
           HTTP proxy to be used It must be of the form http://[user@]myproxy.myd
+
       --sout-rtp-ttl=<integer>  Hop limit (TTL)
           omain:myport/ ; if empty, the http_proxy environment variable will be
+
           This is the hop limit (also known as "Time-To-Live" or TTL) of the
          tried.
+
           multicast packets sent by the stream output (-1 = use operating
       --http-proxy-pwd=<string>  HTTP proxy password
+
           system built-in default).
           If your HTTP proxy requires a password, set it here.
+
       --sout-rtp-rtcp-mux, --no-sout-rtp-rtcp-mux
       --http-caching=<integer>   Caching value in ms
+
                                RTP/RTCP multiplexing
           Caching value for HTTP streams. This value should be set in
+
                                 (default disabled)
          milliseconds.
+
           This sends and receives RTCP packet multiplexed over the same port as
       --http-user-agent=<string> HTTP user agent
+
          RTP packets.
           User agent that will be used for the connection.
+
       --sout-rtp-caching=<integer>  
       --http-reconnect, --no-http-reconnect
+
                                Caching value (ms)
                                 Auto re-connect (default disabled)
+
           Default caching value for outbound RTP streams. This value should be
           Automatically try to reconnect to the stream in case of a sudden
+
          set in milliseconds.
           disconnect. (default disabled)
+
       --sout-rtp-key=<string>    SRTP key (hexadecimal)
       --http-continuous, --no-http-continuous
+
           RTP packets will be integrity-protected and ciphered with this Secure
                                Continuous stream (default disabled)
+
          RTP master shared secret key. This must be a 32-character-long
           Read a file that is being constantly updated (for example, a JPG file
+
          hexadecimal string.
           on a server). You should not globally enable this option as it will
+
      --sout-rtp-salt=<string>  SRTP salt (hexadecimal)
           break all other types of HTTP streams. (default disabled)
+
           Secure RTP requires a (non-secret) master salt value. This must be a
       --http-forward-cookies, --no-http-forward-cookies
+
          28-character-long hexadecimal string.
                                 Forward Cookies (default disabled)
+
       --sout-rtp-mp4a-latm, --no-sout-rtp-mp4a-latm
           Forward Cookies Across http redirections  (default disabled)
+
                                MP4A LATM
 
+
                                (default disabled)
Microsoft Media Server (MMS) input
+
           This allows you to stream MPEG4 LATM audio streams (see RFC3016).
       --mms-caching=<integer>   Caching value in ms
+
      --rtsp-timeout=<integer>  RTSP session timeout (s)
           Caching value for MMS streams. This value should be set in
+
          RTSP sessions will be closed after not receiving any RTSP request for
          milliseconds.
+
           this long. Setting it to a negative value or zero disables timeouts.
       --mms-timeout=<integer>    TCP/UDP timeout (ms)
+
          The default is 60 (one minute).
           Amount of time (in ms) to wait before aborting network reception of
+
       --sout-rtsp-user=<string> Username
           data. Note that there will be 10 retries before completely giving up.
+
           Username that will be requested to access the stream.
       --mms-all, --no-mms-all    Force selection of all streams (default
+
       --sout-rtsp-pwd=<string>   Password
                                disabled)
+
           Password that will be requested to access the stream.
           MMS streams can contain several elementary streams, with different
 
           bitrates. You can choose to select all of them. (default disabled)
 
       --mms-maxbitrate=<integer> Maximum bitrate
 
           Select the stream with the maximum bitrate under that limit.
 
       --mmsh-proxy=<string>     HTTP proxy
 
           HTTP proxy to be used It must be of the form http://[user[:pass]@]mypr
 
          oxy.mydomain:myport/ ; if empty, the http_proxy environment variable
 
          will be tried.
 
  
  File stream output
+
  Record stream output (record)
       --sout-file-append, --no-sout-file-append
+
       --sout-record-dst-prefix=<string>
                                 Append to file (default disabled)
+
                                 Destination prefix
           Append to file if it exists instead of replacing it. (default
+
           Prefix of the destination file automatically generated
          disabled)
 
  
  HTTP stream output
+
  Mosaic bridge stream output (mosaic_bridge)
       --sout-http-user=<string> Username
+
       --sout-mosaic-bridge-id=<string>  
           User name that will be requested to access the stream.
+
                                ID
       --sout-http-pwd=<string>   Password
+
           Specify an identifier string for this subpicture
           Password that will be requested to access the stream.
+
       --sout-mosaic-bridge-width=<integer>  
       --sout-http-mime=<string> Mime
+
                                Video width
           MIME returned by the server (autodetected if not specified).
+
           Output video width.
       --sout-http-cert=<string> Certificate file
+
       --sout-mosaic-bridge-height=<integer>  
           Path to the x509 PEM certificate file that will be used for HTTPS.
+
                                Video height
       --sout-http-key=<string>   Private key file
+
           Output video height.
           Path to the x509 PEM private key file that will be used for HTTPS.
+
       --sout-mosaic-bridge-sar=<string>  
          Leave empty if you don't have one.
+
                                Sample aspect ratio
       --sout-http-ca=<string>   Root CA file
+
           Sample aspect ratio of the destination (1:1, 3:4, 2:3).
          Path to the x509 PEM trusted root CA certificates (certificate
+
       --sout-mosaic-bridge-chroma=<string>  
           authority) file that will be used for HTTPS. Leave empty if you don't
+
                                Image chroma
          have one.
+
           Force the use of a specific chroma. Use YUVA if you're planning to
       --sout-http-crl=<string>   CRL file
+
          use the Alphamask or Bluescreen video filter.
           Path to the x509 PEM Certificates Revocation List file that will be
+
       --sout-mosaic-bridge-vfilter=<string>  
          used for SSL. Leave empty if you don't have one.
+
                                Video filter
       --sout-http-bonjour, --no-sout-http-bonjour
+
           Video filters will be applied to the video stream.
                                 Advertise with Bonjour (default disabled)
+
       --sout-mosaic-bridge-alpha=<integer [0 .. 255]>  
           Advertise the stream with the Bonjour protocol. (default disabled)
+
                                Transparency
 +
           Transparency of the mosaic picture.
 +
       --sout-mosaic-bridge-x=<integer>
 +
                                X offset
 +
          X coordinate of the upper left corner in the mosaic if non negative.
 +
      --sout-mosaic-bridge-y=<integer>
 +
                                 Y offset
 +
           Y coordinate of the upper left corner in the mosaic if non negative.
  
  IceCAST output
+
  Elementary stream output (es)
       --sout-shout-name=<string> Stream name
+
  Generic:
           Name to give to this stream/channel on the shoutcast/icecast server.
+
       --sout-es-access=<string> Output access method
       --sout-shout-description=<string>
+
           This is the default output access method that will be used.
                                Stream description
+
       --sout-es-mux=<string>     Output muxer
           Description of the stream content or information about your channel.
+
           This is the default muxer method that will be used.
      --sout-shout-mp3, --no-sout-shout-mp3
+
       --sout-es-dst=<string>     Output URL
                                Stream MP3 (default disabled)
+
           This is the default output URI.
          You normally have to feed the shoutcast module with Ogg streams. It
+
  Audio:
          is also possible to stream MP3 instead, so you can forward MP3
+
       --sout-es-access-audio=<string>  
          streams to the shoutcast/icecast server. (default disabled)
+
                                Audio output access method
       --sout-shout-genre=<string>
+
           This is the output access method that will be used for audio.
                                Genre description
+
       --sout-es-mux-audio=<string>  
           Genre of the content.  
+
                                 Audio output muxer
       --sout-shout-url=<string> URL description
+
           This is the muxer that will be used for audio.
           URL with information about the stream or your channel.  
+
       --sout-es-dst-audio=<string>  
       --sout-shout-bitrate=<string>
+
                                 Audio output URL
                                 Bitrate
+
           This is the output URI that will be used for audio.
           Bitrate information of the transcoded stream.  
+
  Video:
       --sout-shout-samplerate=<string>
+
       --sout-es-access-video=<string>  
                                 Samplerate
+
                                 Video output access method
           Samplerate information of the transcoded stream.  
+
           This is the output access method that will be used for video.
       --sout-shout-channels=<string>
+
       --sout-es-mux-video=<string>  
                                 Number of channels
+
                                 Video output muxer
           Number of channels information of the transcoded stream.  
+
           This is the muxer that will be used for video.
       --sout-shout-quality=<string>
+
       --sout-es-dst-video=<string>
                                 Ogg Vorbis Quality
+
                                 Video output URL
           Ogg Vorbis Quality information of the transcoded stream.  
+
           This is the output URI that will be used for video.
       --sout-shout-public, --no-sout-shout-public
 
                                 Stream public (default disabled)
 
           Make the server publicly available on the 'Yellow Pages' (directory
 
          listing of streams) on the icecast/shoutcast website. Requires the
 
          bitrate information specified for shoutcast. Requires Ogg streaming
 
          for icecast. (default disabled)
 
  
  UDP stream output
+
  Display stream output (display)
       --sout-udp-caching=<integer>
+
      --sout-display-audio, --no-sout-display-audio
                                 Caching value (ms)
+
                                Enable audio
           Default caching value for outbound UDP streams. This value should be
+
                                (default enabled)
           set in milliseconds.
+
          Enable/disable audio rendering.
       --sout-udp-group=<integer> Group packets
+
      --sout-display-video, --no-sout-display-video
          Packets can be sent one by one at the right time or by groups. You
+
                                Enable video
           can choose the number of packets that will be sent at a time. It
+
                                (default enabled)
           helps reducing the scheduling load on heavily-loaded systems.
+
          Enable/disable video rendering.
 +
       --sout-display-delay=<integer>  
 +
                                 Delay (ms)
 +
           Introduces a delay in the display of the stream.
 +
 
 +
Delay a stream (delay)
 +
      --sout-delay-id=<integer>  Elementary Stream ID
 +
           Specify an identifier integer for this elementary stream
 +
       --sout-delay-delay=<integer>  
 +
                                Delay of the ES (ms)
 +
           Specify a delay (in ms) for this elementary stream. Positive means
 +
           delay and negative means advance.
  
  Real RTSP
+
  Chromecast stream output (stream_out_chromecast)
       --realrtsp-caching=<integer>
+
      --sout-chromecast-ip=<string>
                                 Caching value (ms)
+
                               
           Caching value for RTSP streams. This value should be set in
+
      --sout-chromecast-port=<integer>
           milliseconds.
+
                               
 +
      --sout-chromecast-video, --no-sout-chromecast-video
 +
                               
 +
                                (default enabled)
 +
      --sout-chromecast-http-port=<integer>
 +
                                HTTP port
 +
          This sets the HTTP port of the local server used to stream the media
 +
          to the Chromecast.
 +
       --sout-chromecast-show-perf-warning=<integer>  
 +
                                 Performance warning
 +
          Display a performance warning when transcoding
 +
      --sout-chromecast-audio-passthrough, --no-sout-chromecast-audio-passthrough
 +
                                Enable Audio passthrough
 +
                                (default disabled)
 +
           Disable if your receiver does not support Dolby®.
 +
      --sout-chromecast-conversion-quality={0 (High (high quality and high bandwidth)), 1 (Medium (medium quality and medium bandwidth)), 2 (Low (low quality and low bandwidth)), 3 (Low CPU (low quality but high bandwidth))}
 +
                                Conversion quality
 +
           Change this option to increase conversion speed or quality.
  
  RTMP input
+
  Chromaprint stream output (stream_out_chromaprint)
       --rtmp-caching=<integer>   Caching value in ms
+
       --duration=<integer>       Duration of the fingerprinting
          Caching value for RTMP streams. This value should be set in
+
           Default: 90sec
           milliseconds.
 
  
  SMB input
+
  Bridge stream output (bridge)
       --smb-caching=<integer>   Caching value in ms
+
  Bridge out:
           Caching value for SMB streams. This value should be set in
+
       --sout-bridge-out-id=<integer>  
           milliseconds.
+
                                ID
       --smb-user=<string>       SMB user name
+
           Integer identifier for this elementary stream. This will be used to
           User name that will be used for the connection.
+
           "find" this stream later.
       --smb-pwd=<string>         SMB password
+
       --sout-bridge-out-in-name=<string>  
           Password that will be used for the connection.
+
                                Destination bridge-in name
       --smb-domain=<string>     SMB domain
+
           Name of the destination bridge-in. If you do not need more than one
           Domain/Workgroup that will be used for the connection.
+
          bridge-in at a time, you can discard this option.
 +
  Bridge in:
 +
      --sout-bridge-in-delay=<integer>
 +
                                Delay
 +
          Pictures coming from the picture video outputs will be delayed
 +
          according to this value (in milliseconds, should be >= 100 ms). For
 +
          high values, you will need to raise caching values.
 +
      --sout-bridge-in-id-offset=<integer>
 +
                                ID Offset
 +
          Offset to add to the stream IDs specified in bridge_out to obtain the
 +
          stream IDs bridge_in will register.
 +
       --sout-bridge-in-name=<string>  
 +
                                Name of current instance
 +
          Name of this bridge-in instance. If you do not need more than one
 +
           bridge-in at a time, you can discard this option.
 +
      --sout-bridge-in-placeholder, --no-sout-bridge-in-placeholder
 +
                                Fallback to placeholder stream when out of
 +
                                data
 +
                                (default disabled)
 +
          If set to true, the bridge will discard all input elementary streams
 +
          except if it doesn't receive data from another bridge-in. This can be
 +
          used to configure a place holder stream when the real source breaks.
 +
          Source and placeholder streams should have the same format.
 +
       --sout-bridge-in-placeholder-delay=<integer>  
 +
                                Placeholder delay
 +
          Delay (in ms) before the placeholder kicks in.
 +
      --sout-bridge-in-placeholder-switch-on-iframe, --no-sout-bridge-in-placeholder-switch-on-iframe
 +
                                Wait for I frame before toggling placeholder
 +
                                (default enabled)
 +
          If enabled, switching between the placeholder and the normal stream
 +
           will only occur on I frames. This will remove artifacts on stream
 +
          switching at the expense of a slightly longer delay, depending on the
 +
          frequence of I frames in the streams.
  
  TCP input
+
  Stream prefetch filter (prefetch)
       --tcp-caching=<integer>   Caching value in ms
+
       --prefetch-buffer-size=<integer [4 .. 1048576]>  
           Caching value for TCP streams. This value should be set in
+
                                Buffer size
           milliseconds.
+
           Prefetch buffer size (KiB)
 +
      --prefetch-read-size=<integer [1 .. 536870912]>
 +
                                Read size
 +
           Prefetch background read size (bytes)
 +
      --prefetch-seek-threshold=<integer [0 .. 1152921504606846976]>
 +
                                Seek threshold
 +
          Prefetch forward seek threshold (bytes)
  
  UDP input
+
  Subtitle delay (subsdelay)
       --udp-caching=<integer>   Caching value in ms
+
Change subtitle delay
           Caching value for UDP streams. This value should be set in
+
      --subsdelay-mode={0 (Absolute delay), 1 (Relative to source delay), 2 (Relative to source content)}
           milliseconds.
+
                                Delay calculation mode
 +
          Absolute delay - add absolute delay to each subtitle. Relative to
 +
          source delay - multiply subtitle delay. Relative to source content -
 +
          determine subtitle delay from its content (text).
 +
       --subsdelay-factor=<float [0.000000 .. 20.000000]>
 +
                                Calculation factor
 +
          Calculation factor. In Absolute delay mode the factor represents
 +
          seconds.
 +
      --subsdelay-overlap=<integer [1 .. 4]>  
 +
                                Maximum overlapping subtitles
 +
          Maximum number of subtitles allowed at the same time.
 +
      --subsdelay-min-alpha=<integer [0 .. 255]>
 +
                                Minimum alpha value
 +
           Alpha value of the earliest subtitle, where 0 is fully transparent
 +
          and 255 is fully opaque.
 +
  Overlap fix:
 +
      --subsdelay-min-stops=<integer>
 +
                                Interval between two disappearances
 +
          Minimum time (in milliseconds) that subtitle should stay after its
 +
          predecessor has disappeared (subtitle delay will be extended to meet
 +
          this requirement).
 +
      --subsdelay-min-start-stop=<integer>
 +
                                Interval between appearance and disappearance
 +
          Minimum time (in milliseconds) that subtitle should stay after newer
 +
          subtitle has appeared (earlier subtitle delay will be shortened to
 +
           avoid the overlap).
 +
      --subsdelay-min-stop-start=<integer>
 +
                                Interval between disappearance and appearance
 +
          Minimum time (in milliseconds) between subtitle disappearance and
 +
          newer subtitle appearance (earlier subtitle delay will be extended to
 +
          fill the gap).
  
  Image properties filter
+
  RSS and Atom feed display (rss)
       --contrast=<float [0.000000 .. 2.000000]>
+
Display a RSS or ATOM Feed on your video
                                Image contrast (0-2)
+
       --rss-urls=<string>       Feed URLs
          Set the image contrast, between 0 and 2. Defaults to 1.
+
          RSS/Atom feed '|' (pipe) separated URLs.
       --brightness=<float [0.000000 .. 2.000000]>
+
  Position:
                                Image brightness (0-2)
+
       --rss-x=<integer>         X offset
           Set the image brightness, between 0 and 2. Defaults to 1.
+
           X offset, from the left screen edge.
       --hue=<integer [0 .. 360]> Image hue (0-360)
+
       --rss-y=<integer>         Y offset
           Set the image hue, between 0 and 360. Defaults to 0.
+
           Y offset, down from the top.
       --saturation=<float [0.000000 .. 3.000000]>
+
       --rss-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}
                                Image saturation (0-3)
+
                                Text position
           Set the image saturation, between 0 and 3. Defaults to 1.
+
           You can enforce the text position on the video (0=center, 1=left,
       --gamma=<float [0.010000 .. 10.000000]>
+
          2=right, 4=top, 8=bottom; you can also use combinations of these
                                 Image gamma (0-10)
+
          values, eg 6 = top-right).
           Set the image gamma, between 0.01 and 10. Defaults to 1.
+
  Font:
       --brightness-threshold, --no-brightness-threshold
+
       --rss-opacity=<integer [0 .. 255]>  
                                 Brightness threshold (default disabled)
+
                                 Opacity
           When this mode is enabled, pixels will be shown as black or white.
+
          Opacity (inverse of transparency) of overlay text. 0 = transparent,
           The threshold value will be the brighness defined below. (default
+
           255 = totally opaque.
          disabled)
+
       --rss-color={-268435456 (Default), 0 (Black), 8421504 (Gray), 12632256 (Silver), 16777215 (White), 8388608 (Maroon), 16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 8421376 (Olive), 32768 (Green), 32896 (Teal), 65280 (Lime), 8388736 (Purple), 128 (Navy), 255 (Blue), 65535 (Aqua)}
 
+
                                 Color
Alpha mask video filter
+
          Color of the text that will be rendered on the video. This must be an
Use an image's alpha channel as a transparency mask.
+
          hexadecimal (like HTML colors). The first two chars are for red, then
       --alphamask-mask=<string> Transparency mask
+
           green, then blue. #000000 = black, #FF0000 = red, #00FF00 = green,
           Alpha blending transparency mask. Uses a png alpha channel.
+
          #FFFF00 = yellow (red + green), #FFFFFF = white
 
+
      --rss-size=<integer [0 .. 4096]>
DirectX audio output
+
                                Font size, pixels
       --directx-audio-device=<integer>
+
           Font size, in pixels. Default is 0 (use default font size).
                                Output device
+
  Misc:
           DirectX device number: 0 default device, 1..N device by number(Note
+
      --rss-speed=<integer>      Speed of feeds
           that the default device appears as 0 AND another number).
+
          Speed of the RSS/Atom feeds in microseconds (bigger is slower).
       --directx-audio-float32, --no-directx-audio-float32
+
       --rss-length=<integer>     Max length
                                 Use float32 output (default disabled)
+
           Maximum number of characters displayed on the screen.
           The option allows you to enable or disable the high-quality float32
+
       --rss-ttl=<integer>       Refresh time
           audio output mode (which is not well supported by some soundcards).
+
           Number of seconds between each forced refresh of the feeds. 0 means
           (default disabled)
+
           that the feeds are never updated.
 +
       --rss-images, --no-rss-images
 +
                                Feed images
 +
                                 (default enabled)
 +
           Display feed images if available.
 +
      --rss-title={-1 (Default), 0 (Don't show), 1 (Always visible), 2 (Scroll with feed)}
 +
                                Title display mode
 +
           Title display mode. Default is 0 (hidden) if the feed has an image
 +
           and feed images are enabled, 1 otherwise.
  
  File audio output
+
  Remote-OSD over VNC (remoteosd)
      --audiofile-format={u8,s8,u16,s16,u16_le,s16_le,u16_be,s16_be,fixed32,float32,spdif}
+
       --rmtosd-host=<string>     VNC Host
                                Output format
+
           VNC hostname or IP address.
          One of "u8", "s8", "u16", "s16", "u16_le", "s16_le", "u16_be",
+
       --rmtosd-port=<integer [1 .. 65535]>  
          "s16_be", "fixed32", "float32" or "spdif"
+
                                 VNC Port
      --audiofile-channels=<integer>
+
           VNC port number.
                                Number of output channels
+
       --rmtosd-password=<string> VNC Password
          By default, all the channels of the incoming will be saved but you
+
           VNC password.
          can restrict the number of channels here.
+
       --rmtosd-update=<integer [200 .. 300]>  
      --audiofile-file=<string>  Output file
+
                                 VNC poll interval
          File to which the audio samples will be written to. ("-" for stdout
+
           In this interval an update from VNC is requested, default every 300
      --audiofile-wav, --no-audiofile-wav
+
           ms.
                                Add WAVE header (default enabled)
+
       --rmtosd-vnc-polling, --no-rmtosd-vnc-polling
          Instead of writing a raw file, you can add a WAV header to the file.
+
                                 VNC polling
          (default enabled)
+
                                 (default disabled)
 
+
           Activate VNC polling. Do NOT activate for use as VDR ffnetdev client.
AtmoLight Filter
+
       --rmtosd-mouse-events, --no-rmtosd-mouse-events
This module allows to control an so called AtmoLight device connected to your computer.
+
                                 Mouse events
AtmoLight is the homegrown version of what Philips calls AmbiLight.
+
                                 (default disabled)
If you need further information feel free to visit us at
+
           Send mouse events to VNC host. Not needed for use as VDR ffnetdev
 
+
           client.
http://www.vdr-wiki.de/wiki/index.php/Atmo-plugin
+
       --rmtosd-key-events, --no-rmtosd-key-events
http://www.vdr-wiki.de/wiki/index.php/AtmoWin
+
                                 Key events
 
+
                                 (default disabled)
You can find there detailed descriptions on how to build it for yourself and where to get the required parts.
+
           Send key events to VNC host.
You can also have a look at pictures and some movies showing such a device in live action.
+
       --rmtosd-alpha=<integer [0 .. 255]>  
  Choose between the built-in AtmoLight driver or the external:
+
                                 Alpha transparency value (default 255)
       --atmo-usebuildin, --no-atmo-usebuildin
+
           The transparency of the OSD VNC can be changed by giving a value
                                Use built-in AtmoLight (default enabled)
+
          between 0 and 255. A lower value specifies more transparency a higher
          VLC will directly use your AtmoLight hardware without running the
+
           means less transparency. The default is being not transparent (value
          external AtmoWinA.exe Userspace driver. (default enabled)
+
           255) the minimum is fully transparent (value 0).
      --atmo-serialdev=<string> Serial Port/Device
 
          Name of the serial port where the AtmoLight controller is attached
 
           to.
 
On Windows usually something like COM1 or COM2. On Linux
 
          /dev/ttyS01 f.e.
 
       --atmo-atmowinexe=<string> Filename of AtmoWinA.exe
 
          if you want the AtmoLight control software to be launched by VLC,
 
          enter the complete path of AtmoWinA.exe here.
 
  Illuminate the room with this color on pause:
 
      --atmo-usepausecolor, --no-atmo-usepausecolor
 
                                Color when paused (default disabled)
 
          Set the color to show if the user pauses the video. (Have light to
 
          get another beer?) (default disabled)
 
      --atmo-pcolor-red=<integer [0 .. 255]>
 
                                Pause-Red
 
          Red component of the pause color
 
      --atmo-pcolor-green=<integer [0 .. 255]>
 
                                Pause-Green
 
          Green component of the pause color
 
      --atmo-pcolor-blue=<integer [0 .. 255]>
 
                                Pause-Blue
 
          Blue component of the pause color
 
      --atmo-fadesteps=<integer [1 .. 250]>
 
                                 Pause-Fadesteps
 
           Number of steps to change current color to pause color (each step
 
          takes 40ms)
 
  Illuminate the room with this color on shutdown:
 
      --atmo-ecolor-red=<integer [0 .. 255]>
 
                                End-Red
 
          Red component of the shutdown color
 
      --atmo-ecolor-green=<integer [0 .. 255]>
 
                                End-Green
 
          Green component of the shutdown color
 
       --atmo-ecolor-blue=<integer [0 .. 255]>
 
                                End-Blue
 
           Blue component of the shutdown color
 
      --atmo-efadesteps=<integer [1 .. 250]>
 
                                End-Fadesteps
 
          Number of steps to change current color to end color for dimming up
 
          the light in cinema style... (each step takes 40ms)
 
  Settings for the built-in Live Video Processor only:
 
       --atmo-EdgeWeightning=<integer [1 .. 30]>
 
                                 Edge Weightning
 
           Increasing this value will result in color more depending on the
 
          border of the frame.
 
      --atmo-Brightness=<integer [50 .. 300]>
 
                                Brightness
 
           Overall brightness of your LED stripes
 
      --atmo-DarknessLimit=<integer [0 .. 10]>
 
                                Darkness Limit
 
          Pixels with a saturation lower than this will be ignored. Should be
 
          greater than one for letterboxed videos.
 
       --atmo-HueWinSize=<integer [0 .. 5]>
 
                                Hue windowing
 
          Used for statistics.
 
      --atmo-SatWinSize=<integer [0 .. 5]>
 
                                Sat windowing
 
          Used for statistics.
 
      --atmo-filtermode={0 (No Filtering), 1 (Combined), 2 (Percent)}
 
                                 Filter mode
 
          kind of filtering which should be use to calcuate the color output
 
      --atmo-MeanLength=<integer [300 .. 5000]>
 
                                 Filter length (ms)
 
           Time it takes until a color is completely changed. This prevents
 
          flickering.
 
      --atmo-MeanThreshold=<integer [1 .. 100]>
 
                                Filter threshold
 
          How much a color has to be changed for an immediate color change.
 
       --atmo-PercentNew=<integer [1 .. 100]>
 
                                Filter Smoothness (in %)
 
          Filter Smoothness
 
      --atmo-FrameDelay=<integer [0 .. 35]>
 
                                Frame delay
 
          Helps to get the video output and the light effects in sync. Values
 
          around 20ms should do the trick.
 
  Change channel assignment (fixes wrong wiring):
 
      --atmo-channel_0={-1 (disabled), 0 (summary), 1 (left), 2 (right), 3 (top), 4 (bottom)}
 
                                 Channel summary
 
          Maps the hardware channel X to logical channel Y to fix wrong wiring
 
          :-)
 
      --atmo-channel_1={-1 (disabled), 0 (summary), 1 (left), 2 (right), 3 (top), 4 (bottom)}
 
                                 Channel left
 
          Maps the hardware channel X to logical channel Y to fix wrong wiring
 
          :-)
 
      --atmo-channel_2={-1 (disabled), 0 (summary), 1 (left), 2 (right), 3 (top), 4 (bottom)}
 
                                Channel right
 
           Maps the hardware channel X to logical channel Y to fix wrong wiring
 
           :-)
 
       --atmo-channel_3={-1 (disabled), 0 (summary), 1 (left), 2 (right), 3 (top), 4 (bottom)}
 
                                Channel top
 
          Maps the hardware channel X to logical channel Y to fix wrong wiring
 
          :-)
 
      --atmo-channel_4={-1 (disabled), 0 (summary), 1 (left), 2 (right), 3 (top), 4 (bottom)}
 
                                 Channel bottom
 
          Maps the hardware channel X to logical channel Y to fix wrong wiring
 
          :-)
 
  Adjust the white light to your LED stripes:
 
      --atmo-whiteadj, --no-atmo-whiteadj
 
                                 Use Software White adjust (default enabled)
 
           Should the buildin driver do a white adjust or your LED stripes?
 
          recommend. (default enabled)
 
       --atmo-white-red=<integer [0 .. 255]>
 
                                 White Red
 
          Red value of a pure white on your LED stripes.
 
      --atmo-white-green=<integer [0 .. 255]>
 
                                White Green
 
           Green value of a pure white on your LED stripes.
 
      --atmo-white-blue=<integer [0 .. 255]>
 
                                White Blue
 
          Blue value of a pure white on your LED stripes.
 
  Change gradients:
 
      --atmo-gradient_zone_0=<string>
 
                                Summary gradient
 
          Defines a small bitmap with 64x48 pixels, containing a grayscale
 
           gradient
 
      --atmo-gradient_zone_1=<string>
 
                                Left gradient
 
          Defines a small bitmap with 64x48 pixels, containing a grayscale
 
          gradient
 
      --atmo-gradient_zone_2=<string>
 
                                Right gradient
 
          Defines a small bitmap with 64x48 pixels, containing a grayscale
 
          gradient
 
      --atmo-gradient_zone_3=<string>
 
                                Top gradient
 
          Defines a small bitmap with 64x48 pixels, containing a grayscale
 
          gradient
 
      --atmo-gradient_zone_4=<string>
 
                                Bottom gradient
 
          Defines a small bitmap with 64x48 pixels, containing a grayscale
 
          gradient
 
      --atmo-width=<integer [64 .. 512]>
 
                                Extracted Image Width
 
          The width of the mini image for further processing (64 is default)
 
      --atmo-height=<integer [48 .. 384]>
 
                                Extracted Image Height
 
           The height of the mini image for further processing (48 is default)
 
  
  Submission of played songs to last.fm
+
  Mosaic video sub source (mosaic)
       --lastfm-username=<string> Username
+
       --mosaic-alpha=<integer [0 .. 255]>  
          The username of your last.fm account
+
                                Transparency
      --lastfm-password=<string> Password
+
           Transparency of the mosaic foreground pictures. 0 means transparent,
           The password of your last.fm account
+
           255 opaque (default).
 
+
       --mosaic-height=<integer> Height
FFmpeg audio/video decoder
+
           Total height of the mosaic, in pixels.
Various audio and video decoders/encodersdelivered by the FFmpeg library. This includes (MS)MPEG4, DivX, SV1,H261, H263, H264, WMV, WMA, AAC, AMR, DV, MJPEG and other codecs
+
       --mosaic-width=<integer>   Width
  Decoding:
+
           Total width of the mosaic, in pixels.
      --ffmpeg-dr, --no-ffmpeg-dr
+
       --mosaic-align={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}
                                Direct rendering (default enabled)
+
                                 Mosaic alignment
           Direct rendering (default enabled)
+
           You can enforce the mosaic alignment on the video (0=center, 1=left,
       --ffmpeg-error-resilience=<integer>
+
           2=right, 4=top, 8=bottom, you can also use combinations of these
                                Error resilience
+
          values, eg 6 = top-right).
           Ffmpeg can do error resilience.
+
       --mosaic-xoffset=<integer> Top left corner X coordinate
However, with a buggy encoder (such
+
           X Coordinate of the top-left corner of the mosaic.
          as the ISO MPEG-4 encoder from M$) this can produce a lot of
+
       --mosaic-yoffset=<integer> Top left corner Y coordinate
          errors.
+
           Y Coordinate of the top-left corner of the mosaic.
Valid values range from 0 to 4 (0 disables all errors
+
      --mosaic-borderw=<integer> Border width
          resilience).
+
           Width in pixels of the border between miniatures.
       --ffmpeg-workaround-bugs=<integer>
+
       --mosaic-borderh=<integer> Border height
                                Workaround bugs
+
           Height in pixels of the border between miniatures.
           Try to fix some bugs:
+
       --mosaic-position={0 (auto), 1 (fixed), 2 (offsets)}  
1  autodetect
+
                                 Positioning method
2  old msmpeg4
+
          Positioning method for the mosaic. auto: automatically choose the
4  xvid
+
           best number of rows and columns. fixed: use the user-defined number
          interlaced
+
           of rows and columns. offsets: use the user-defined offsets for each
8  ump4
+
           image.
16 no padding
+
       --mosaic-rows=<integer>    Number of rows
32 ac vlc
+
           Number of image rows in the mosaic (only used if positioning method
64 Qpel chroma.
+
           is set to "fixed").
This must
+
       --mosaic-cols=<integer>   Number of columns
          be the sum of the values. For example, to fix "ac vlc" and "ump4",
+
           Number of image columns in the mosaic (only used if positioning
          enter 40.
+
           method is set to "fixed").
       --ffmpeg-hurry-up, --no-ffmpeg-hurry-up
+
       --mosaic-keep-aspect-ratio, --no-mosaic-keep-aspect-ratio
                                Hurry up (default enabled)
+
                                Keep aspect ratio
          The decoder can partially decode or skip frame(s) when there is not
+
                                 (default disabled)
          enough time. It's useful with low CPU power but it can produce
+
           Keep the original aspect ratio when resizing mosaic elements.
          distorted pictures. (default enabled)
+
       --mosaic-keep-picture, --no-mosaic-keep-picture
      --ffmpeg-skip-frame=<integer [-1 .. 4]>
+
                                Keep original size
                                 Skip frame (default=0)
+
                                 (default disabled)
           Force skipping of frames to speed up decoding (-1=None, 0=Default,
+
           Keep the original size of mosaic elements.
           1=B-frames, 2=P-frames, 3=B+P frames, 4=all frames).
+
       --mosaic-order=<string>    Elements order
       --ffmpeg-skip-idct=<integer [-1 .. 4]>
+
          You can enforce the order of the elements on the mosaic. You must
                                Skip idct (default=0)
+
          give a comma-separated list of picture ID(s). These IDs are assigned
           Force skipping of idct to speed up decoding for frame types(-1=None,
+
           in the "mosaic-bridge" module.
          0=Default, 1=B-frames, 2=P-frames, 3=B+P frames, 4=all frames).
+
       --mosaic-offsets=<string> Offsets in order
       --ffmpeg-vismv=<integer>   Visualize motion vectors
+
           You can enforce the (x,y) offsets of the elements on the mosaic (only
           You can overlay the motion vectors (arrows showing how the images
+
          used if positioning method is set to "offsets"). You must give a
          move) on the image. This value is a mask, based on these values:
+
           comma-separated list of coordinates (eg: 10,10,150,10).
1 -
+
       --mosaic-delay=<integer>   Delay
          visualize forward predicted MVs of P frames
+
          Pictures coming from the mosaic elements will be delayed according to
2 - visualize forward
+
           this value (in milliseconds). For high values you will need to raise
           predicted MVs of B frames
+
           caching at input.
4 - visualize backward predicted MVs of B
+
 
          frames
+
Marquee display (marq)
To visualize all vectors, the value should be 7.
+
Display text above the video
       --ffmpeg-lowres=<integer [0 .. 2]>
+
       --marq-marquee=<string>   Text
                                Low resolution decoding
+
           Marquee text to display. (Available format strings: %Y = year, %m =
           Only decode a low resolution version of the video. This requires less
+
           month, %d = day, %H = hour, %M = minute, %S = second, ...)
          processing power
+
       --marq-file=<string>       Text file
       --ffmpeg-skiploopfilter={0 (None), 1 (Non-ref), 2 (Bidir), 3 (Non-key), 4 (All)}
+
           File to read the marquee text from.
                                 Skip the loop filter for H.264 decoding
+
  Position:
           Skipping the loop filter (aka deblocking) usually has a detrimental
+
       --marq-x=<integer>         X offset
           effect on quality. However it provides a big speedup for high
+
           X offset, from the left screen edge.
           definition streams.
+
       --marq-y=<integer>         Y offset
       --ffmpeg-debug=<integer>   Debug mask
+
           Y offset, down from the top.
          Set ffmpeg debug mask
+
       --marq-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}
   Encoding:
+
                                 Marquee position
      --sout-ffmpeg-hq={rd,bits,simple}
+
           You can enforce the marquee position on the video (0=center, 1=left,
                                Quality level
+
           2=right, 4=top, 8=bottom, you can also use combinations of these
           Quality level for the encoding of motions vectors (this can slow down
+
           values, eg 6 = top-right).
           the encoding very much).
+
  Font:
       --sout-ffmpeg-keyint=<integer>
+
       --marq-opacity=<integer [0 .. 255]>  
                                Ratio of key frames
+
                                 Opacity
           Number of frames that will be coded for one key frame.
+
           Opacity (inverse of transparency) of overlayed text. 0 = transparent,
      --sout-ffmpeg-bframes=<integer>
+
          255 = totally opaque.
                                Ratio of B frames
+
       --marq-color={-268435456 (Default), 0 (Black), 8421504 (Gray), 12632256 (Silver), 16777215 (White), 8388608 (Maroon), 16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 8421376 (Olive), 32768 (Green), 32896 (Teal), 65280 (Lime), 8388736 (Purple), 128 (Navy), 255 (Blue), 65535 (Aqua)}
           Number of B frames that will be coded between two reference frames.
+
                                 Color
       --sout-ffmpeg-hurry-up, --no-sout-ffmpeg-hurry-up
+
           Color of the text that will be rendered on the video. This must be an
                                 Hurry up (default disabled)
+
           hexadecimal (like HTML colors). The first two chars are for red, then
           The encoder can make on-the-fly quality tradeoffs if your CPU can't
+
          green, then blue. #000000 = black, #FF0000 = red, #00FF00 = green,
          keep up with the encoding rate. It will disable trellis quantization,
+
           #FFFF00 = yellow (red + green), #FFFFFF = white
          then the rate distortion of motion vectors (hq), and raise the noise
+
       --marq-size=<integer [0 .. 4096]>  
          reduction threshold to ease the encoder's task. (default disabled)
+
                                 Font size, pixels
       --sout-ffmpeg-interlace, --no-sout-ffmpeg-interlace
+
           Font size, in pixels. Default is 0 (use default font size).
                                 Interlaced encoding (default disabled)
+
  Misc:
           Enable dedicated algorithms for interlaced frames. (default disabled)
+
       --marq-timeout=<integer>   Timeout
       --sout-ffmpeg-interlace-me, --no-sout-ffmpeg-interlace-me
+
           Number of milliseconds the marquee must remain displayed. Default
                                Interlaced motion estimation (default enabled)
+
           value is 0 (remains forever).
          Enable interlaced motion estimation algorithms. This requires more
+
       --marq-refresh=<integer>   Refresh period in ms
           CPU. (default enabled)
+
           Number of milliseconds between string updates. This is mainly useful
       --sout-ffmpeg-vt=<integer> Video bitrate tolerance
+
           when using meta data or time format string sequences.
           Video bitrate tolerance in kbit/s.
 
      --sout-ffmpeg-pre-me, --no-sout-ffmpeg-pre-me
 
                                Pre-motion estimation (default disabled)
 
           Enable the pre-motion estimation algorithm. (default disabled)
 
       --sout-ffmpeg-rc-buffer-size=<integer>
 
                                Rate control buffer size
 
           Rate control buffer size (in kbytes). A bigger buffer will allow for
 
           better rate control, but will cause a delay in the stream.
 
      --sout-ffmpeg-rc-buffer-aggressivity=<float>
 
                                Rate control buffer aggressiveness
 
          Rate control buffer aggressiveness.
 
       --sout-ffmpeg-i-quant-factor=<float>
 
                                I quantization factor
 
           Quantization factor of I frames, compared with P frames (for instance
 
           1.0 => same qscale for I and P frames).
 
       --sout-ffmpeg-noise-reduction=<integer>
 
                                Noise reduction
 
           Enable a simple noise reduction algorithm to lower the encoding
 
          length and bitrate, at the expense of lower quality frames.
 
      --sout-ffmpeg-mpeg4-matrix, --no-sout-ffmpeg-mpeg4-matrix
 
                                MPEG4 quantization matrix (default disabled)
 
          Use the MPEG4 quantization matrix for MPEG2 encoding. This generally
 
          yields a better looking picture, while still retaining the
 
          compatibility with standard MPEG2 decoders. (default disabled)
 
       --sout-ffmpeg-qmin=<integer>
 
                                Minimum video quantizer scale
 
           Minimum video quantizer scale.
 
       --sout-ffmpeg-qmax=<integer>
 
                                Maximum video quantizer scale
 
           Maximum video quantizer scale.
 
       --sout-ffmpeg-trellis, --no-sout-ffmpeg-trellis
 
                                Trellis quantization (default disabled)
 
          Enable trellis quantization (rate distortion for block coefficients).
 
          (default disabled)
 
      --sout-ffmpeg-qscale=<float>
 
                                 Fixed quantizer scale
 
           A fixed video quantizer scale for VBR encoding (accepted values: 0.01
 
           to 255.0).
 
      --sout-ffmpeg-strict=<integer>
 
                                Strict standard compliance
 
           Force a strict standard compliance when encoding (accepted values:
 
          -1, 0, 1).
 
       --sout-ffmpeg-lumi-masking=<float>
 
                                 Luminance masking
 
           Raise the quantizer for very bright macroblocks (default: 0.0).
 
       --sout-ffmpeg-dark-masking=<float>
 
                                Darkness masking
 
          Raise the quantizer for very dark macroblocks (default: 0.0).
 
      --sout-ffmpeg-p-masking=<float>
 
                                 Motion masking
 
           Raise the quantizer for macroblocks with a high temporal complexity
 
           (default: 0.0).
 
      --sout-ffmpeg-border-masking=<float>
 
                                Border masking
 
          Raise the quantizer for macroblocks at the border of the frame
 
           (default: 0.0).
 
       --sout-ffmpeg-luma-elim-threshold=<integer>
 
                                 Luminance elimination
 
          Eliminates luminance blocks when the PSNR isn't much changed
 
           (default: 0.0). The H264 specification recommends -4.
 
       --sout-ffmpeg-chroma-elim-threshold=<integer>
 
                                Chrominance elimination
 
           Eliminates chrominance blocks when the PSNR isn't much changed
 
           (default: 0.0). The H264 specification recommends 7.
 
       --sout-ffmpeg-aac-profile=<string>
 
                                Specify AAC audio profile to use
 
           Specify the AAC audio profile to use for encoding the audio
 
           bitstream. It takes the following options: main, low, ssr (not
 
          supported) and ltp (default: main)
 
  
  FFmpeg demuxer
+
  Logo sub source (logo)
       --ffmpeg-mux=<string>     Ffmpeg mux
+
Use a local picture as logo on the video
           Force use of ffmpeg muxer.
+
       --logo-file=<string>       Logo filenames
 +
           Full path of the image files to use. Format is <image>[,<delay in
 +
          ms>[,<alpha>]][;<image>[,<delay>[,<alpha>]]][;...]. If you only have
 +
          one file, simply enter its filename.
 +
      --logo-x=<integer>        X coordinate
 +
          X coordinate of the logo. You can move the logo by left-clicking it.
 +
      --logo-y=<integer>        Y coordinate
 +
          Y coordinate of the logo. You can move the logo by left-clicking it.
 +
      --logo-delay=<integer>    Logo individual image time in ms
 +
          Individual image display time of 0 - 60000 ms.
 +
      --logo-repeat=<integer>    Logo animation # of loops
 +
          Number of loops for the logo animation. -1 = continuous, 0 = disabled
 +
      --logo-opacity=<integer [0 .. 255]>
 +
                                Opacity of the logo
 +
          Logo opacity value (from 0 for full transparency to 255 for full
 +
          opacity).
 +
      --logo-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}
 +
                                Logo position
 +
          Enforce the logo position on the video (0=center, 1=left, 2=right,
 +
          4=top, 8=bottom, you can also use combinations of these values, eg 6
 +
          = top-right).
  
  AVI demuxer
+
  Audio Bar Graph Video sub source (audiobargraph_v)
       --avi-interleaved, --no-avi-interleaved
+
       --audiobargraph_v-x=<integer>
                                 Force interleaved method (default disabled)
+
                                X coordinate
           Force interleaved method. (default disabled)
+
          X coordinate of the bargraph.
       --avi-index={0 (Ask), 1 (Always fix), 2 (Never fix)}
+
      --audiobargraph_v-y=<integer>
                                 Force index creation
+
                                Y coordinate
           Recreate a index for the AVI file. Use this if your AVI file is
+
          Y coordinate of the bargraph.
           damaged or incomplete (not seekable).
+
      --audiobargraph_v-transparency=<integer [0 .. 255]>
 +
                                 Transparency of the bargraph
 +
          Bargraph transparency value (from 0 for full transparency to 255 for
 +
           full opacity).
 +
       --audiobargraph_v-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}  
 +
                                 Bargraph position
 +
          Enforce the bargraph position on the video (0=center, 1=left,
 +
          2=right, 4=top, 8=bottom, you can also use combinations of these
 +
          values, eg 6 = top-right).
 +
      --audiobargraph_v-barWidth=<integer>
 +
                                Bar width in pixel
 +
           Width in pixel of each bar in the BarGraph to be displayed.
 +
      --audiobargraph_v-barHeight=<integer>
 +
                                Bar Height in pixel
 +
           Height in pixel of BarGraph to be displayed.
  
  DirectShow DVB input
+
  Universal Plug'n'Play (upnp)
      --dvb-caching=<integer>    Caching value in ms
+
       --satip-channelist={ASTRA_19_2E,ASTRA_28_2E,ASTRA_23_5E,MasterList,ServerList,CustomList}  
          Caching value for DVB streams. This value should be set in
+
                                 SAT>IP channel list
          milliseconds.
+
           SAT>IP channel list
      --dvb-frequency=<integer>  Transponder/multiplex frequency
+
       --satip-channellist-url=<string>  
          In kHz for DVB-S or Hz for DVB-C/T
+
                                Custom SAT>IP channel list URL
       --dvb-inversion={-1 (Undefined), 0 (Off), 1 (On), 2 (Auto)}
+
           Custom SAT>IP channel list URL
                                Inversion mode
 
          Inversion mode [0=off, 1=on, 2=auto]
 
      --dvb-polarisation={H,V,L,R}
 
                                 Satellite Polarisation
 
          Satellite Polarisation [H/V/L/R]
 
      --dvb-network-id=<integer> Network Identifier
 
                --dvb-azimuth=<integer>    Satellite Azimuth
 
           Satellite Azimuth in tenths of degree
 
      --dvb-elevation=<integer> Satellite Elevation
 
          Satellite Elevation in tenths of degree
 
       --dvb-longitude=<integer>  Satellite Longitude
 
          Satellite Longitude in 10ths of degree, -ve=West
 
      --dvb-lnb-lof1=<integer>   Antenna lnb_lof1 (kHz)
 
          Low Band Local Osc Freq in kHz usually 9.75GHz
 
      --dvb-lnb-lof2=<integer>   Antenna lnb_lof2 (kHz)
 
           High Band Local Osc Freq in kHz usually 10.6GHz
 
      --dvb-lnb-slof=<integer>  Antenna lnb_slof (kHz)
 
          Low Noise Block switch freq in kHz usually 11.7GHz
 
      --dvb-fec=<integer>        Transponder FEC
 
          FEC=Forward Error Correction mode [9=auto].
 
      --dvb-srate=<integer>     Transponder symbol rate in kHz
 
                --dvb-modulation={-1 (Undefined), 16 (16), 32 (32), 64 (64), 128 (128), 256 (256)}
 
                                Modulation type
 
          QAM constellation points [16, 32, 64, 128, 256]
 
      --dvb-code-rate-hp={-1 (Undefined), 1 (1/2), 2 (2/3), 3 (3/4), 4 (5/6), 5 (7/8)}
 
                                Terrestrial high priority stream code rate
 
                                (FEC)
 
          High Priority FEC Rate [Undefined,1/2,2/3,3/4,5/6,7/8]
 
      --dvb-code-rate-lp={-1 (Undefined), 1 (1/2), 2 (2/3), 3 (3/4), 4 (5/6), 5 (7/8)}
 
                                Terrestrial low priority stream code rate
 
                                (FEC)
 
          Low Priority FEC Rate [Undefined,1/2,2/3,3/4,5/6,7/8]
 
      --dvb-bandwidth={-1 (Undefined), 6 (6 MHz), 7 (7 MHz), 8 (8 MHz)}
 
                                Terrestrial bandwidth
 
          Terrestrial bandwidth [0=auto,6,7,8 in MHz]
 
      --dvb-guard={-1 (Undefined), 4 (1/4), 8 (1/8), 16 (1/16), 32 (1/32)}
 
                                Terrestrial guard interval
 
          Guard interval [Undefined,1/4,1/8,1/16,1/32]
 
      --dvb-transmission={-1 (Undefined), 2 (2k), 8 (8k)}
 
                                Terrestrial transmission mode
 
          Transmission mode [Undefined,2k,8k]
 
      --dvb-hierarchy={-1 (Undefined), 1 (1), 2 (2), 4 (4)}
 
                                Terrestrial hierarchy mode
 
          Hierarchy alpha value [Undefined,1,2,4]
 
  
  Blending benchmark filter
+
  Network streams (SAP) (sap)
  Benchmarking:
+
       --sap-addr=<string>       SAP multicast address
       --blendbench-loops=<integer>
+
          The SAP module normally chooses itself the right addresses to listen
                                Number of time to blend
+
           to. However, you can specify a specific address.
           The number of time the blend will be performed
+
       --sap-timeout=<integer>   SAP timeout (seconds)
       --blendbench-alpha=<integer [0 .. 255]>
+
           Delay after which SAP items get deleted if no new announcement is
                                Alpha of the blended image
+
          received.
           Alpha with which the blend image is blended
+
       --sap-parse, --no-sap-parse
  Base image:
+
                                 Try to parse the announce
       --blendbench-base-image=<string>
+
                                (default enabled)
                                 Image to be blended onto
+
           This enables actual parsing of the announces by the SAP module.
           The image which will be used to blend onto
+
           Otherwise, all announcements are parsed by the "live555" (RTP/RTSP)
      --blendbench-base-chroma=<string>
+
          module.
                                Chroma for the base image
+
       --sap-strict, --no-sap-strict
           Chroma which the base image will be loaded in
+
                                SAP Strict mode
  Blend image:
+
                                 (default disabled)
       --blendbench-blend-image=<string>
+
           When this is set, the SAP parser will discard some non-compliant
                                Image which will be blended.
+
          announcements.
          The image blended onto the base image
 
      --blendbench-blend-chroma=<string>
 
                                 Chroma for the blend image
 
           Chroma which the blend image will be loadedin
 
  
  Bluescreen video filter
+
  Podcasts (podcast)
This effect, also known as "greenscreen" or "chroma key" blends the "blue parts" of the foreground image of the mosaic on the background (like weather forcasts). You can choose the "key" color for blending (blyyue by default).
+
       --podcast-urls=<string>   Podcast URLs list
       --bluescreen-u=<integer [0 .. 255]>
+
           Enter the list of podcasts to retrieve, separated by '|' (pipe).
                                Bluescreen U value
 
           "U" value for the bluescreen key color (in YUV values). From 0 to
 
          255. Defaults to 120 for blue.
 
      --bluescreen-v=<integer [0 .. 255]>
 
                                Bluescreen V value
 
          "V" value for the bluescreen key color (in YUV values). From 0 to
 
          255. Defaults to 90 for blue.
 
      --bluescreen-ut=<integer [0 .. 255]>
 
                                Bluescreen U tolerance
 
          Tolerance of the bluescreen blender on color variations for the U
 
          plane. A value between 10 and 20 seems sensible.
 
      --bluescreen-vt=<integer [0 .. 255]>
 
                                Bluescreen V tolerance
 
          Tolerance of the bluescreen blender on color variations for the V
 
          plane. A value between 10 and 20 seems sensible.
 
  
  Automatically resize and padd a video
+
  MPEG-I/II video packetizer (mpegvideo)
       --canvas-width=<integer [0 .. 2147483647]>
+
       --packetizer-mpegvideo-sync-iframe, --no-packetizer-mpegvideo-sync-iframe
                                Image width
+
                                Sync on Intra Frame
          Image width
+
                                 (default disabled)
      --canvas-height=<integer [0 .. 2147483647]>
+
           Normally the packetizer would sync on the next full frame. This flags
                                 Image height
+
           instructs the packetizer to sync on the first Intra Frame found.
           Image height
 
      --canvas-aspect=<string>  Aspect ratio
 
           Set aspect (like 4:3) of the video canvas
 
  
  Audio CD input
+
  TS muxer (libdvbpsi) (mux_ts)
      --cdda-caching=<integer>  Caching value in ms
+
       --sout-ts-standard={dvb,atsc}
          Default caching value for Audio CDs. This value should be set in
+
                                 Digital TV Standard
          milliseconds.
+
       --sout-ts-pid-video=<integer [32 .. 8190]>  
      --cdda-track=<integer>    (null)
+
                                Video PID
      --cdda-first-sector=<integer>
+
           Assign a fixed PID to the video stream. The PCR PID will
                                (null)
+
           automatically be the video.
       --cdda-last-sector=<integer>
+
       --sout-ts-pid-audio=<integer [32 .. 8190]>  
                                 (null)
+
                                 Audio PID
       --cddb-server=<string>    CDDB Server
+
           Assign a fixed PID to the audio stream.
          Address of the CDDB server to use.
+
       --sout-ts-pid-spu=<integer [32 .. 8190]>  
      --cddb-port=<integer>     CDDB port
+
                                 SPU PID
          CDDB Server port to use.
+
           Assign a fixed PID to the SPU.
 
+
       --sout-ts-pid-pmt=<integer [32 .. 8190]>  
Clone video filter
+
                                 PMT PID
      --clone-count=<integer>    Number of clones
+
           Assign a fixed PID to the PMT
           Number of video windows in which to clone the video.
+
       --sout-ts-tsid=<integer>   TS ID
      --clone-vout-list=<string> Video output modules
+
           Assign a fixed Transport Stream ID.
          You can use specific video output modules for the clones. Use a
+
       --sout-ts-netid=<integer> NET ID
          comma-separated list of modules.
+
           Assign a fixed Network ID (for SDT table)
 
+
       --sout-ts-program-pmt=<string>  
Color threshold filter
+
                                 PMT Program numbers
      --colorthres-color={16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 65280 (Lime), 255 (Blue), 65535 (Aqua)}
+
          Assign a program number to each PMT. This requires "Set PID to ID of
                                Color
+
           ES" to be enabled.
          Colors similar to this will be kept, others will be grayscaled. This
+
       --sout-ts-es-id-pid, --no-sout-ts-es-id-pid
           must be an hexadecimal (like HTML colors). The first two chars are
+
                                 Set PID to ID of ES
          for red, then green, then blue. #000000 = black, #FF0000 = red,
+
                                (default disabled)
          #00FF00 = green, #FFFF00 = yellow (red + green), #FFFFFF = white
+
           Sets PID to the ID if the incoming ES. This is for use with
       --colorthres-saturationthres=<integer>
+
           --ts-es-id-pid, and allows having the same PIDs in the input and
                                Saturaton threshold
+
           output streams.
                --colorthres-similaritythres=<integer>
+
       --sout-ts-muxpmt=<string> Mux PMT (requires --sout-ts-es-id-pid)
                                Similarity threshold
+
           Define the pids to add to each pmt. This requires "Set PID to ID of
         
+
           ES" to be enabled.
Video scaling filter
+
       --sout-ts-sdtdesc=<string> SDT Descriptors (requires --sout-ts-es-id-pid)
  Crop:
+
           Defines the descriptors of each SDT. This requires "Set PID to ID of
      --croppadd-croptop=<integer [0 .. 2147483647]>
+
           ES" to be enabled.
                                 Pixels to crop from top
+
       --sout-ts-alignment, --no-sout-ts-alignment
           Number of pixels to crop from the top of the image.
+
                                Data alignment
       --croppadd-cropbottom=<integer [0 .. 2147483647]>
+
                                 (default enabled)
                                 Pixels to crop from bottom
+
           Enforces alignment of all access units on PES boundaries. Disabling
           Number of pixels to crop from the bottom of the image.
+
           this might save some bandwidth but introduce incompatibilities.
       --croppadd-cropleft=<integer [0 .. 2147483647]>
+
       --sout-ts-shaping=<integer>  
                                 Pixels to crop from left
+
                                 Shaping delay (ms)
           Number of pixels to crop from the left of the image.
+
          Cut the stream in slices of the given duration, and ensure a constant
       --croppadd-cropright=<integer [0 .. 2147483647]>
+
          bitrate between the two boundaries. This avoids having huge bitrate
                                Pixels to crop from right
+
           peaks, especially for reference frames.
           Number of pixels to crop from the right of the image.
+
       --sout-ts-use-key-frames, --no-sout-ts-use-key-frames
  Padd:
+
                                Use keyframes
       --croppadd-paddtop=<integer [0 .. 2147483647]>
+
                                 (default disabled)
                                Pixels to padd to top
+
           If enabled, and shaping is specified, the TS muxer will place the
           Number of pixels to padd to the top of the image after cropping.
+
           boundaries at the end of I pictures. In that case, the shaping
       --croppadd-paddbottom=<integer [0 .. 2147483647]>
+
           duration given by the user is a worse case used when no reference
                                 Pixels to padd to bottom
+
           frame is available. This enhances the efficiency of the shaping
           Number of pixels to padd to the bottom of the image after cropping.
+
           algorithm, since I frames are usually the biggest frames in the
       --croppadd-paddleft=<integer [0 .. 2147483647]>
+
           stream.
                                Pixels to padd to left
+
       --sout-ts-pcr=<integer>    PCR interval (ms)
          Number of pixels to padd to the left of the image after cropping.
+
           Set at which interval PCRs (Program Clock Reference) will be sent (in
      --croppadd-paddright=<integer [0 .. 2147483647]>
+
           milliseconds). This value should be below 100ms. (default is 70ms).
                                 Pixels to padd to right
+
       --sout-ts-bmin=<integer>  Minimum B (deprecated)
          Number of pixels to padd to the right of the image after cropping.
+
           This setting is deprecated and not used anymore
 
+
       --sout-ts-bmax=<integer>   Maximum B (deprecated)
Crop video filter
+
           This setting is deprecated and not used anymore
      --crop-geometry=<string>  Crop geometry (pixels)
+
       --sout-ts-dts-delay=<integer>  
           Set the geometry of the zone to crop. This is set as <width> x
+
                                 DTS delay (ms)
           <height> + <left offset> + <top offset>.
+
           Delay the DTS (decoding time stamps) and PTS (presentation
      --autocrop, --no-autocrop  Automatic cropping (default disabled)
+
          timestamps) of the data in the stream, compared to the PCRs. This
           Automatically detect black borders and crop them. (default disabled)
+
           allows for some buffering inside the client decoder.
       --autocrop-ratio-max=<integer [0 .. 15000]>
+
       --sout-ts-crypt-audio, --no-sout-ts-crypt-audio  
                                Ratio max (x 1000)
+
                                 Crypt audio
           Maximum image ratio. The crop plugin will never automatically crop to
+
                                (default enabled)
           a higher ratio (ie, to a more "flat" image). The value is x1000: 1333
+
           Crypt audio using CSA
          means 4/3.
+
       --sout-ts-crypt-video, --no-sout-ts-crypt-video
       --crop-ratio=<integer [0 .. 15000]>
+
                                Crypt video
                                Manual ratio
+
                                 (default enabled)
          Force a ratio (0 for automatic). Value is x1000: 1333 means 4/3.
+
           Crypt video using CSA
      --autocrop-time=<integer>  Number of images for change
+
       --sout-ts-csa-ck=<string>  CSA Key
          The number of consecutive images with the same detected ratio
+
           CSA encryption key. This must be a 16 char string (8 hexadecimal
          (different from the previously detected ratio) to consider that ratio
+
           bytes).
          chnged and trigger recrop.
+
       --sout-ts-csa2-ck=<string> Second CSA Key
      --autocrop-diff=<integer>  Number of lines for change
+
           The even CSA encryption key. This must be a 16 char string (8
           The minimum difference in the number of detected black lines to
+
           hexadecimal bytes).
           consider that ratio changed and trigger recrop.
+
       --sout-ts-csa-use=<string> CSA Key in use
       --autocrop-non-black-pixels=<integer>
+
           CSA encryption key used. It can be the odd/first/1 (default) or the
                                Number of non black pixels
+
          even/second/2 one.
          The maximum of non-black pixels in a line to consider that the line
+
       --sout-ts-csa-pkt=<integer>  
          is black.
+
                                 Packet size in bytes to encrypt
      --autocrop-skip-percent=<integer [0 .. 100]>
+
          Size of the TS packet to encrypt. The encryption routines subtract
                                 Skip percentage (%)
+
           the TS-header from the value before encrypting.
           Percentage of the line to consider while checking for black lines.
 
           This allows to skip logos in black borders and crop them anyway.
 
       --autocrop-luminance-threshold=<integer [0 .. 128]>
 
                                 Luminance threshold
 
          Maximum luminance to consider a pixel as black (0-255).
 
 
 
Deinterlacing video filter
 
  Display:
 
      --deinterlace-mode={discard,blend,mean,bob,linear,x}
 
                                Deinterlace mode
 
           Deinterlace method to use for local playback.
 
  Streaming:
 
       --sout-deinterlace-mode={discard,blend,mean,bob,linear,x}
 
                                Streaming deinterlace mode
 
          Deinterlace method to use for streaming.
 
 
 
File dumper
 
      --demuxdump-file=<string>  Dump filename
 
          Name of the file to which the raw stream will be dumped.
 
      --demuxdump-append, --no-demuxdump-append
 
                                 Append to existing file (default disabled)
 
           If the file already exists, it will not be overwritten. (default
 
          disabled)
 
 
 
DirectShow input
 
      --dshow-caching=<integer>  Caching value in ms
 
          Caching value for DirectShow streams. This value should be set in
 
          millisecondss.
 
      --dshow-vdev={,none}      Video device name
 
          Name of the video device that will be used by the DirectShow plugin.
 
           If you don't specify anything, the default device will be used.
 
      --dshow-adev={,none}      Audio device name
 
           Name of the audio device that will be used by the DirectShow plugin.
 
           If you don't specify anything, the default device will be used.
 
      --dshow-size=<string>      Video size
 
          Size of the video that will be displayed by the DirectShow plugin. If
 
           you don't specify anything the default size for your device will be
 
           used. You can specify a standard size (cif, d1, ...) or
 
          <width>x<height>.
 
       --dshow-chroma=<string>    Video input chroma format
 
          Force the DirectShow video input to use a specific chroma format (eg.
 
           I420 (default), RV24, etc.)
 
      --dshow-fps=<float>        Video input frame rate
 
          Force the DirectShow video input to use a specific frame rate(eg. 0
 
           means default, 25, 29.97, 50, 59.94, etc.)
 
      --dshow-config, --no-dshow-config
 
                                Device properties (default disabled)
 
          Show the properties dialog of the selected device before starting the
 
          stream. (default disabled)
 
       --dshow-tuner, --no-dshow-tuner
 
                                Tuner properties (default disabled)
 
           Show the tuner properties [channel selection] page. (default disabled)
 
       --dshow-tuner-channel=<integer>
 
                                Tuner TV Channel
 
           Set the TV channel the tuner will set to (0 means default).
 
       --dshow-tuner-country=<integer>
 
                                 Tuner country code
 
           Set the tuner country code that establishes the current
 
          channel-to-frequency mapping (0 means default).
 
      --dshow-tuner-input={0 (Default), 1 (Cable), 2 (Antenna)}
 
                                Tuner input type
 
           Select the tuner input type (Cable/Antenna).
 
       --dshow-video-input=<integer>
 
                                Video input pin
 
          Select the video input source, such as composite, s-video, or tuner.
 
          Since these settings are hardware-specific, you should find good
 
          settings in the "Device config" area, and use those numbers here. -1
 
          means that settings will not be changed.
 
      --dshow-audio-input=<integer>
 
                                 Audio input pin
 
           Select the audio input source. See the "video input" option.
 
       --dshow-video-output=<integer>
 
                                Video output pin
 
          Select the video output type. See the "video input" option.
 
      --dshow-audio-output=<integer>
 
                                 Audio output pin
 
           Select the audio output type. See the "video input" option.
 
       --dshow-amtuner-mode={0 (Default), 1 (TV), 2 (FM radio), 4 (AM radio), 8 (DSS)}
 
                                AM Tuner mode
 
           AM Tuner mode. Can be one of Default (0), TV (1),AM Radio (2), FM
 
           Radio (3) or DSS (4).
 
       --dshow-audio-channels=<integer>
 
                                Number of audio channels
 
           Select audio input format with the given number of audio channels (if
 
           non 0)
 
       --dshow-audio-samplerate=<integer>
 
                                Audio sample rate
 
           Select audio input format with the given sample rate (if non 0)
 
       --dshow-audio-bitspersample=<integer>
 
                                 Audio bits per sample
 
           Select audio input format with the given bits/sample (if non 0)
 
  
  DTS Coherent Acoustics audio decoder
+
  PS muxer (ps)
       --dts-dynrng, --no-dts-dynrng
+
       --sout-ps-dts-delay=<integer>
                                 DTS dynamic range compression (default
+
                                 DTS delay (ms)
                                enabled)
+
           Delay the DTS (decoding time stamps) and PTS (presentation
           Dynamic range compression makes the loud sounds softer, and the soft
+
           timestamps) of the data in the stream, compared to the SCRs. This
           sounds louder, so you can more easily listen to the stream in a noisy
+
           allows for some buffering inside the client decoder.
           environment without disturbing anyone. If you disable the dynamic
+
      --sout-ps-pes-max-size=<integer>
           range compression the playback will be more adapted to a movie
+
                                PES maximum size
           theater or a listening room. (default enabled)
+
          Set the maximum allowed PES size when producing the MPEG PS streams.
 +
 
 +
Ogg/OGM muxer (mux_ogg)
 +
      --sout-ogg-indexintvl=<integer [0 .. 2147483647]>
 +
                                Index interval
 +
           Minimal index interval, in microseconds. Set to 0 to disable index
 +
          creation.
 +
      --sout-ogg-indexratio=<float [1.000000 .. 1000.000000]>
 +
                                Index size ratio
 +
           Set index size ratio. Alters default (60min content) or estimated
 +
          size.
 +
 
 +
MP4/MOV muxer (mp4)
 +
      --sout-mp4-faststart, --no-sout-mp4-faststart
 +
                                Create "Fast Start" files
 +
                                (default enabled)
 +
          Create "Fast Start" files. "Fast Start" files are optimized for
 +
          downloads and allow the user to start previewing the file while it is
 +
          downloading.
  
  Dummy interface function
+
  AVI muxer (avi)
  Dummy Interface:
+
      --sout-avi-artist=<string> Artist
       --dummy-quiet, --no-dummy-quiet
+
       --sout-avi-date=<string>  Date
                                Do not open a DOS command box interface
+
      --sout-avi-genre=<string>  Genre
                                 (default disabled)
+
      --sout-avi-copyright=<string>
          By default the dummy interface plugin will start a DOS command box.
+
                                 Copyright
          Enabling the quiet mode will not bring this command box but can also
+
      --sout-avi-comment=<string>
          be pretty annoying when you want to stop VLC and no video window is
+
                                Comment
          open. (default disabled)
+
       --sout-avi-name=<string>  Name
  Dummy decoder:
+
      --sout-avi-subject=<string>
       --dummy-save-es, --no-dummy-save-es
+
                                 Subject
                                 Save raw codec data (default disabled)
+
      --sout-avi-encoder=<string>
          Save the raw codec data if you have selected/forced the dummy decoder
+
                                Encoder
          in the main options. (default disabled)
+
       --sout-avi-keywords=<string>  
  Dummy Video output:
+
                                Keywords
       --dummy-chroma=<string>   Dummy image chroma format
 
          Force the dummy video output to create images using a specific chroma
 
          format instead of trying to improve performances by using the most
 
          efficient one.
 
  
  DVB subtitles decoder
+
  ASF muxer (asf)
       --dvbsub-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}
+
       --sout-asf-title=<string>  Title
                                Subpicture position
+
          Title to put in ASF comments.
          You can enforce the subpicture position on the video (0=center,
+
      --sout-asf-author=<string> Author
          1=left, 2=right, 4=top, 8=bottom, you can also use combinations of
+
          Author to put in ASF comments.
           these values, e.g. 6=top-right).
+
      --sout-asf-copyright=<string>
       --dvbsub-x=<integer>       Decoding X coordinate
+
                                Copyright
           X coordinate of the rendered subtitle
+
           Copyright string to put in ASF comments.
       --dvbsub-y=<integer>       Decoding Y coordinate
+
       --sout-asf-comment=<string>  
           Y coordinate of the rendered subtitle
+
                                Comment
       --sout-dvbsub-x=<integer> Encoding X coordinate
+
           Comment to put in ASF comments.
           X coordinate of the encoded subtitle
+
       --sout-asf-rating=<string> Rating
       --sout-dvbsub-y=<integer> Encoding Y coordinate
+
           "Rating" to put in ASF comments.
           Y coordinate of the encoded subtitle
+
       --sout-asf-packet-size=<integer>  
 +
                                Packet Size
 +
           ASF packet size -- default is 4096 bytes
 +
       --sout-asf-bitrate-override=<integer>  
 +
                                Bitrate override
 +
          Do not try to guess ASF bitrate. Setting this, allows you to control
 +
          how Windows Media Player will cache streamed content. Set to
 +
           audio+video bitrate in bytes
  
  DVDnav Input
+
  Legacy RTSP VoD server (rtsp)
       --dvdnav-angle=<integer>   DVD angle
+
       --rtsp-raw-mux=<string>   MUX for RAW RTSP transport
           Default DVD angle.
+
           MUX for RAW RTSP transport
       --dvdnav-caching=<integer> Caching value in ms
+
       --rtsp-throttle-users=<integer>  
          Caching value for DVDs. This value should be set in milliseconds.
+
                                 Maximum number of connections
      --dvdnav-menu, --no-dvdnav-menu
+
           This limits the maximum number of clients that can connect to the
                                 Start directly in menu (default enabled)
+
           RTSP VOD. 0 means no limit.
           Start the DVD directly in the main menu. This will try to skip all
+
       --rtsp-session-timeout=<integer>  
           the useless warning introductions. (default enabled)
+
                                 Sets the timeout option in the RTSP session
 
+
                                 string
DVDRead Input (DVD without menu support)
+
           Defines what timeout option to add to the RTSP session ID string.
       --dvdread-angle=<integer>  DVD angle
+
           Setting it to a negative number removes the timeout option entirely.
          Default DVD angle.
+
           This is needed by some IPTV STBs (such as those made by HansunTech)
      --dvdread-caching=<integer>
+
           which get confused by it. The default is 5.
                                 Caching value in ms
 
          Caching value for DVDs. This value should be set in milliseconds.
 
      --dvdread-css-method={title,disc,key}
 
                                 Method used by libdvdcss for decryption
 
           Set the method used by libdvdcss for key decryption.
 
title: decrypted
 
          title key is guessed from the encrypted sectors of the stream. Thus
 
           it should work with a file as well as the DVD device. But it
 
           sometimes takes much time to decrypt a title key and may even fail.
 
          With this method, the key is only checked at the beginning of each
 
          title, so it won't work if the key changes in the middle of a
 
           title.
 
disc: the disc key is first cracked, then all title keys can
 
          be decrypted instantly, which allows us to check them often.
 
key: the
 
          same as "disc" if you don't have a file with player keys at
 
          compilation time. If you do, the decryption of the disc key will be
 
          faster with this method. It is the one that was used by libcss.
 
The
 
          default method is: key.
 
  
  Equalizer with 10 bands
+
  GNU TLS transport layer security (gnutls)
       --equalizer-preset={flat,classical,club,dance,fullbass,fullbasstreble,fulltreble,headphones,largehall,live,party,pop,reggae,rock,ska,soft,softrock,techno}
+
       --gnutls-system-trust, --no-gnutls-system-trust
                                 Equalizer preset
+
                                Use system trust database
           Preset to use for the equalizer.
+
                                 (default enabled)
       --equalizer-bands=<string> Bands gain
+
          Trust the root certificates of Certificate Authorities stored in the
          Don't use presets, but manually specified bands. You need to provide
+
           operating system trust database to authenticate TLS sessions.
          10 values between -20dB and 20dB, separated by spaces, e.g. "0 2 4 2
+
       --gnutls-dir-trust=<string>  
           0 -2 -4 -2 0".
+
                                Trust directory
       --equalizer-2pass, --no-equalizer-2pass
+
           Trust directory
                                 Two pass (default disabled)
+
       --gnutls-priorities={PERFORMANCE,NORMAL,SECURE128,SECURE256,EXPORT}
           Filter the audio twice. This provides a more intense effect. (default
+
                                 TLS cipher priorities
           disabled)
+
           Ciphers, key exchange methods, hash functions and compression methods
      --equalizer-preamp=<float> Global gain
+
           can be selected. Refer to GNU TLS documentation for detailed syntax.
          Set the global gain in dB (-20 ... 20).
 
  
  Erase video filter
+
  Submission of played songs to last.fm (audioscrobbler)
       --erase-mask=<string>     Image mask
+
       --lastfm-username=<string> Username
           Image mask. Pixels with an alpha value greater than 50% will be
+
           The username of your last.fm account
          erased.
+
       --lastfm-password=<string> Password
       --erase-x=<integer>       X coordinate
+
           The password of your last.fm account
           X coordinate of the mask.
+
       --scrobbler-url=<string>   Scrobbler URL
       --erase-y=<integer>       Y coordinate
+
           The URL set for an alternative scrobbler engine
           Y coordinate of the mask.
 
  
  Extract RGB component video filter
+
  Folder meta data (folder)
       --extract-component={16711680 (Red), 65280 (Green), 255 (Blue)}
+
       --album-art-filename=<string>
                                 RGB component to extract
+
                                 Album art filename
           RGB component to extract. 0 for Red, 1 for Green and 2 for Blue.
+
           Filename to look for album art in current directory
  
  Fake video decoder
+
  Lua interpreter (lua)
       --fake-file=<string>       Image file
+
       --lua-intf=<string>       Lua interface
           Path of the image file for fake input.
+
           Lua interface module to load
       --fake-file-reload=<integer>
+
       --lua-config=<string>     Lua interface configuration
                                Reload image file
+
          Lua interface configuration string. Format is: '["<interface module
           Reload image file every n seconds.
+
           name>"] = { <option> = <value>, ...}, ...'.
       --fake-width=<integer>     Video width
+
  Lua HTTP:
           Output video width.
+
       --http-password=<string>   Password
       --fake-height=<integer>   Video height
+
           A single password restricts access to this interface.
           Output video height.
+
       --http-src=<string>       Source directory
       --fake-keep-ar, --no-fake-keep-ar
+
           Source directory
                                 Keep aspect ratio (default disabled)
+
       --http-index, --no-http-index
           Consider width and height as maximum values. (default disabled)
+
                                Directory index
       --fake-aspect-ratio=<string>
+
                                 (default disabled)
                                Background aspect ratio
+
           Allow to build directory index
           Aspect ratio of the image file (4:3, 16:9). Default is square pixels.
+
  Lua CLI:
       --fake-deinterlace, --no-fake-deinterlace
+
      --rc-host=<string>        TCP command input
                                 Deinterlace video (default disabled)
+
          Accept commands over a socket rather than stdin. You can set the
           Deinterlace the image after loading it. (default disabled)
+
          address and port the interface will bind to.
       --fake-deinterlace-module={deinterlace,ffmpeg-deinterlace}
+
       --cli-host=<string>       CLI input
                                Deinterlace module
+
          Accept commands from this source. The CLI defaults to stdin
           Deinterlace module to use.
+
          ("*console"), but can also bind to a plain TCP socket
       --fake-chroma=<string>    Chroma used.
+
           ("localhost:4212") or use the telnet protocol
           Force use of a specific chroma for output. Default is I420.
+
          ("telnet://0.0.0.0:4212")
 +
  Lua Telnet:
 +
      --telnet-host=<string>    Host
 +
          This is the host on which the interface will listen. It defaults to
 +
          all network interfaces (0.0.0.0). If you want this interface to be
 +
          available only on the local machine, enter "127.0.0.1".
 +
      --telnet-port=<integer [1 .. 65535]>
 +
                                Port
 +
          This is the TCP port on which this interface will listen. It defaults
 +
          to 4212.
 +
       --telnet-password=<string> Password
 +
          A single password restricts access to this interface.
 +
      --lua-sd=<string>         
 +
 
 +
File logger (file)
 +
      --file-logging, --no-file-logging
 +
                                Log to file
 +
                                 (default disabled)
 +
           Log all VLC messages to a text file.
 +
       --logfile=<string>        Log filename
 +
          Specify the log filename.
 +
      --logmode={text,html}     Log format
 +
           Specify the logging format.
 +
       --log-verbose={-1 (Default), 0 (Info), 1 (Error), 2 (Warning), 3 (Debug)}
 +
                                Verbosity
 +
           Select the logging verbosity or default to use the same verbosity
 +
          given by --verbose.
  
  Freetype2 font renderer
+
  Console logger (console)
      --freetype-font=<string>  Font
+
  -q, --quiet, --no-quiet        Be quiet
          Filename for the font you want to use
+
                                 (default disabled)
      --freetype-fontsize=<integer>
+
           Turn off all messages on the console.
                                Font size in pixels
 
          This is the default size of the fonts that will be rendered on the
 
          video. If set to something different than 0 this option will override
 
          the relative font size.
 
      --freetype-opacity=<integer [0 .. 255]>
 
                                Opacity
 
          The opacity (inverse of transparency) of the text that will be
 
          rendered on the video. 0 = transparent, 255 = totally opaque.
 
      --freetype-color={0 (Black), 8421504 (Gray), 12632256 (Silver), 16777215 (White), 8388608 (Maroon), 16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 8421376 (Olive), 32768 (Green), 32896 (Teal), 65280 (Lime), 8388736 (Purple), 128 (Navy), 255 (Blue), 65535 (Aqua)}
 
                                Text default color
 
          The color of the text that will be rendered on the video. This must
 
          be an hexadecimal (like HTML colors). The first two chars are for
 
          red, then green, then blue. #000000 = black, #FF0000 = red, #00FF00 =
 
          green, #FFFF00 = yellow (red + green), #FFFFFF = white
 
      --freetype-rel-fontsize={20 (Smaller), 18 (Small), 16 (Normal), 12 (Large), 6 (Larger)}
 
                                Relative font size
 
          This is the relative default size of the fonts that will be rendered
 
          on the video. If absolute font size is set, relative size will be
 
          overriden.
 
      --freetype-effect={1 (Background), 2 (Outline), 3 (Fat Outline)}
 
                                Font Effect
 
          It is possible to apply effects to the rendered text to improve its
 
          readability.
 
      --freetype-yuvp, --no-freetype-yuvp
 
                                 Use YUVP renderer (default disabled)
 
           This renders the font using "paletized YUV". This option is only
 
          needed if you want to encode into DVB subtitles (default disabled)
 
  
  Gaussian blur video filter
+
  Secrets are stored on a file without any encryption (file)
       --gaussianblur-sigma=<float>
+
       --keystore-file=<string>  
                                Gaussian's std deviation
 
          Gaussian's standard deviation. The bluring will take into account
 
          pixels up to 3*sigma away in any direction.
 
  
  Mouse gestures control interface
+
  Skinnable Interface (skins2)
       --gestures-threshold=<integer>
+
      --skins2-last=<string>    Skin to use
                                 Motion threshold (10-100)
+
          Path to the skin to use.
           Amount of movement required for a mouse gesture to be recorded.
+
       --skins2-config=<string>   Config of last used skin
       --gestures-button={left,middle,right}
+
          Windows configuration of the last skin used. This option is updated
                                 Trigger button
+
          automatically, do not touch it.
           Trigger button for mouse gestures.
+
      --skins2-systray, --no-skins2-systray
 +
                                Systray icon
 +
                                 (default enabled)
 +
          Show a systray icon for VLC
 +
      --skins2-taskbar, --no-skins2-taskbar
 +
                                Show VLC on the taskbar
 +
                                (default enabled)
 +
           Show VLC on the taskbar
 +
      --skins2-transparency, --no-skins2-transparency
 +
                                Enable transparency effects
 +
                                (default disabled)
 +
          You can disable all transparency effects if you want. This is mainly
 +
          useful when moving windows does not behave correctly.
 +
       --skinned-playlist, --no-skinned-playlist
 +
                                Use a skinned playlist
 +
                                (default enabled)
 +
          Use a skinned playlist
 +
      --skinned-video, --no-skinned-video
 +
                                 Display video in a skinned window if any
 +
                                (default enabled)
 +
          When set to 'no', this parameter is intended to give old skins a
 +
           chance to play back video even though no video tag is implemented
  
  GnuTLS transport layer security
+
  Qt interface (qt)
       --gnutls-cache-timeout=<integer>
+
      --qt-minimal-view, --no-qt-minimal-view
                                 Expiration time for resumed TLS sessions
+
                                Start in minimal view (without menus)
           It is possible to cache the resumed TLS sessions. This is the
+
                                (default disabled)
           expiration time of the sessions stored in this cache, in seconds.
+
          Start in minimal view (without menus)
       --gnutls-cache-size=<integer>
+
       --qt-system-tray, --no-qt-system-tray
                                 Number of resumed TLS sessions
+
                                Systray icon
           This is the maximum number of resumed TLS sessions that the cache
+
                                (default enabled)
           will hold.
+
          Show an icon in the systray allowing you to control VLC media player
 
+
          for basic actions.
Goom effect
+
      --qt-notification={0 (Never), 1 (When minimized), 2 (Always)}
       --goom-width=<integer>     Goom display width
+
                                 Show notification popup on track change
           This allows you to set the resolution of the Goom display (bigger
+
          Show a notification popup with the artist and track name when the
           resolution will be prettier but more CPU intensive).
+
           current playlist item changes, when VLC is minimized or hidden.
       --goom-height=<integer>    Goom display height
+
      --qt-start-minimized, --no-qt-start-minimized
           This allows you to set the resolution of the Goom display (bigger
+
                                Start VLC with only a systray icon
           resolution will be prettier but more CPU intensive).
+
                                (default disabled)
       --goom-speed=<integer>     Goom animation speed
+
          VLC will start with just an icon in your taskbar.
           This allows you to set the animation speed (between 1 and 10,
+
      --qt-pause-minimized, --no-qt-pause-minimized
           defaults to 6).
+
                                Pause the video playback when minimized
 
+
                                (default disabled)
Gradient video filter
+
           With this option enabled, the playback will be automatically paused
       --gradient-mode={gradient,edge,hough}
+
          when minimizing the window.
                                 Distort mode
+
       --qt-opacity=<float [0.100000 .. 1.000000]>  
           Distort mode, one of "gradient", "edge" and "hough".
+
                                 Windows opacity between 0.1 and 1
       --gradient-type=<integer [0 .. 1]>
+
           Sets the windows opacity between 0.1 and 1 for main interface,
                                 Gradient image type
+
           playlist and extended panel. This option only works with Windows and
           Gradient image type (0 or 1). 0 will turn the image to white while 1
+
          X11 with composite extensions.
           will keep colors.
+
       --qt-fs-opacity=<float [0.100000 .. 1.000000]>  
       --gradient-cartoon, --no-gradient-cartoon
+
                                Fullscreen controller opacity between 0.1 and
                                 Apply cartoon effect (default enabled)
+
                                1
           Apply cartoon effect. It is only used by "gradient" and "edge".
+
           Sets the fullscreen controller opacity between 0.1 and 1 for main
          (default enabled)
+
          interface, playlist and extended panel. This option only works with
 
+
          Windows and X11 with composite extensions.
H264 video demuxer
+
      --qt-video-autoresize, --no-qt-video-autoresize
       --h264-fps=<float>         Frames per Second
+
                                Resize interface to the native video size
           Desired frame rate for the H264 stream.
+
                                (default enabled)
 
+
           You have two choices:  - The interface will resize to the native
Headphone virtual spatialization effect
+
          video size  - The video will fit to the interface size  By default,
This effect gives you the feeling that you are standing in a room with a complete 7.1 speaker set when using only a headphone, providing a more realistic sound experience. It should also be more comfortable and less tiring when listening to music for long periods of time.
+
          interface resize to the native video size.
It works with any source format from mono to 7.1.
+
       --qt-name-in-title, --no-qt-name-in-title
       --headphone-dim=<integer> Characteristic dimension
+
                                Show playing item name in window title
           Distance between front left speaker and listener in meters.
+
                                (default enabled)
       --headphone-compensate, --no-headphone-compensate
+
           Show the name of the song or video in the controller window title.
                                 Compensate delay (default disabled)
+
      --qt-fs-controller, --no-qt-fs-controller
           The delay which is introduced by the physical algorithm may sometimes
+
                                Show a controller in fullscreen mode
           be disturbing for the synchronization between lips-movement and
+
                                (default enabled)
           speech. In case, turn this on to compensate. (default disabled)
+
           Show a controller in fullscreen mode
       --headphone-dolby, --no-headphone-dolby
+
      --qt-recentplay, --no-qt-recentplay
                                 No decoding of Dolby Surround (default
+
                                Save the recently played items in the menu
                                 disabled)
+
                                (default enabled)
           Dolby Surround encoded streams won't be decoded before being
+
          Save the recently played items in the menu
          processed by this filter. Enabling this setting is not recommended.
+
       --qt-recentplay-filter=<string>  
           (default disabled)
+
                                List of words separated by | to filter
 +
           Regular expression used to filter the recent items played in the
 +
           player.
 +
       --qt-continue={0 (Never), 1 (Ask), 2 (Always)}  
 +
                                 Continue playback?
 +
           Continue playback?
 +
      --qt-updates-notif, --no-qt-updates-notif
 +
                                Activate the updates availability notification
 +
                                (default enabled)
 +
          Activate the automatic notification of new versions of the software.
 +
          It runs once every two weeks.
 +
       --qt-updates-days=<integer [0 .. 180]>  
 +
                                 Number of days between two update checks
 +
           Number of days between two update checks
 +
      --qt-disable-volume-keys, --no-qt-disable-volume-keys
 +
                                Ignore keyboard volume buttons.
 +
                                (default enabled)
 +
          With this option checked, the volume up, volume down and mute buttons
 +
          on your keyboard will always change your system volume. With this
 +
          option unchecked, the volume buttons will change VLC's volume when
 +
          VLC is selected and change the system volume when VLC is not
 +
           selected.
 +
       --qt-embedded-open, --no-qt-embedded-open
 +
                                Embed the file browser in open dialog
 +
                                 (default disabled)
 +
          Embed the file browser in open dialog
 +
      --qt-advanced-pref, --no-qt-advanced-pref
 +
                                Show advanced preferences over simple ones
 +
                                (default disabled)
 +
           Show advanced preferences and not simple preferences when opening the
 +
          preferences dialog.
 +
      --qt-error-dialogs, --no-qt-error-dialogs
 +
                                Show unimportant error and warnings dialogs
 +
                                (default enabled)
 +
          Show unimportant error and warnings dialogs
 +
       --qt-slider-colours=<string>  
 +
                                Define the colors of the volume slider
 +
           Define the colors of the volume slider By specifying the 12 numbers
 +
          separated by a ';' Default is
 +
          '255;255;255;20;226;20;255;176;15;235;30;20' An alternative can be
 +
          '30;30;50;40;40;100;50;50;160;150;150;255'
 +
      --qt-privacy-ask, --no-qt-privacy-ask
 +
                                Ask for network policy at start
 +
                                (default disabled)
 +
          Ask for network policy at start
 +
       --qt-fullscreen-screennumber=<integer>  
 +
                                Define which screen fullscreen goes
 +
          Screennumber of fullscreen, instead of same screen where interface
 +
           is.
 +
       --qt-autoload-extensions, --no-qt-autoload-extensions
 +
                                Load extensions on startup
 +
                                 (default enabled)
 +
           Automatically load the extensions module on startup.
 +
      --qt-bgcone, --no-qt-bgcone
 +
                                Display background cone or art
 +
                                (default enabled)
 +
           Display background cone or current album art when not playing. Can be
 +
           disabled to prevent burning screen.
 +
      --qt-bgcone-expands, --no-qt-bgcone-expands
 +
                                Expanding background cone or art
 +
                                (default disabled)
 +
          Background art fits window's size.
 +
       --qt-icon-change, --no-qt-icon-change
 +
                                Allow automatic icon changes
 +
                                 (default enabled)
 +
          This option allows the interface to change its icon on various
 +
          occasions.
 +
      --qt-max-volume=<integer [60 .. 300]>
 +
                                 Maximum Volume displayed
 +
           Maximum Volume displayed
 +
      --qt-fs-sensitivity=<integer [0 .. 4000]>
 +
                                Fullscreen controller mouse sensitivity
 +
           Fullscreen controller mouse sensitivity
 +
      --qt-auto-raise={0 (Never), 1 (Video), 2 (Audio), 3 (Audio/Video)}
 +
                                When to raise the interface
 +
          This option allows the interface to be raised automatically when a
 +
          video/audio playback starts, or never.
  
  HTTP remote control interface
+
  VC1 video demuxer (vc1)
       --http-host=<string>      Host address
+
       --vc1-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
          Address and port the HTTP interface will listen on. It defaults to
+
                                 Frames per Second
          all network interfaces (0.0.0.0). If you want the HTTP interface to
+
           Desired frame rate for the VC-1 stream.
          be available only on the local machine, enter 127.0.0.1
 
      --http-src=<string>        Source directory
 
          Source directory
 
      --http-handlers=<string>   Handlers
 
          List of handler extensions and executable paths (for instance:
 
          php=/usr/bin/php,pl=/usr/bin/perl).
 
      --http-album-art, --no-http-album-art
 
                                 Export album art as /art. (default disabled)
 
           Allow exporting album art for current playlist items at the /art and
 
          /art?id=<id> URLs. (default disabled)
 
  HTTP SSL:
 
      --http-intf-cert=<string>  Certificate file
 
          HTTP interface x509 PEM certificate file (enables SSL).
 
      --http-intf-key=<string>  Private key file
 
          HTTP interface x509 PEM private key file.
 
      --http-intf-ca=<string>    Root CA file
 
          HTTP interface x509 PEM trusted root CA certificates file.
 
      --http-intf-crl=<string>  CRL file
 
          HTTP interace Certificates Revocation List file.
 
  
  Image video output
+
  MPEG Transport Stream demuxer (ts)
       --image-out-format={png,jpeg}
+
       --ts-standard={auto,mpeg,dvb,arib,atsc,tdmb}  
                                 Image format
+
                                 Digital TV Standard
           Format of the output images (png or jpg).
+
           Selects mode for digital TV standard. This feature affects EPG
       --image-out-width=<integer>
+
          information and subtitles.
                                 Image width
+
       --ts-extra-pmt=<string>   Extra PMT
           You can enforce the image width. By default (-1) VLC will adapt to
+
          Allows a user to specify an extra pmt
           the video characteristics.
+
          (pmt_pid=pid:stream_type[,...]).
       --image-out-height=<integer>
+
      --ts-trust-pcr, --no-ts-trust-pcr
                                Image height
+
                                Trust in-stream PCR
           You can enforce the image height. By default (-1) VLC will adapt to
+
                                 (default enabled)
           the video characteristics.
+
           Use the stream PCR as a reference.
       --image-out-ratio=<integer>
+
      --ts-es-id-pid, --no-ts-es-id-pid
                                Recording ratio
+
                                Set id of ES to PID
           Ratio of images to record. 3 means that one image out of three is
+
                                (default enabled)
           recorded.
+
          Set the internal ID of each elementary stream handled by VLC to the
       --image-out-prefix=<string>
+
           same value as the PID in the TS stream, instead of 1, 2, 3, etc.
                                Filename prefix
+
          Useful to do '#duplicate{..., select="es=<pid>"}'.
           Prefix of the output images filenames. Output filenames will have the
+
       --ts-csa-ck=<string>       CSA Key
           "prefixNUMBER.format" form.
+
           CSA encryption key. This must be a 16 char string (8 hexadecimal
       --image-out-replace, --no-image-out-replace
+
           bytes).
                                 Always write to the same file (default
+
       --ts-csa2-ck=<string>     Second CSA Key
                                disabled)
+
           The even CSA encryption key. This must be a 16 char string (8
           Always write to the same file instead of creating one file per image.
+
           hexadecimal bytes).
           In this case, the number is not appended to the filename. (default
+
       --ts-csa-pkt=<integer>     Packet size in bytes to decrypt
           disabled)
+
           Specify the size of the TS packet to decrypt. The decryption routines
 +
          subtract the TS-header from the value before decrypting.
 +
      --ts-split-es, --no-ts-split-es
 +
                                Separate sub-streams
 +
                                (default enabled)
 +
           Separate teletex/dvbs pages into independent ES. It can be useful to
 +
          turn off this option when using stream output.
 +
       --ts-seek-percent, --no-ts-seek-percent
 +
                                Seek based on percent not time
 +
                                 (default disabled)
 +
           Seek and position based on a percent byte position, not a PCR
 +
          generated time position. If seeking doesn't work property, turn on
 +
           this option.
 +
      --ts-cc-check, --no-ts-cc-check
 +
                                Check packets continuity counter
 +
                                (default enabled)
 +
          Detect discontinuities and drop packet duplicates. (bluRay sources
 +
           are known broken and have false positives).
  
  Kate text subtitles decoder
+
  Text subtitle parser (subtitle)
       --kate-formatted, --no-kate-formatted
+
      --sub-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
                                 Formatted Subtitles (default enabled)
+
                                Frames per Second
           Kate streams allow for text formatting. VLC partly implements this,
+
          Override the normal frames per second settings. This will only work
           but you can choose to disable all formatting. (default enabled)
+
          with MicroDVD and SubRIP (SRT) subtitles.
 +
       --sub-delay=<integer>      Subtitle delay
 +
          Apply a delay to all subtitles (in 1/10s, eg 100 means 10s).
 +
      --sub-type={auto,microdvd,subrip,subviewer,ssa1,ssa2-4,ass,vplayer,sami,dvdsubtitle,mpl2,aqt,pjs,mpsub,jacosub,psb,realtext,dks,subviewer1,sbv}
 +
                                 Subtitle format
 +
           Force the subtiles format. Selecting "auto" means autodetection and
 +
           should always work.
 +
      --sub-description=<string> Subtitle description
 +
          Override the default track description.
  
  RTP/RTSP/SDP demuxer (using Live555)
+
  Raw video demuxer (rawvid)
       --rtsp-tcp, --no-rtsp-tcp  Use RTP over RTSP (TCP) (default disabled)
+
       --rawvid-fps=<string>     Frames per Second
          Use RTP over RTSP (TCP) (default disabled)
+
           This is the desired frame rate when playing raw video streams. In the
      --rtp-client-port=<integer>
+
           form 30000/1001 or 29.97
                                Client port
+
       --rawvid-width=<integer>   Width
           Port to use for the RTP source of the session
+
           This specifies the width in pixels of the raw video stream.
      --rtsp-mcast, --no-rtsp-mcast
+
       --rawvid-height=<integer> Height
                                Force multicast RTP via RTSP (default
+
           This specifies the height in pixels of the raw video stream.
                                disabled)
+
       --rawvid-chroma=<string>   Force chroma (Use carefully)
           Force multicast RTP via RTSP (default disabled)
+
           Force chroma. This is a four character string.
       --rtsp-http, --no-rtsp-http
+
       --rawvid-aspect-ratio=<string>  
                                Tunnel RTSP and RTP over HTTP (default
+
                                Aspect ratio
                                disabled)
+
           Aspect ratio (4:3, 16:9). Default assumes square pixels.
          Tunnel RTSP and RTP over HTTP (default disabled)
 
      --rtsp-http-port=<integer> HTTP tunnel port
 
           Port to use for tunneling the RTSP/RTP over HTTP.
 
       --rtsp-caching=<integer>   Caching value (ms)
 
           Allows you to modify the default caching value for RTSP streams. This
 
          value should be set in millisecond units.
 
      --rtsp-kasenna, --no-rtsp-kasenna
 
                                Kasenna RTSP dialect (default disabled)
 
          Kasenna servers use an old and unstandard dialect of RTSP. When you
 
          set this parameter, VLC will try this dialect for communication. In
 
          this mode you cannot connect to normal RTSP servers. (default
 
          disabled)
 
       --rtsp-user=<string>       RTSP user name
 
           Allows you to modify the user name that will be used for
 
          authenticating the connection.
 
       --rtsp-pwd=<string>       RTSP password
 
          Allows you to modify the password that will be used for the
 
           connection.
 
  
  File logging
+
  DV (Digital Video) demuxer (rawdv)
       --logfile=<string>        Log filename
+
       --rawdv-hurry-up, --no-rawdv-hurry-up
          Specify the log filename.
+
                                Hurry up
      --logmode={text,html}      Log format
+
                                (default disabled)
          Specify the log format. Available choices are "text" (default) and
+
           The demuxer will advance timestamps if the input can't keep up with
           "html".
+
           the rate.
      --rrd-file=<string>        RRD output file
 
           Output data for RRDTool in this file.
 
  
  Logo sub filter
+
  Raw audio demuxer (rawaud)
       --logo-file=<string>       Logo filenames
+
       --rawaud-channels=<integer>  
           Full path of the image files to use. Format is <image>[,<delay in
+
                                Audio channels
          ms>[,<alpha>]][;<image>[,<delay>[,<alpha>]]][;...]. If you only have
+
           Audio channels in input stream. Numeric value >0. Default is 2.
          one file, simply enter its filename.
+
       --rawaud-samplerate=<integer>  
       --logo-x=<integer>         X coordinate
+
                                Audio samplerate (Hz)
           X coordinate of the logo. You can move the logo by left-clicking it.
+
           Audio sample rate in Hertz. Default is 48000 Hz.
       --logo-y=<integer>         Y coordinate
+
       --rawaud-fourcc=<string>   FOURCC code of raw input format
           Y coordinate of the logo. You can move the logo by left-clicking it.
+
           FOURCC code of the raw input format. This is a four character string.
       --logo-delay=<integer>    Logo individual image time in ms
+
       --rawaud-lang=<string>    Forces the audio language
           Individual image display time of 0 - 60000 ms.
+
           Forces the audio language for the output mux. Three letter ISO639
      --logo-repeat=<integer>    Logo animation # of loops
+
           code. Default is 'eng'.
          Number of loops for the logo animation.-1 = continuous, 0 = disabled
 
      --logo-transparency=<integer [0 .. 255]>
 
                                Transparency of the logo
 
           Logo transparency value (from 0 for full transparency to 255 for full
 
          opacity).
 
      --logo-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}
 
                                Logo position
 
          Enforce the logo position on the video (0=center, 1=left, 2=right,
 
          4=top, 8=bottom, you can also use combinations of these values, eg 6
 
          = top-right).
 
  
  Fetch artwork using lua scripts
+
  MPEG-PS demuxer (ps)
       --lua-intf=<string>        Lua interface
+
       --ps-trust-timestamps, --no-ps-trust-timestamps
           Lua interface module to load
+
                                Trust MPEG timestamps
      --lua-config=<string>      Lua interface configuration
+
                                (default enabled)
           Lua interface configuration string. Format is: '["<interface module
+
           Normally we use the timestamps of the MPEG files to calculate
           name>"] = { <option> = <value>, ...}, ...'.
+
           position and duration. However sometimes this might not be usable.
 +
           Disable this option to calculate from the bitrate instead.
  
  MPEG-4 video demuxer
+
  Playlist (playlist)
       --m4v-fps=<float>          Frames per Second
+
       --playlist-skip-ads, --no-playlist-skip-ads
           This is the desired frame rate when playing MPEG4 video elementary
+
                                Skip ads
           streams.
+
                                (default enabled)
 +
          Use playlist options usually used to prevent ads skipping to detect
 +
           ads and prevent adding them to the playlist.
 +
      --shoutcast-show-adult, --no-shoutcast-show-adult
 +
                                Show shoutcast adult content
 +
                                (default disabled)
 +
           Show NC17 rated video streams when using shoutcast video playlists.
  
  Marquee display
+
  MP4 stream demuxer (mp4)
      --marq-marquee=<string>    Text
 
          Marquee text to display. (Available format strings: Time related: %Y
 
          = year, %m = month, %d = day, %H = hour, %M = minute, %S = second,
 
          ... Meta data related: $a = artist, $b = album, $c = copyright, $d =
 
          description, $e = encoded by, $g = genre, $l = language, $n = track
 
          num, $p = now playing, $r = rating, $s = subtitles language, $t =
 
          title, $u = url, $A = date, $B = audio bitrate (in kb/s), $C =
 
          chapter,$D = duration, $F = full name with path, $I = title, $L =
 
          time left, $N = name, $O = audio language, $P = position (in %), $R =
 
          rate, $S = audio sample rate (in kHz), $T = time, $U = publisher, $V
 
          = volume, $_ = new line)
 
  Position:
 
      --marq-x=<integer>        X offset
 
          X offset, from the left screen edge.
 
      --marq-y=<integer>        Y offset
 
          Y offset, down from the top.
 
      --marq-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}
 
                                Marquee position
 
          You can enforce the marquee position on the video (0=center, 1=left,
 
          2=right, 4=top, 8=bottom, you can also use combinations of these
 
          values, eg 6 = top-right).
 
  Font:
 
      --marq-opacity=<integer [0 .. 255]>
 
                                Opacity
 
          Opacity (inverse of transparency) of overlayed text. 0 = transparent,
 
          255 = totally opaque.
 
      --marq-color={-268435456 (Default), 0 (Black), 8421504 (Gray), 12632256 (Silver), 16777215 (White), 8388608 (Maroon), 16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 8421376 (Olive), 32768 (Green), 32896 (Teal), 65280 (Lime), 8388736 (Purple), 128 (Navy), 255 (Blue), 65535 (Aqua)}
 
                                Color
 
          Color of the text that will be rendered on the video. This must be an
 
          hexadecimal (like HTML colors). The first two chars are for red, then
 
          green, then blue. #000000 = black, #FF0000 = red, #00FF00 = green,
 
          #FFFF00 = yellow (red + green), #FFFFFF = white
 
      --marq-size=<integer>      Font size, pixels
 
          Font size, in pixels. Default is -1 (use default font size).
 
  Misc:
 
      --marq-timeout=<integer>  Timeout
 
          Number of milliseconds the marquee must remain displayed. Default
 
          value is 0 (remains forever).
 
      --marq-refresh=<integer>  Refresh period in ms
 
          Number of milliseconds between string updates. This is mainly usefull
 
          when using meta data or time format string sequences.
 
  
  M-JPEG camera demuxer
+
  Hacks
       --mjpeg-fps=<float>        Frames per Second
+
       --mp4-m4a-audioonly, --no-mp4-m4a-audioonly
          This is the desired frame rate when playing MJPEG from a file. Use 0
+
                                M4A audio only
          (this is the default value) for a live stream (from a camera).
+
                                (default disabled)
 +
          Ignore non audio tracks from iTunes audio files
  
  Matroska stream demuxer
+
  MOD demuxer (libmodplug) (mod)
      --mkv-use-ordered-chapters, --no-mkv-use-ordered-chapters
+
       --mod-noisereduction, --no-mod-noisereduction  
                                Ordered chapters (default enabled)
+
                                 Noise reduction
          Play ordered chapters as specified in the segment. (default enabled)
+
                                (default enabled)
      --mkv-use-chapter-codec, --no-mkv-use-chapter-codec
+
           Enable noise reduction algorithm.
                                Chapter codecs (default enabled)
+
       --mod-reverb, --no-mod-reverb  
          Use chapter codecs found in the segment. (default enabled)
+
                                 Reverb
      --mkv-preload-local-dir, --no-mkv-preload-local-dir
+
                                (default disabled)
                                Preload Directory (default enabled)
+
           Enable reverberation
          Preload matroska files from the same family in the same directory
+
       --mod-reverb-level=<integer [0 .. 100]>  
          (not good for broken files). (default enabled)
 
      --mkv-seek-percent, --no-mkv-seek-percent
 
                                Seek based on percent not time (default
 
                                disabled)
 
          Seek based on percent not time. (default disabled)
 
      --mkv-use-dummy, --no-mkv-use-dummy
 
                                Dummy Elements (default disabled)
 
          Read and discard unknown EBML elements (not good for broken files).
 
          (default disabled)
 
 
 
MOD demuxer (libmodplug)
 
       --mod-noisereduction, --no-mod-noisereduction
 
                                 Noise reduction (default enabled)
 
           Enable noise reduction algorithm. (default enabled)
 
       --mod-reverb, --no-mod-reverb
 
                                 Reverb (default disabled)
 
           Enable reverberation (default disabled)
 
       --mod-reverb-level=<integer [0 .. 100]>
 
 
                                 Reverberation level
 
                                 Reverberation level
 
           Reverberation level (from 0 to 100, default value is 0).
 
           Reverberation level (from 0 to 100, default value is 0).
       --mod-reverb-delay=<integer [0 .. 1000]>
+
       --mod-reverb-delay=<integer [0 .. 1000]>  
 
                                 Reverberation delay
 
                                 Reverberation delay
           Reverberation delay, in ms. Usual values are from to 40 to 200ms.
+
           Reverberation delay, in ms. Usual values are from 40 to 200ms.
       --mod-megabass, --no-mod-megabass
+
       --mod-megabass, --no-mod-megabass  
                                 Mega bass (default disabled)
+
                                 Mega bass
           Enable megabass mode (default disabled)
+
                                (default disabled)
       --mod-megabass-level=<integer [0 .. 100]>
+
           Enable megabass mode
 +
       --mod-megabass-level=<integer [0 .. 100]>  
 
                                 Mega bass level
 
                                 Mega bass level
 
           Megabass mode level (from 0 to 100, default value is 0).
 
           Megabass mode level (from 0 to 100, default value is 0).
       --mod-megabass-range=<integer [10 .. 100]>
+
       --mod-megabass-range=<integer [10 .. 100]>  
 
                                 Mega bass cutoff
 
                                 Mega bass cutoff
 
           Megabass mode cutoff frequency, in Hz. This is the maximum frequency
 
           Megabass mode cutoff frequency, in Hz. This is the maximum frequency
 
           for which the megabass effect applies. Valid values are from 10 to
 
           for which the megabass effect applies. Valid values are from 10 to
 
           100 Hz.
 
           100 Hz.
       --mod-surround, --no-mod-surround
+
       --mod-surround, --no-mod-surround  
                                 Surround (default disabled)
+
                                 Surround
           Surround (default disabled)
+
                                (default disabled)
       --mod-surround-level=<integer [0 .. 100]>
+
           Surround
 +
       --mod-surround-level=<integer [0 .. 100]>  
 
                                 Surround level
 
                                 Surround level
 
           Surround effect level (from 0 to 100, default value is 0).
 
           Surround effect level (from 0 to 100, default value is 0).
       --mod-surround-delay=<integer [0 .. 1000]>
+
       --mod-surround-delay=<integer [0 .. 1000]>  
 
                                 Surround delay (ms)
 
                                 Surround delay (ms)
 
           Surround delay, in ms. Usual values are from 5 to 40 ms.
 
           Surround delay, in ms. Usual values are from 5 to 40 ms.
  
  Audio filter for stereo to mono conversion
+
  Matroska stream demuxer (mkv)
       --sout-mono-downmix, --no-sout-mono-downmix
+
       --mkv-use-ordered-chapters, --no-mkv-use-ordered-chapters
                                 Use downmix algorithm (default enabled)
+
                                Respect ordered chapters
           This option selects a stereo to mono downmix algorithm that is used
+
                                 (default enabled)
           in the headphone channel mixer. It gives the effect of standing in a
+
           Play chapters in the order specified in the segment.
           room full of speakers. (default enabled)
+
      --mkv-use-chapter-codec, --no-mkv-use-chapter-codec
       --sout-mono-channel={0 (Left), 1 (Right), 2 (Left rear), 4 (Right rear), 8 (Center), 5 (Left front)}
+
                                Chapter codecs
                                 Select channel to keep
+
                                (default enabled)
           This option silences all other channels except the selected channel.
+
           Use chapter codecs found in the segment.
           Choose one from (0=left, 1=right, 2=rear left, 3=rear right,
+
      --mkv-preload-local-dir, --no-mkv-preload-local-dir
           4=center, 5=left front)
+
                                Preload MKV files in the same directory
 +
                                (default enabled)
 +
          Preload matroska files in the same directory to find linked segments
 +
           (not good for broken files).
 +
       --mkv-seek-percent, --no-mkv-seek-percent
 +
                                Seek based on percent not time
 +
                                (default disabled)
 +
          Seek based on percent not time.
 +
      --mkv-use-dummy, --no-mkv-use-dummy
 +
                                Dummy Elements
 +
                                (default disabled)
 +
          Read and discard unknown EBML elements (not good for broken files).
 +
      --mkv-preload-clusters, --no-mkv-preload-clusters
 +
                                Preload clusters
 +
                                (default disabled)
 +
          Find all cluster positions by jumping cluster-to-cluster before
 +
          playback
 +
 
 +
M-JPEG camera demuxer (mjpeg)
 +
      --mjpeg-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                 Frames per Second
 +
           This is the desired frame rate when playing MJPEG from a file. Use 0
 +
           (this is the default value) for a live stream (from a camera).
 +
 
 +
Image demuxer (image)
 +
      --image-id=<integer>      ES ID
 +
          Set the ID of the elementary stream
 +
      --image-group=<integer>    Group
 +
          Set the group of the elementary stream
 +
      --image-decode, --no-image-decode
 +
                                Decode
 +
                                (default enabled)
 +
          Decode at the demuxer stage
 +
      --image-chroma=<string>    Forced chroma
 +
          If non empty and image-decode is true, the image will be converted to
 +
          the specified chroma.
 +
      --image-duration=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                Duration in seconds
 +
          Duration in seconds before simulating an end of file. A negative
 +
           value means an unlimited play time.
 +
      --image-fps=<string>      Frame rate
 +
          Frame rate of the elementary stream produced.
 +
      --image-realtime, --no-image-realtime
 +
                                Real-time
 +
                                (default disabled)
 +
          Use real-time mode suitable for being used as a master input and
 +
          real-time input slaves.
  
  Mosaic video sub filter
+
  H264 video demuxer (h26x)
       --mosaic-alpha=<integer [0 .. 255]>
+
       --h264-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
                                 Transparency
+
                                 Frames per Second
           Transparency of the mosaic foreground pictures. 0 means transparent,
+
           Desired frame rate for the stream.
          255 opaque (default).
+
       --hevc-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
       --mosaic-height=<integer> Height
+
                                Frames per Second
           Total height of the mosaic, in pixels.
+
           Desired frame rate for the stream.
       --mosaic-width=<integer>   Width
+
 
           Total width of the mosaic, in pixels.
+
MPEG-I/II/4 / A52 / DTS / MLP audio (es)
       --mosaic-align={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}
+
       --es-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
                                 Mosaic alignment
+
                                Frames per Second
           You can enforce the mosaic alignment on the video (0=center, 1=left,
+
           This is the frame rate used as a fallback when playing MPEG video
          2=right, 4=top, 8=bottom, you can also use combinations of these
+
          elementary streams.
          values, eg 6 = top-right).
+
 
       --mosaic-xoffset=<integer> Top left corner X coordinate
+
File dumper (demuxdump)
           X Coordinate of the top-left corner of the mosaic.
+
       --demuxdump-access={any,file,dummy,ftp,http,access_output_livehttp,access_output_shout,udp,stream_out_chromecast,avcodec,none}  
       --mosaic-yoffset=<integer> Top left corner Y coordinate
+
                                 Dump module
          Y Coordinate of the top-left corner of the mosaic.
+
           Dump module
      --mosaic-borderw=<integer> Border width
+
       --demuxdump-file=<string> Dump filename
           Width in pixels of the border between miniatures.
+
           Name of the file to which the raw stream will be dumped.
       --mosaic-borderh=<integer> Border height
+
       --demuxdump-append, --no-demuxdump-append
           Height in pixels of the border between miniatures.
+
                                Append to existing file
       --mosaic-position={0 (auto), 1 (fixed), 2 (offsets)}
+
                                (default disabled)
                                 Positioning method
+
           If the file already exists, it will not be overwritten.
           Positioning method for the mosaic. auto: automatically choose the
+
 
           best number of rows and columns. fixed: use the user-defined number
+
AVI demuxer (avi)
          of rows and columns. offsets: use the user-defined offsets for each
+
       --avi-interleaved, --no-avi-interleaved
           image.
+
                                Force interleaved method
       --mosaic-rows=<integer>   Number of rows
+
                                (default disabled)
          Number of image rows in the mosaic (only used if positionning method
+
           Force interleaved method
           is set to "fixed").
+
       --avi-index={0 (Ask for action), 1 (Always fix), 2 (Never fix), 3 (Fix when necessary)}  
       --mosaic-cols=<integer>    Number of columns
+
                                 Force index creation
          Number of image columns in the mosaic (only used if positionning
+
           Recreate a index for the AVI file. Use this if your AVI file is
           method is set to "fixed".
+
           damaged or incomplete (not seekable).
       --mosaic-keep-aspect-ratio, --no-mosaic-keep-aspect-ratio
+
 
                                 Keep aspect ratio (default disabled)
+
Unified adaptive streaming for DASH/HLS (adaptive)
           Keep the original aspect ratio when resizing mosaic elements.
+
      --adaptive-logic={,predictive,nearoptimal,rate,fixedrate,lowest,highest}
          (default disabled)
+
                                Adaptive Logic
       --mosaic-keep-picture, --no-mosaic-keep-picture
+
      --adaptive-maxwidth=<integer>
                                 Keep original size (default disabled)
+
                                Maximum device width
           Keep the original size of mosaic elements. (default disabled)
+
           Maximum device width
       --mosaic-order=<string>   Elements order
+
       --adaptive-maxheight=<integer>  
          You can enforce the order of the elements on the mosaic. You must
+
                                Maximum device height
          give a comma-separated list of picture ID(s).These IDs are assigned
+
           Maximum device height
           in the "mosaic-bridge" module.
+
       --adaptive-bw=<integer>    Fixed Bandwidth in KiB/s
       --mosaic-offsets=<string> Offsets in order
+
           Preferred bandwidth for non adaptive streams
          You can enforce the (x,y) offsets of the elements on the mosaic (only
+
       --adaptive-use-access, --no-adaptive-use-access
           used if positioning method is set to "offsets"). You must give a
+
                                Use regular HTTP modules
          comma-separated list of coordinates (eg: 10,10,150,10).
+
                                 (default disabled)
       --mosaic-delay=<integer>   Delay
+
           Connect using HTTP access instead of custom HTTP code
           Pictures coming from the mosaic elements will be delayed according to
+
 
          this value (in milliseconds). For high values you will need to raise
+
Direct3D9 adjust filter (d3d9_filters)
          caching at input.
+
       --contrast=<float [0.000000 .. 2.000000]>
</nowiki>
+
                                 Image contrast (0-2)
Part 2/2
+
           Set the image contrast, between 0 and 2. Defaults to 1.
<nowiki>
+
       --brightness=<float [0.000000 .. 2.000000]>  
Motion blur filter
+
                                Image brightness (0-2)
       --blur-factor=<integer [1 .. 127]>
+
           Set the image brightness, between 0 and 2. Defaults to 1.
                                 Blur factor (1-127)
+
       --hue=<float [-180.000000 .. 180.000000]>  
           The degree of blurring from 1 to 127.
+
                                Image hue (0-360)
 +
           Set the image hue, between 0 and 360. Defaults to 0.
 +
       --saturation=<float [0.000000 .. 3.000000]>  
 +
                                Image saturation (0-3)
 +
           Set the image saturation, between 0 and 3. Defaults to 1.
 +
       --gamma=<float [0.010000 .. 10.000000]>  
 +
                                 Image gamma (0-10)
 +
          Set the image gamma, between 0.01 and 10. Defaults to 1.
 +
      --brightness-threshold, --no-brightness-threshold
 +
                                Brightness threshold
 +
                                (default disabled)
 +
          When this mode is enabled, pixels will be shown as black or white.
 +
           The threshold value will be the brightness defined below.
  
  MSN Now-Playing
+
  Direct3D11 adjust filter (d3d11_filters)
       --msn-format=<string>     Title format string
+
       --contrast=<float [0.000000 .. 2.000000]>  
           Format of the string to send to MSN {0} Artist, {1} Title, {2} Album.
+
                                Image contrast (0-2)
           Defaults to "Artist - Title" ({0} - {1}).
+
           Set the image contrast, between 0 and 2. Defaults to 1.
 +
      --brightness=<float [0.000000 .. 2.000000]>
 +
                                Image brightness (0-2)
 +
          Set the image brightness, between 0 and 2. Defaults to 1.
 +
      --hue=<float [-180.000000 .. 180.000000]>
 +
                                Image hue (0-360)
 +
          Set the image hue, between 0 and 360. Defaults to 0.
 +
      --saturation=<float [0.000000 .. 3.000000]>
 +
                                Image saturation (0-3)
 +
           Set the image saturation, between 0 and 3. Defaults to 1.
 +
      --gamma=<float [0.010000 .. 10.000000]>
 +
                                Image gamma (0-10)
 +
          Set the image gamma, between 0.01 and 10. Defaults to 1.
 +
      --brightness-threshold, --no-brightness-threshold
 +
                                Brightness threshold
 +
                                (default disabled)
 +
          When this mode is enabled, pixels will be shown as black or white.
 +
          The threshold value will be the brightness defined below.
  
  ASF muxer
+
  Remote control interface (oldrc)
       --sout-asf-title=<string>  Title
+
       --rc-show-pos, --no-rc-show-pos
          Title to put in ASF comments.
+
                                Show stream position
      --sout-asf-author=<string> Author
+
                                (default disabled)
           Author to put in ASF comments.
+
           Show the current position in seconds within the stream from time to
       --sout-asf-copyright=<string>
+
          time.
                                Copyright
+
       --rc-quiet, --no-rc-quiet  Do not open a DOS command box interface
          Copyright string to put in ASF comments.
+
                                 (default disabled)
      --sout-asf-comment=<string>
+
           By default the rc interface plugin will start a DOS command box.
                                 Comment
+
          Enabling the quiet mode will not bring this command box but can also
           Comment to put in ASF comments.
+
           be pretty annoying when you want to stop VLC and no video window is
      --sout-asf-rating=<string> Rating
+
           open.
           "Rating" to put in ASF comments.
+
       --rc-host=<string>         TCP command input
      --sout-asf-packet-size=<integer>
+
           Accept commands over a socket rather than stdin. You can set the
                                Packet Size
+
           address and port the interface will bind to.
           ASF packet size -- default is 4096 bytes
 
       --sout-asf-bitrate-override=<integer>
 
                                Bitrate override
 
           Do not try to guess ASF bitrate. Setting this, allows you to control
 
           how Windows Media Player will cache streamed content. Set to
 
          audio+video bitrate in bytes
 
  
  MP4/MOV muxer
+
  Windows Service interface (ntservice)
       --sout-mp4-faststart, --no-sout-mp4-faststart
+
       --ntservice-install, --no-ntservice-install
                                 Create "Fast Start" files (default enabled)
+
                                Install Windows Service
           Create "Fast Start" files. "Fast Start" files are optimized for
+
                                (default disabled)
           downloads and allow the user to start previewing the file while it is
+
          Install the Service and exit.
           downloading. (default enabled)
+
      --ntservice-uninstall, --no-ntservice-uninstall
 +
                                Uninstall Windows Service
 +
                                (default disabled)
 +
          Uninstall the Service and exit.
 +
      --ntservice-name=<string>  Display name of the Service
 +
          Change the display name of the Service.
 +
      --ntservice-options=<string>
 +
                                 Configuration options
 +
          Configuration options that will be used by the Service (eg. --foo=bar
 +
          --no-foobar). It should be specified at install time so the Service
 +
           is properly configured.
 +
      --ntservice-extraintf=<string>
 +
                                Extra interface modules
 +
           Additional interfaces spawned by the Service. It should be specified
 +
          at install time so the Service is properly configured. Use a comma
 +
           separated list of interface modules. (common values are: logger, sap,
 +
          rc, http)
  
  Multipart JPEG muxer
+
  Network synchronization (netsync)
 +
      --netsync-master, --no-netsync-master
 +
                                Network master clock
 +
                                (default disabled)
 +
          When set, this VLC instance will act as the master clock for
 +
          synchronization for clients listening
 +
      --netsync-master-ip=<string>
 +
                                Master server IP address
 +
          The IP address of the network master clock to use for clock
 +
          synchronization.
 +
      --netsync-timeout=<integer>
 +
                                UDP timeout (in ms)
 +
          Length of time (in ms) until aborting data reception.
  
  PS muxer
+
  Mouse gestures control interface (gestures)
       --sout-ps-dts-delay=<integer>
+
       --gestures-threshold=<integer>  
                                 DTS delay (ms)
+
                                 Motion threshold (10-100)
           Delay the DTS (decoding time stamps) and PTS (presentation
+
           Amount of movement required for a mouse gesture to be recorded.
           timestamps) of the data in the stream, compared to the SCRs. This
+
      --gestures-button={left,middle,right}
           allows for some buffering inside the client decoder.
+
                                Trigger button
       --sout-ps-pes-max-size=<integer>
+
          Trigger button for mouse gestures.
                                 PES maximum size
+
 
           Set the maximum allowed PES size when producing the MPEG PS streams.
+
Dummy interface (dummy)
 +
      --dummy-quiet, --no-dummy-quiet
 +
                                Do not open a DOS command box interface
 +
                                (default disabled)
 +
           By default the dummy interface plugin will start a DOS command box.
 +
          Enabling the quiet mode will not bring this command box but can also
 +
          be pretty annoying when you want to stop VLC and no video window is
 +
          open.
 +
 
 +
VBI and Teletext decoder (zvbi)
 +
      --vbi-page=<integer [0 .. 7995392]>
 +
                                Teletext page
 +
          Open the indicated Teletext page. Default page is index 100.
 +
      --vbi-opaque, --no-vbi-opaque
 +
                                Opacity
 +
                                (default disabled)
 +
           Setting to true makes the text to be boxed and maybe easier to read.
 +
       --vbi-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}
 +
                                 Teletext alignment
 +
           You can enforce the teletext position on the video (0=center, 1=left,
 +
          2=right, 4=top, 8=bottom, you can also use combinations of these
 +
          values, eg. 6 = top-right).
 +
      --vbi-text, --no-vbi-text  Teletext text subtitles
 +
                                (default disabled)
 +
          Output teletext subtitles as text instead of as RGBA.
 +
      --vbi-level={0 (1), 1 (1.5), 2 (2.5), 3 (3.5)}
 +
                                Presentation Level
  
  TS muxer (libdvbpsi)
+
  H.264/MPEG-4 Part 10/AVC encoder (x264) (x264)
       --sout-ts-pid-video=<integer>
+
       --sout-x264-keyint=<integer>  
                                 Video PID
+
                                 Maximum GOP size
           Assign a fixed PID to the video stream. The PCR PID will
+
           Sets maximum interval between IDR-frames. Larger values save bits,
           automatically be the video.
+
           thus improving quality for a given bitrate at the cost of seeking
       --sout-ts-pid-audio=<integer>
+
          precision. Use -1 for infinite.
                                 Audio PID
+
       --sout-x264-min-keyint=<integer>  
           Assign a fixed PID to the audio stream.
+
                                 Minimum GOP size
      --sout-ts-pid-spu=<integer>
+
           Sets minimum interval between IDR-frames. In H.264, I-frames do not
                                SPU PID
+
          necessarily bound a closed GOP because it is allowable for a P-frame
           Assign a fixed PID to the SPU.
+
           to be predicted from more frames than just the one frame before it
      --sout-ts-pid-pmt=<integer>
+
          (also see reference frame option). Therefore, I-frames are not
                                PMT PID
+
          necessarily seekable. IDR-frames restrict subsequent P-frames from
           Assign a fixed PID to the PMT
+
          referring to any frame prior to the IDR-frame.  If scenecuts appear
       --sout-ts-tsid=<integer>  TS ID
+
          within this interval, they are still encoded as I-frames, but do not
          Assign a fixed Transport Stream ID.
+
           start a new GOP.
      --sout-ts-netid=<integer>  NET ID
+
       --sout-x264-opengop, --no-sout-x264-opengop
          Assign a fixed Network ID (for SDT table)
+
                                Use recovery points to close GOPs
      --sout-ts-program-pmt=<string>
+
                                (default disabled)
                                 PMT Program numbers
+
          use open GOP, for bluray compatibility use also bluray-compat option
           Assign a program number to each PMT. This requires "Set PID to ID of
+
      --sout-x264-bluray-compat, --no-sout-x264-bluray-compat
           ES" to be enabled.
+
                                Enable compatibility hacks for Blu-ray support
       --sout-ts-es-id-pid, --no-sout-ts-es-id-pid
+
                                 (default disabled)
                                 Set PID to ID of ES (default disabled)
+
           Enable hacks for Blu-ray support, this doesn't enforce every aspect
           Sets PID to the ID if the incoming ES. This is for use with
+
           of Blu-ray compatibility e.g. resolution, framerate, level
           --ts-es-id-pid, and allows to have the same PIDs in the input and
+
       --sout-x264-scenecut=<integer [-1 .. 100]>
           output streams. (default disabled)
+
                                 Extra I-frames aggressivity
      --sout-ts-muxpmt=<string>  Mux PMT (requires --sout-ts-es-id-pid)
+
           Scene-cut detection. Controls how aggressively to insert extra
           Define the pids to add to each pmt. This requires "Set PID to ID of
+
           I-frames. With small values of scenecut, the codec often has to force
          ES" to be enabled.
+
           an I-frame when it would exceed keyint. Good values of scenecut may
       --sout-ts-sdtdesc=<string> SDT Descriptors (requires --sout-ts-es-id-pid)
+
          find a better location for the I-frame. Large values use more
           Defines the descriptors of each SDT. Thisrequires "Set PID to ID of
+
          I-frames than necessary, thus wasting bits. -1 disables scene-cut
          ES" to be enabled.
+
          detection, so I-frames are inserted only every other keyint frames,
      --sout-ts-alignment, --no-sout-ts-alignment
+
           which probably leads to ugly encoding artifacts. Range 1 to 100.
                                 Data alignment (default enabled)
+
       --sout-x264-bframes=<integer [0 .. 16]>  
           Enforces alignment of all access units on PES boundaries. Disabling
+
                                B-frames between I and P
           this might save some bandwidth but introduce incompatibilities.
+
           Number of consecutive B-frames between I and P-frames. Range 1 to 16.
          (default enabled)
+
      --sout-x264-b-adapt=<integer [0 .. 2]>
      --sout-ts-shaping=<integer>
+
                                 Adaptive B-frame decision
                                 Shaping delay (ms)
+
           Force the specified number of consecutive B-frames to be used, except
           Cut the stream in slices of the given duration, and ensure a constant
+
           possibly before an I-frame. Range 0 to 2.
           bitrate between the two boundaries. This avoids having huge bitrate
+
      --sout-x264-b-bias=<integer [-100 .. 100]>  
          peaks, especially for reference frames.
+
                                 Influence (bias) B-frames usage
       --sout-ts-use-key-frames, --no-sout-ts-use-key-frames
+
           Bias the choice to use B-frames. Positive values cause more B-frames,
                                Use keyframes (default disabled)
+
           negative values cause less B-frames.
           If enabled, and shaping is specified, the TS muxer will place the
+
       --sout-x264-bpyramid={none,strict,normal}
           boundaries at the end of I pictures. In that case, the shaping
+
                                Keep some B-frames as references
          duration given by the user is a worse case used when no reference
+
           Allows B-frames to be used as references for predicting other frames.
           frame is available. This enhances the efficiency of the shaping
+
           Keeps the middle of 2+ consecutive B-frames as a reference, and
           algorithm, since I frames are usually the biggest frames in the
+
           reorders frame appropriately. - none: Disabled  - strict: Strictly
          stream. (default disabled)
+
           hierarchical pyramid  - normal: Non-strict (not Blu-ray compatible)  
       --sout-ts-pcr=<integer>    PCR delay (ms)
+
       --sout-x264-cabac, --no-sout-x264-cabac
          Set at which interval PCRs (Program Clock Reference) will be sent (in
+
                                CABAC
           milliseconds). This value should be below 100ms. (default is 70ms).
+
                                (default enabled)
      --sout-ts-bmin=<integer>  Minimum B (deprecated)
+
           CABAC (Context-Adaptive Binary Arithmetic Coding). Slightly slows
           This setting is deprecated and not used anymore
+
          down encoding and decoding, but should save 10 to 15% bitrate.
       --sout-ts-bmax=<integer>  Maximum B (deprecated)
+
      --sout-x264-fullrange, --no-sout-x264-fullrange
           This setting is deprecated and not used anymore
+
                                Use fullrange instead of TV colorrange
      --sout-ts-dts-delay=<integer>
+
                                (default disabled)
                                 DTS delay (ms)
+
           TV-range is usually used colorrange, defining this to true will
           Delay the DTS (decoding time stamps) and PTS (presentation
+
          enable libx264 to use full colorrange on encoding
          timestamps) of the data in the stream, compared to the PCRs. This
+
       --sout-x264-ref=<integer [1 .. 16]>
          allows for some buffering inside the client decoder.
+
                                Number of reference frames
      --sout-ts-crypt-audio, --no-sout-ts-crypt-audio
+
           Number of previous frames used as predictors. This is effective in
                                 Crypt audio (default enabled)
+
          Anime, but seems to make little difference in live-action source
           Crypt audio using CSA (default enabled)
+
          material. Some decoders are unable to deal with large frameref
       --sout-ts-crypt-video, --no-sout-ts-crypt-video
+
          values. Range 1 to 16.
                                 Crypt video (default enabled)
+
      --sout-x264-nf, --no-sout-x264-nf
          Crypt video using CSA (default enabled)
+
                                Skip loop filter
      --sout-ts-csa-ck=<string>  CSA Key
+
                                 (default disabled)
           CSA encryption key. This must be a 16 char string (8 hexadecimal
+
           Deactivate the deblocking loop filter (decreases quality).
          bytes).
+
      --sout-x264-deblock=<string>
       --sout-ts-csa2-ck=<string> Second CSA Key
+
                                 Loop filter AlphaC0 and Beta parameters
          The even CSA encryption key. This must be a 16 char string (8
+
                                alpha:beta
           hexadecimal bytes).
+
           Loop filter AlphaC0 and Beta parameters. Range -6 to 6 for both alpha
       --sout-ts-csa-use=<string> CSA Key in use
+
          and beta parameters. -6 means light filter, 6 means strong.
           CSA encryption key used. It can be the odd/first/1 (default) or the
+
       --sout-x264-psy-rd=<string>
           even/second/2 one.
+
                                 Strength of psychovisual optimization, default
       --sout-ts-csa-pkt=<integer>
+
                                is "1.0:0.0"
                                 Packet size in bytes to encrypt
+
           First parameter controls if RD is on (subme>=6) or off. Second
           Size of the TS packet to encrypt. The encryption routines subtract
+
          parameter controls if Trellis is used on psychovisual optimization,
          the TS-header from the value before encrypting.
+
          default off
 
+
       --sout-x264-psy, --no-sout-x264-psy
Volume normalizer
+
                                Use Psy-optimizations
       --norm-buff-size=<integer> Number of audio buffers
+
                                (default enabled)
          This is the number of audio buffers on which the power measurement is
+
           Use all visual optimizations that can worsen both PSNR and SSIM
           made. A higher number of buffers will increase the response time of
+
       --sout-x264-level=<string> H.264 level
           the filter to a spike but will make it less sensitive to short
+
           Specify H.264 level (as defined by Annex A of the standard). Levels
           variations.
+
          are not enforced; it's up to the user to select a level compatible
      --norm-max-level=<float>  Max level
+
           with the rest of the encoding options. Range 1 to 5.1 (10 to 51 is
           If the average power over the last N buffers is higher than this
+
          also allowed). Set to 0 for letting x264 set level.
          value, the volume will be normalized. This value is a positive
+
       --sout-x264-profile={baseline,main,high,high10,high422,high444}
          floating point number. A value between 0.5 and 10 seems sensible.
+
                                 H.264 profile
 
+
           Specify H.264 profile which limits are enforced over other settings
Windows Service interface
+
      --sout-x264-interlaced, --no-sout-x264-interlaced
       --ntservice-install, --no-ntservice-install
+
                                Interlaced mode
                                 Install Windows Service (default disabled)
+
                                (default disabled)
           Install the Service and exit. (default disabled)
+
          Pure-interlaced mode.
       --ntservice-uninstall, --no-ntservice-uninstall
+
       --sout-x264-frame-packing={-1 (), 0 (checkerboard), 1 (column alternation), 2 (row alternation), 3 (side by side), 4 (top bottom), 5 (frame alternation), 6 (2D)}
                                Uninstall Windows Service (default disabled)
+
                                Frame packing
          Uninstall the Service and exit. (default disabled)
+
           For stereoscopic videos define frame arrangement:  0: checkerboard -
      --ntservice-name=<string> Display name of the Service
+
           pixels are alternatively from L and R  1: column alternation - L and
          Change the display name of the Service.
+
           R are interlaced by column  2: row alternation - L and R are
       --ntservice-options=<string>
+
           interlaced by row  3: side by side - L is on the left, R on the right
                                 Configuration options
+
          4: top bottom - L is on top, R on bottom  5: frame alternation - one
           Configuration options that will be used by the Service (eg. --foo=bar
+
          view per frame
           --no-foobar). It should be specified at install time so the Service
+
       --sout-x264-slices=<integer>
          is properly configured.
+
                                 Force number of slices per frame
       --ntservice-extraintf=<string>
+
           Force rectangular slices and is overridden by other slicing options
                                 Extra interface modules
+
       --sout-x264-slice-max-size=<integer>  
           Additional interfaces spawned by the Service. It should be specified
+
                                Limit the size of each slice in bytes
           at install time so the Service is properly configured. Use a comma
+
          Sets a maximum slice size in bytes, Includes NAL overhead in size
           separated list of interface modules. (common values are: logger, sap,
+
       --sout-x264-slice-max-mbs=<integer>  
          rc, http)
+
                                 Limit the size of each slice in macroblocks
 
+
           Sets a maximum number of macroblocks per slice
OpenGL video output
+
      --sout-x264-hrd={none,vbr,cbr}
       --opengl-cube-speed=<float>
+
                                HRD-timing information
                                 OpenGL cube rotation speed
+
           HRD-timing information
           Rotation speed of the OpenGL cube effect, if enabled.
+
       --sout-x264-qp=<integer [-1 .. 51]>  
      --opengl-accuracy=<integer [1 .. 10]>
+
                                 Set QP
                                 OpenGL sampling accuracy
+
           This selects the quantizer to use. Lower values result in better
           Select the accuracy of 3D object sampling(1 = min and 10 = max)
+
           fidelity, but higher bitrates. 26 is a good default value. Range 0
       --opengl-pov-x=<float [-1.000000 .. 1.000000]>
+
           (lossless) to 51.
                                 Point of view x-coordinate
+
       --sout-x264-crf=<integer [0 .. 51]>  
           Point of view (X coordinate) of the cube/cylinder effect, if enabled.
+
                                 Quality-based VBR
      --opengl-pov-y=<float [-1.000000 .. 1.000000]>
+
           1-pass Quality-based VBR. Range 0 to 51.
                                 Point of view y-coordinate
+
      --sout-x264-qpmin=<integer [0 .. 51]>  
           Point of view (Y coordinate) of the cube/cylinder effect, if enabled.
+
                                 Min QP
       --opengl-pov-z=<float [-1.000000 .. 1.000000]>
+
           Minimum quantizer parameter. 15 to 35 seems to be a useful range.
                                 Point of view z-coordinate
+
       --sout-x264-qpmax=<integer [0 .. 51]>  
           Point of view (Z coordinate) of the cube/cylinder effect, if enabled.
+
                                 Max QP
       --opengl-cylinder-radius=<float>
+
           Maximum quantizer parameter.
                                 OpenGL Cylinder radius
+
      --sout-x264-qpstep=<integer [0 .. 51]>  
           Radius of the OpenGL cylinder effect, if enabled
+
                                 Max QP step
       --opengl-provider=<string> OpenGL Provider
+
           Max QP step between frames.
           Allows you to modify what OpenGL provider should be used
+
       --sout-x264-ratetol=<float [0.000000 .. 100.000000]>  
       --opengl-effect={none,cube,transparent-cube,cylinder,torus,sphere,SQUAREXY,SQUARER,ASINXY,ASINR,SINEXY,SINER}
+
                                 Average bitrate tolerance
                                 Effect
+
           Allowed variance in average bitrate (in kbits/s).
           Several visual OpenGL effects are available.
+
       --sout-x264-vbv-maxrate=<integer>  
 
+
                                 Max local bitrate
On Screen Display menu
+
           Sets a maximum local bitrate (in kbits/s).
       --osdmenu-x=<integer>     X coordinate
+
       --sout-x264-vbv-bufsize=<integer>  
           You can move the OSD menu by left-clicking on it.
+
                                VBV buffer
       --osdmenu-y=<integer>     Y coordinate
+
           Averaging period for the maximum local bitrate (in kbits).
           You can move the OSD menu by left-clicking on it.
+
       --sout-x264-vbv-init=<float [0.000000 .. 1.000000]>
       --osdmenu-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}
+
                                 Initial VBV buffer occupancy
                                Menu position
+
           Sets the initial buffer occupancy as a fraction of the buffer size.
           You can enforce the OSD menu position on the video (0=center, 1=left,
+
          Range 0.0 to 1.0.
           2=right, 4=top, 8=bottom, you can also use combinations of these
+
       --sout-x264-ipratio=<float [1.000000 .. 2.000000]>  
           values, eg. 6 = top-right).
+
                                QP factor between I and P
       --osdmenu-file=<string>   Configuration file
+
           QP factor between I and P. Range 1.0 to 2.0.
           Configuration file for the OSD Menu.
+
       --sout-x264-pbratio=<float [1.000000 .. 2.000000]>  
       --osdmenu-file-path=<string>
+
                                QP factor between P and B
                                Path to OSD menu images
+
           QP factor between P and B. Range 1.0 to 2.0.
          Path to the OSD menu images. This will override the path defined in
+
       --sout-x264-chroma-qp-offset=<integer>
          the OSD configuration file.
+
                                QP difference between chroma and luma
      --osdmenu-timeout=<integer>
+
          QP difference between chroma and luma.
                                 Menu timeout
+
      --sout-x264-pass=<integer [0 .. 3]>
           OSD menu pictures get a default timeout of 15 seconds added to their
+
                                Multipass ratecontrol
           remaining time. This will ensure that they are at least the specified
+
          Multipass ratecontrol:  - 1: First pass, creates stats file  - 2:
          time visible.
+
          Last pass, does not overwrite stats file  - 3: Nth pass, overwrites
       --osdmenu-update=<integer [0 .. 1000]>
+
          stats file
                                 Menu update interval
+
      --sout-x264-qcomp=<float [0.000000 .. 1.000000]>
           The default is to update the OSD menu picture every 200 ms. Shorten
+
                                QP curve compression
           the update time for environments that experience transmissions
+
           QP curve compression. Range 0.0 (CBR) to 1.0 (QCP).
          errors. Be careful with this option as encoding OSD menu pictures is
+
      --sout-x264-cplxblur=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
          very computing intensive. The range is 0 - 1000 ms.
+
                                Reduce fluctuations in QP
       --osdmenu-alpha=<integer [0 .. 255]>
+
           This reduces the fluctuations in QP before curve compression.
                                Alpha transparency value (default 255)
+
           Temporally blurs complexity.
          The transparency of the OSD menu can be changed by giving a value
+
       --sout-x264-qblur=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
           between 0 and 255. A lower value specifies more transparency a higher
+
                                Reduce fluctuations in QP
           means less transparency. The default is being not transparent (value
+
           This reduces the fluctuations in QP after curve compression.
          255) the minimum is fully transparent (value 0).
+
          Temporally blurs quants.
 
+
       --sout-x264-aq-mode=<integer [0 .. 2]>  
  MPEG-I/II video packetizer
+
                                 How AQ distributes bits
      --packetizer-mpegvideo-sync-iframe, --no-packetizer-mpegvideo-sync-iframe
+
           Defines bitdistribution mode for AQ, default 1  - 0: Disabled  - 1:
                                 Sync on Intra Frame (default disabled)
+
          Current x264 default mode  - 2: uses log(var)^2 instead of log(var)
           Normally the packetizer would sync on the next full frame. This flags
+
           and attempts to adapt strength per frame
           instructs the packetizer to sync on the first Intra Frame found.
+
       --sout-x264-aq-strength=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
          (default disabled)
+
                                 Strength of AQ
 
+
           Strength to reduce blocking and blurring in flat and textured areas,
  Panoramix: wall with overlap video filter
+
           default 1.0 recommended to be between 0..2  - 0.5: weak AQ  - 1.5:
      --panoramix-cols=<integer> Number of columns
+
          strong AQ
           Select the number of horizontal video windows in which to split the
+
       --sout-x264-partitions={none,fast,normal,slow,all}
          video
+
                                Partitions to consider
       --panoramix-rows=<integer> Number of rows
+
           Partitions to consider in analyse mode:  - none  :  - fast  : i4x4
          Select the number of vertical video windows in which to split the
+
           - normal: i4x4,p8x8,(i8x8) - slow  : i4x4,p8x8,(i8x8),b8x8 - all 
          video
+
          : i4x4,p8x8,(i8x8),b8x8,p4x4 (p4x4 requires p8x8. i8x8 requires
      --panoramix-offset-x, --no-panoramix-offset-x
+
          8x8dct).
                                 Offset X offset (automatic compensation)
+
      --sout-x264-direct={none,spatial,temporal,auto}
 +
                                 Direct MV prediction mode
 +
           Direct MV prediction mode
 +
      --sout-x264-direct-8x8=<integer [-1 .. 1]>
 +
                                Direct prediction size
 +
           Direct prediction size:  - 0: 4x4  - 1: 8x8  - -1: smallest
 +
           possible according to level
 +
       --sout-x264-weightb, --no-sout-x264-weightb
 +
                                 Weighted prediction for B-frames
 
                                 (default enabled)
 
                                 (default enabled)
           Select if you want an automatic offset in horizontal (in case of
+
           Weighted prediction for B-frames.
          misalignment due to autoratio control) (default enabled)
+
       --sout-x264-weightp=<integer [0 .. 2]>  
       --panoramix-bz-length=<integer [0 .. 100]>
+
                                 Weighted prediction for P-frames
                                 length of the overlapping area (in %)
+
          Weighted prediction for P-frames:  - 0: Disabled  - 1: Blind offset
           Select in percent the length of the blended zone
+
           - 2: Smart analysis
       --panoramix-bz-height=<integer [0 .. 100]>
+
       --sout-x264-me={dia,hex,umh,esa,tesa}
                                 height of the overlapping area (in %)
+
                                 Integer pixel motion estimation method
           Select in percent the height of the blended zone (case of 2x2 wall)
+
          Selects the motion estimation algorithm:  - dia: diamond search,
      --panoramix-attenuate, --no-panoramix-attenuate
+
           radius 1 (fast) - hex: hexagonal search, radius 2  - umh: uneven
                                Attenuation (default enabled)
+
          multi-hexagon search (better but slower) - esa: exhaustive search
          Check this option if you want attenuate blended zone by this plug-in
+
           (extremely slow, primarily for testing) - tesa: hadamard exhaustive
           (if option is unchecked, attenuate is made by opengl) (default
+
           search (extremely slow, primarily for testing)  
           enabled)
+
       --sout-x264-merange=<integer [1 .. 64]>  
       --panoramix-bz-begin=<integer [0 .. 100]>
+
                                 Maximum motion vector search range
                                 Attenuation, begin (in %)
+
          Maximum distance to search for motion estimation, measured from
           Select in percent the Lagrange coeff of the beginning blended zone
+
          predicted position(s). Default of 16 is good for most footage, high
       --panoramix-bz-middle=<integer [0 .. 100]>
+
           motion sequences may benefit from settings between 24 and 32. Range 0
                                 Attenuation, middle (in %)
+
          to 64.
           Select in percent the Lagrange coeff of the middle of blended zone
+
       --sout-x264-mvrange=<integer>  
       --panoramix-bz-end=<integer [0 .. 100]>
+
                                 Maximum motion vector length
                                 Attenuation, end (in %)
+
          Maximum motion vector length in pixels. -1 is automatic, based on
           Select in percent the Lagrange coeff of the end of blended zone
+
           level.
       --panoramix-bz-middle-pos=<integer [1 .. 99]>
+
       --sout-x264-mvrange-thread=<integer>  
                                 middle position (in %)
+
                                 Minimum buffer space between threads
           Select in percent (50 is center) the position of the middle point
+
          Minimum buffer space between threads. -1 is automatic, based on
           (Lagrange) of blended zone
+
           number of threads.
       --panoramix-bz-gamma-red=<float [0.000000 .. 5.000000]>
+
       --sout-x264-subme=<integer>  
                                 Gamma (Red) correction
+
                                 Subpixel motion estimation and partition
           Select the gamma for the correction of blended zone (Red or Y
+
                                decision quality
           component)
+
          This parameter controls quality versus speed tradeoffs involved in
       --panoramix-bz-gamma-green=<float [0.000000 .. 5.000000]>
+
           the motion estimation decision process (lower = quicker and higher =
                                 Gamma (Green) correction
+
           better quality). Range 1 to 9.
           Select the gamma for the correction of blended zone (Green or U
+
       --sout-x264-mixed-refs, --no-sout-x264-mixed-refs
           component)
+
                                Decide references on a per partition basis
       --panoramix-bz-gamma-blue=<float [0.000000 .. 5.000000]>
+
                                 (default enabled)
                                 Gamma (Blue) correction
+
           Allows each 8x8 or 16x8 partition to independently select a reference
           Select the gamma for the correction of blended zone (Blue or V
+
           frame, as opposed to only one ref per macroblock.
           component)
+
       --sout-x264-chroma-me, --no-sout-x264-chroma-me
       --panoramix-bz-blackcrush-red=<integer [0 .. 255]>
+
                                Chroma in motion estimation
                                 Black Crush for Red
+
                                 (default enabled)
           Select the Black Crush of blended zone (Red or Y component)
+
           Chroma ME for subpel and mode decision in P-frames.
       --panoramix-bz-blackcrush-green=<integer [0 .. 255]>
+
      --sout-x264-8x8dct, --no-sout-x264-8x8dct
                                 Black Crush for Green
+
                                Adaptive spatial transform size
           Select the Black Crush of blended zone (Green or U component)
+
                                (default enabled)
       --panoramix-bz-blackcrush-blue=<integer [0 .. 255]>
+
           SATD-based decision for 8x8 transform in inter-MBs.
                                 Black Crush for Blue
+
       --sout-x264-trellis=<integer [0 .. 2]>  
           Select the Black Crush of blended zone (Blue or V component)
+
                                 Trellis RD quantization
       --panoramix-bz-whitecrush-red=<integer [0 .. 255]>
+
           Trellis RD quantization:  - 0: disabled  - 1: enabled only on the
                                 White Crush for Red
+
          final encode of a MB  - 2: enabled on all mode decisions This
           Select the White Crush of blended zone (Red or Y component)
+
           requires CABAC.
       --panoramix-bz-whitecrush-green=<integer [0 .. 255]>
+
       --sout-x264-lookahead=<integer [0 .. 60]>  
                                 White Crush for Green
+
                                 Framecount to use on frametype lookahead
           Select the White Crush of blended zone (Green or U component)
+
          Framecount to use on frametype lookahead. Currently default can cause
       --panoramix-bz-whitecrush-blue=<integer [0 .. 255]>
+
           sync-issues on unmuxable output, like rtsp-output without ts-mux
                                 White Crush for Blue
+
      --sout-x264-intra-refresh, --no-sout-x264-intra-refresh
           Select the White Crush of blended zone (Blue or V component)
+
                                Use Periodic Intra Refresh
       --panoramix-bz-blacklevel-red=<integer [0 .. 255]>
+
                                (default disabled)
                                 Black Level for Red
+
          Use Periodic Intra Refresh instead of IDR frames
           Select the Black Level of blended zone (Red or Y component)
+
       --sout-x264-mbtree, --no-sout-x264-mbtree
       --panoramix-bz-blacklevel-green=<integer [0 .. 255]>
+
                                Use mb-tree ratecontrol
                                 Black Level for Green
+
                                 (default enabled)
           Select the Black Level of blended zone (Green or U component)
+
           You can disable use of Macroblock-tree on ratecontrol
       --panoramix-bz-blacklevel-blue=<integer [0 .. 255]>
+
      --sout-x264-fast-pskip, --no-sout-x264-fast-pskip
                                 Black Level for Blue
+
                                Early SKIP detection on P-frames
          Select the Black Level of blended zone (Blue or V component)
+
                                (default enabled)
       --panoramix-bz-whitelevel-red=<integer [0 .. 255]>
+
          Early SKIP detection on P-frames.
                                 White Level for Red
+
       --sout-x264-dct-decimate, --no-sout-x264-dct-decimate
           Select the White Level of blended zone (Red or Y component)
+
                                Coefficient thresholding on P-frames
       --panoramix-bz-whitelevel-green=<integer [0 .. 255]>
+
                                (default enabled)
                                 White Level for Green
+
          Coefficient thresholding on P-frames. Eliminate dct blocks containing
           Select the White Level of blended zone (Green or U component)
+
          only a small single coefficient.
       --panoramix-bz-whitelevel-blue=<integer [0 .. 255]>
+
      --sout-x264-nr=<integer [0 .. 1000]>  
                                 White Level for Blue
+
                                 Noise reduction
           Select the White Level of blended zone (Blue or V component)
+
          Dct-domain noise reduction. Adaptive pseudo-deadzone. 10 to 1000
      --panoramix-active=<string>
+
           seems to be a useful range.
                                Active windows
+
       --sout-x264-deadzone-inter=<integer [0 .. 32]>  
          Comma separated list of active windows, defaults to all
+
                                 Inter luma quantization deadzone
 +
           Set the size of the intra luma quantization deadzone. Range 0 to 32.
 +
       --sout-x264-deadzone-intra=<integer [0 .. 32]>  
 +
                                 Intra luma quantization deadzone
 +
           Set the size of the intra luma quantization deadzone. Range 0 to 32.
 +
       --sout-x264-non-deterministic, --no-sout-x264-non-deterministic
 +
                                Non-deterministic optimizations when threaded
 +
                                 (default disabled)
 +
           Slightly improve quality of SMP, at the cost of repeatability.
 +
      --sout-x264-asm, --no-sout-x264-asm
 +
                                CPU optimizations
 +
                                (default enabled)
 +
          Use assembler CPU optimizations.
 +
       --sout-x264-psnr, --no-sout-x264-psnr
 +
                                PSNR computation
 +
                                (default disabled)
 +
          Compute and print PSNR stats. This has no effect on the actual
 +
          encoding quality.
 +
      --sout-x264-ssim, --no-sout-x264-ssim
 +
                                SSIM computation
 +
                                 (default disabled)
 +
           Compute and print SSIM stats. This has no effect on the actual
 +
          encoding quality.
 +
      --sout-x264-quiet, --no-sout-x264-quiet
 +
                                Quiet mode
 +
                                (default disabled)
 +
          Quiet mode
 +
       --sout-x264-sps-id=<integer>  
 +
                                 SPS and PPS id numbers
 +
          Set SPS and PPS id numbers to allow concatenating streams with
 +
           different settings.
 +
      --sout-x264-aud, --no-sout-x264-aud
 +
                                Access unit delimiters
 +
                                (default disabled)
 +
          Generate access unit delimiter NAL units.
 +
       --sout-x264-verbose, --no-sout-x264-verbose
 +
                                 Statistics
 +
                                (default disabled)
 +
          Print stats for each frame.
 +
       --sout-x264-stats=<string> Filename for 2 pass stats file
 +
          Filename for 2 pass stats file for multi-pass encoding.
 +
      --sout-x264-preset={ultrafast,superfast,veryfast,faster,fast,medium,slow,slower,veryslow,placebo}
 +
                                 Default preset setting used
 +
           Default preset setting used
 +
       --sout-x264-tune={film,animation,grain,stillimage,psnr,ssim,fastdecode,zerolatency}
 +
                                Default tune setting used
 +
          Default tune setting used
 +
      --sout-x264-options=<string>  
 +
                                 x264 advanced options
 +
           x264 advanced options, in the form {opt=val,op2=val2}.
 +
 
 +
WebM video decoder (vpx)
 +
       --sout-vpx-quality-mode=<integer [0 .. 2]>  
 +
                                 Quality mode
 +
           Quality setting which will determine max encoding time  - 0: Good
 +
          quality  - 1: Realtime  - 2: Best quality
  
  Parametric Equalizer
+
  Vorbis audio decoder (vorbis)
      --param-eq-lowf=<float>    Low freq (Hz)
+
      --sout-vorbis-quality=<integer [0 .. 10]>  
                --param-eq-lowgain=<float [-20.000000 .. 20.000000]>
+
                                 Encoding quality
                                 Low freq gain (dB)
+
          Enforce a quality between 1 (low) and 10 (high), instead of
                --param-eq-highf=<float>  High freq (Hz)
+
          specifying a particular bitrate. This will produce a VBR stream.
                --param-eq-highgain=<float [-20.000000 .. 20.000000]>
+
      --sout-vorbis-max-bitrate=<integer>  
                                High freq gain (dB)
+
                                 Maximum encoding bitrate
                --param-eq-f1=<float>      Freq 1 (Hz)
+
          Maximum bitrate in kbps. This is useful for streaming applications.
                --param-eq-gain1=<float [-20.000000 .. 20.000000]>
+
      --sout-vorbis-min-bitrate=<integer>  
                                Freq 1 gain (dB)
+
                                 Minimum encoding bitrate
                --param-eq-q1=<float [0.100000 .. 100.000000]>
+
          Minimum bitrate in kbps. This is useful for encoding for a fixed-size
                                Freq 1 Q
+
           channel.
                --param-eq-f2=<float>      Freq 2 (Hz)
+
       --sout-vorbis-cbr, --no-sout-vorbis-cbr
                --param-eq-gain2=<float [-20.000000 .. 20.000000]>
+
                                 CBR encoding
                                 Freq 2 gain (dB)
+
                                 (default disabled)
                --param-eq-q2=<float [0.100000 .. 100.000000]>
+
           Force a constant bitrate encoding (CBR).
                                Freq 2 Q
 
                --param-eq-f3=<float>      Freq 3 (Hz)
 
                --param-eq-gain3=<float [-20.000000 .. 20.000000]>
 
                                 Freq 3 gain (dB)
 
                --param-eq-q3=<float [0.100000 .. 100.000000]>
 
                                Freq 3 Q
 
         
 
Playlist
 
      --playlist-autostart, --no-playlist-autostart
 
                                Auto start (default enabled)
 
           Automatically start playing the playlist content once it's loaded.
 
          (default enabled)
 
       --parent-item=<integer>    (null)
 
      --playlist-skip-ads, --no-playlist-skip-ads
 
                                 Skip ads (default enabled)
 
          Use playlist options usually used to prevent ads skipping to detect
 
          ads and prevent adding them to the playlist. (default enabled)
 
      --shoutcast-show-adult, --no-shoutcast-show-adult
 
                                 Show shoutcast adult content (default
 
                                disabled)
 
           Show NC17 rated video streams when using shoutcast video playlists.
 
          (default disabled)
 
  
  Podcasts
+
  Libtwolame audio encoder (twolame)
       --podcast-urls=<string>   Podcast URLs list
+
       --sout-twolame-quality=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
           Enter the list of podcasts to retrieve, separated by '|' (pipe).
+
                                Encoding quality
 +
           Force a specific encoding quality between 0.0 (high) and 50.0 (low),
 +
          instead of specifying a particular bitrate. This will produce a VBR
 +
          stream.
 +
      --sout-twolame-mode={0 (Stereo), 1 (Dual mono), 2 (Joint stereo)}
 +
                                Stereo mode
 +
          Handling mode for stereo streams
 +
      --sout-twolame-vbr, --no-sout-twolame-vbr
 +
                                VBR mode
 +
                                (default disabled)
 +
          Use Variable BitRate. Default is to use Constant BitRate (CBR).
 +
      --sout-twolame-psy=<integer>
 +
                                Psycho-acoustic model
 +
          Integer from -1 (no model) to 4.
  
  PORTAUDIO audio output
+
  TTML subtitles decoder (ttml)
       --portaudio-device=<integer>
+
       --ttml-align=<integer>     Subtitle justification
                                Output device
+
           Set the justification of subtitles
           Portaudio identifier for the output device
 
  
  Video post processing filter
+
  Theora video decoder (theora)
       --postproc-q=<integer [0 .. 6]>
+
       --theora-postproc=<integer>  
 
                                 Post processing quality
 
                                 Post processing quality
          Quality of post processing. Valid range is 0 to 6
+
       --sout-theora-quality=<integer>  
Higher levels
+
                                Encoding quality
          require considerable more CPU power, but produce better looking
+
           Enforce a quality between 1 (low) and 10 (high), instead of
          pictures.
+
           specifying a particular bitrate. This will produce a VBR stream.
       --postproc-name=<string>   FFmpeg post processing filter chains
+
 
          Available postprocessing filters:
+
USF subtitles decoder (subsusf)
Filters                     
+
       --subsdec-formatted, --no-subsdec-formatted
           Options
+
                                Formatted Subtitles
short  long name      short  long option    Description
+
                                (default enabled)
*
+
           Some subtitle formats allow for text formatting. VLC partly
              *              a       autoq          CPU power dependent
+
           implements this, but you can choose to disable all formatting.
           enabler
+
 
                      c      chrom          chrominance
+
Text subtitle decoder (subsdec)
          filtering enabled
+
      --subsdec-align={0 (Center), 1 (Left), 2 (Right)}
                      y       nochrom       
+
                                Subtitle justification
          chrominance filtering disabled
+
           Set the justification of subtitles
                      n      noluma
+
       --subsdec-encoding={,system,UTF-8,UTF-16,UTF-16BE,UTF-16LE,GB18030,ISO-8859-15,Windows-1252,IBM850,ISO-8859-2,Windows-1250,ISO-8859-3,ISO-8859-10,Windows-1251,KOI8-R,KOI8-U,ISO-8859-6,Windows-1256,ISO-8859-7,Windows-1253,ISO-8859-8,Windows-1255,ISO-8859-9,Windows-1254,ISO-8859-11,Windows-874,ISO-8859-13,Windows-1257,ISO-8859-14,ISO-8859-16,ISO-2022-CN-EXT,EUC-CN,ISO-2022-JP-2,EUC-JP,Shift_JIS,CP949,ISO-2022-KR,Big5,ISO-2022-TW,Big5-HKSCS,VISCII,Windows-1258}
                  luma filtering disabled
+
                                Subtitle text encoding
hb    hdeblock        (2 threshold)  
+
           Set the encoding used in text subtitles
                  horizontal deblocking filter
+
      --subsdec-autodetect-utf8, --no-subsdec-autodetect-utf8
      1. difference factor:
+
                                UTF-8 subtitle autodetection
           default=32, higher -> more deblocking
+
                                (default enabled)
      2. flatness threshold:
+
           This enables automatic detection of UTF-8 encoding within subtitle
           default=39, lower -> more deblocking
+
          files.
                      the h & v
 
          deblocking filters share these
 
                      so you can't
 
          set different thresholds for h / v
 
vb    vdeblock        (2
 
          threshold)           vertical deblocking filter
 
ha    hadeblock   
 
          (2 threshold)           horizontal deblocking filter
 
va   
 
          vadeblock      (2 threshold)           vertical deblocking filter
 
h1
 
              x1hdeblock                              experimental h deblock
 
           filter 1
 
v1    x1vdeblock                              experimental
 
          v deblock filter 1
 
dr    dering                               
 
          deringing filter
 
al    autolevels                           
 
          automatic brightness / contrast
 
                      f        
 
          fullyrange    stretch luminance to (0..255)
 
lb    linblenddeint   
 
                                linear blend deinterlacer
 
li    linipoldeint 
 
                                  linear interpolating deinterlace
 
ci   
 
          cubicipoldeint                          cubic interpolating
 
          deinterlacer
 
md    mediandeint                            median
 
          deinterlacer
 
fd    ffmpegdeint                            ffmpeg
 
          deinterlacer
 
l5    lowpass5                                FIR
 
          lowpass deinterlacer
 
de    default                               
 
          hb:a,vb:a,dr:a
 
fa    fast                                 
 
          h1:a,v1:a,dr:a
 
ac                                           
 
          ha:a:128:7,va:a,dr:a
 
tn    tmpnoise        (3 threshold)         
 
          temporal noise reducer
 
                    1. <= 2. <= 3.         
 
          larger -> stronger filtering
 
fq    forceQuant      <quantizer>     
 
                force quantizer
 
Usage:
 
<filterName>[:<option>[:<option>...]][[,|
 
          /][-]<filterName>[:<option>...]]...
 
long form example:
 
vdeblock:autoq/
 
          hdeblock:autoq/linblenddeint    default,-vdeblock
 
short form
 
           example:
 
vb:a/hb:a/lb                                  de,-vb
 
more
 
           examples:
 
tn:64:128:256
 
  
 +
DVD subtitles decoder (spudec)
 +
      --dvdsub-transparency, --no-dvdsub-transparency
 +
                                Disable DVD subtitle transparency
 +
                                (default disabled)
 +
          Removes all transparency effects used in DVD subtitles.
  
 +
Speex audio decoder (speex)
 +
      --sout-speex-mode={0 (Narrow-band (8kHz)), 1 (Wide-band (16kHz)), 2 (Ultra-wideband (32kHz))}
 +
                                Mode
 +
          Enforce the mode of the encoder.
 +
      --sout-speex-complexity=<integer [1 .. 10]>
 +
                                Encoding complexity
 +
          Enforce the complexity of the encoder.
 +
      --sout-speex-cbr, --no-sout-speex-cbr
 +
                                CBR encoding
 +
                                (default disabled)
 +
          Enforce a constant bitrate encoding (CBR) instead of default variable
 +
          bitrate encoding (VBR).
 +
      --sout-speex-quality=<float [0.000000 .. 10.000000]>
 +
                                Encoding quality
 +
          Enforce a quality between 0 (low) and 10 (high).
 +
      --sout-speex-max-bitrate=<integer>
 +
                                Maximal bitrate
 +
          Enforce the maximal VBR bitrate
 +
      --sout-speex-vad, --no-sout-speex-vad
 +
                                Voice activity detection
 +
                                (default enabled)
 +
          Enable voice activity detection (VAD). It is automatically activated
 +
          in VBR mode.
 +
      --sout-speex-dtx, --no-sout-speex-dtx
 +
                                Discontinuous Transmission
 +
                                (default disabled)
 +
          Enable discontinuous transmission (DTX).
  
  MPEG-PS demuxer
+
  Dirac video decoder using libschroedinger (schroedinger)
       --ps-trust-timestamps, --no-ps-trust-timestamps
+
  Encoding:
                                 Trust MPEG timestamps (default enabled)
+
      --sout-schro-rate-control={constant_noise_threshold,constant_bitrate,low_delay,lossless,constant_lambda,constant_error,constant_quality}
           Normally we use the timestamps of the MPEG files to calculate
+
                                Rate control method
           position and duration. However sometimes this might not be usable.
+
          Method used to encode the video sequence
           Disable this option to calculate from the bitrate instead. (default
+
       --sout-schro-quality=<float [-1.000000 .. 10.000000]>
           enabled)
+
                                Constant quality factor
 +
          Quality factor to use in constant quality mode
 +
      --sout-schro-noise-threshold=<float [-1.000000 .. 100.000000]>
 +
                                Noise Threshold
 +
          Noise threshold to use in constant noise threshold mode
 +
      --sout-schro-bitrate=<integer [-1 .. 2147483647]>
 +
                                CBR bitrate (kbps)
 +
          Target bitrate in kbps when encoding in constant bitrate mode
 +
      --sout-schro-max-bitrate=<integer [-1 .. 2147483647]>
 +
                                Maximum bitrate (kbps)
 +
          Maximum bitrate in kbps when encoding in constant bitrate mode
 +
      --sout-schro-min-bitrate=<integer [-1 .. 2147483647]>
 +
                                 Minimum bitrate (kbps)
 +
           Minimum bitrate in kbps when encoding in constant bitrate mode
 +
      --sout-schro-gop-structure={adaptive,intra_only,backref,chained_backref,biref,chained_biref}
 +
                                GOP structure
 +
          GOP structure used to encode the video sequence
 +
      --sout-schro-gop-length=<integer [-1 .. 2147483647]>
 +
                                GOP length
 +
          Number of pictures between successive sequence headers i.e. length of
 +
          the group of pictures
 +
      --sout-schro-chroma-fmt={420,422,444}
 +
                                Chroma format
 +
          Picking chroma format will force a conversion of the video into that
 +
          format
 +
      --sout-schro-coding-mode={auto,progressive,field}
 +
                                Picture coding mode
 +
          Field coding is where interlaced fields are coded separately as
 +
          opposed to a pseudo-progressive frame
 +
      --sout-schro-mv-precision={1,1/2,1/4,1/8}
 +
                                Motion Vector precision
 +
          Motion Vector precision in pels
 +
      --sout-schro-motion-block-size={automatic,small,medium,large}
 +
                                Size of motion compensation blocks
 +
          Size of motion compensation blocks
 +
      --sout-schro-motion-block-overlap={automatic,none,partial,full}
 +
                                Overlap of motion compensation blocks
 +
          Overlap of motion compensation blocks
 +
      --sout-schro-me-combined=<integer [-1 .. 1]>
 +
                                Three component motion estimation
 +
          Use chroma as part of the motion estimation process
 +
      --sout-schro-enable-hierarchical-me=<integer [-1 .. 1]>
 +
                                Enable hierarchical Motion Estimation
 +
          Enable hierarchical Motion Estimation
 +
      --sout-schro-downsample-levels=<integer [-1 .. 8]>
 +
                                Number of levels of downsampling
 +
          Number of levels of downsampling in hierarchical motion estimation
 +
          mode
 +
      --sout-schro-enable-global-me=<integer [-1 .. 1]>
 +
                                Enable Global Motion Estimation
 +
          Enable Global Motion Estimation
 +
      --sout-schro-enable-phasecorr-me=<integer [-1 .. 1]>
 +
                                Enable Phase Correlation Estimation
 +
          Enable Phase Correlation Estimation
 +
      --sout-schro-intra-wavelet={desl_dubuc_9_7,le_gall_5_3,desl_dubuc_13_7,haar_0,haar_1,fidelity,daub_9_7}
 +
                                Intra picture DWT filter
 +
          Intra picture DWT filter
 +
      --sout-schro-inter-wavelet={desl_dubuc_9_7,le_gall_5_3,desl_dubuc_13_7,haar_0,haar_1,fidelity,daub_9_7}
 +
                                Inter picture DWT filter
 +
          Inter picture DWT filter
 +
      --sout-schro-transform-depth=<integer [-1 .. 6]>
 +
                                Number of DWT iterations
 +
          Also known as DWT levels
 +
      --sout-schro-enable-multiquant=<integer [-1 .. 1]>
 +
                                Enable multiple quantizers
 +
          Enable multiple quantizers per subband (one per codeblock)
 +
      --sout-schro-codeblock-size={automatic,small,medium,large,full}
 +
                                Size of code blocks in each subband
 +
          Size of code blocks in each subband
 +
      --sout-schro-filtering={none,center_weighted_median,gaussian,add_noise,adaptive_gaussian,lowpass}
 +
                                Prefilter
 +
          Enable adaptive prefiltering
 +
      --sout-schro-filter-value=<float [-1.000000 .. 100.000000]>
 +
                                Amount of prefiltering
 +
          Higher value implies more prefiltering
 +
      --sout-schro-enable-scd=<integer [-1 .. 1]>
 +
                                Enable Scene Change Detection
 +
          Enable Scene Change Detection
 +
      --sout-schro-perceptual-weighting={none,ccir959,moo,manos_sakrison}
 +
                                perceptual weighting method
 +
           perceptual weighting method
 +
      --sout-schro-perceptual-distance=<float [-1.000000 .. 100.000000]>
 +
                                perceptual distance
 +
           perceptual distance to calculate perceptual weight
 +
      --sout-schro-enable-noarith=<integer [-1 .. 1]>
 +
                                Disable arithmetic coding
 +
          Use variable length codes instead, useful for very high bitrates
 +
      --sout-schro-horiz-slices=<integer [-1 .. 2147483647]>
 +
                                Horizontal slices per frame
 +
          Number of horizontal slices per frame in low delay mode
 +
      --sout-schro-vert-slices=<integer [-1 .. 2147483647]>
 +
                                Vertical slices per frame
 +
          Number of vertical slices per frame in low delay mode
 +
      --sout-schro-force-profile={auto,vc2_low_delay,vc2_simple,vc2_main,main}
 +
                                Force Profile
 +
           Force Profile
  
  Puzzle interactive game video filter
+
  Intel QuickSync Video encoder for MPEG4-Part10/MPEG2 (aka H.264/H.262) (qsv)
       --puzzle-rows=<integer [1 .. 128]>
+
      --sout-qsv-software, --no-sout-qsv-software
                                 Number of puzzle rows
+
                                Enable software mode
           Number of puzzle rows
+
                                (default disabled)
       --puzzle-cols=<integer [1 .. 128]>
+
          Allow the use of the Intel Media SDK software implementation of the
                                 Number of puzzle columns
+
          codecs if no QuickSync Video hardware acceleration is present on the
           Number of puzzle columns
+
          system.
       --puzzle-black-slot, --no-puzzle-black-slot
+
      --sout-qsv-h264-profile={decide,baseline,main,extended,high}
                                 Make one tile a black slot (default disabled)
+
                                Codec Profile
           Make one slot black. Other tiles can only be swapped with the black
+
          Specify the codec profile explicitly. If you don't, the codec will
           slot. (default disabled)
+
          determine the correct profile from other sources, such as resolution
 +
          and bitrate. E.g. 'high'
 +
      --sout-qsv-h264-level={decide,1,1.1b,1.2,1.3,2,2.1,2.2,3,3.1,3.2,4,4.1,4.2,5,5.1,5.2}
 +
                                Codec Level
 +
          Specify the codec level explicitly. If you don't, the codec will
 +
          determine the correct profile from other sources, such as resolution
 +
          and bitrate. E.g. '4.2' for mpeg4-part10 or 'low' for mpeg2
 +
      --sout-qsv-mpeg2-profile={decide,simple,main,high}
 +
                                Codec Profile
 +
          Specify the codec profile explicitly. If you don't, the codec will
 +
          determine the correct profile from other sources, such as resolution
 +
          and bitrate. E.g. 'high'
 +
      --sout-qsv-mpeg2-level={decide,low,main,high,high1440}
 +
                                Codec Level
 +
          Specify the codec level explicitly. If you don't, the codec will
 +
          determine the correct profile from other sources, such as resolution
 +
          and bitrate. E.g. '4.2' for mpeg4-part10 or 'low' for mpeg2
 +
       --sout-qsv-gop-size=<integer>
 +
                                Group of Picture size
 +
          Number of pictures within the current GOP (Group of Pictures); if
 +
          GopPicSize=0, then the GOP size is unspecified. If GopPicSize=1, only
 +
          I-frames are used.
 +
      --sout-qsv-gop-refdist=<integer>
 +
                                Group of Picture Reference Distance
 +
          Distance between I- or P- key frames; if it is zero, the GOP
 +
          structure is unspecified. Note: If GopRefDist = 1, there are no
 +
          B-frames used.
 +
      --sout-qsv-idr-interval=<integer>  
 +
                                 IDR interval
 +
          For H.264, IdrInterval specifies IDR-frame interval in terms of
 +
          I-frames; if IdrInterval=0, then every I-frame is an IDR-frame. If
 +
          IdrInterval=1, then every other I-frame is an IDR-frame, etc. For
 +
          MPEG2, IdrInterval defines sequence header interval in terms of
 +
          I-frames. If IdrInterval=N, SDK inserts the sequence header before
 +
          every Nth I-frame. If IdrInterval=0 (default), SDK inserts the
 +
          sequence header once at the beginning of the stream.
 +
      --sout-qsv-target-usage={decide,quality,balanced,speed}
 +
                                Target Usage
 +
          The target usage allow to choose between different trade-offs between
 +
          quality and speed. Allowed values are: 'speed', 'balanced' and
 +
          'quality'.
 +
      --sout-qsv-rc-method={cbr,vbr,qp,avbr}
 +
                                Rate Control Method
 +
           The rate control method to use when encoding. Can be one of 'cbr',
 +
          'vbr', 'qp', 'avbr'. 'qp' mode isn't supported for mpeg2.
 +
       --sout-qsv-qp=<integer [0 .. 51]>  
 +
                                 Quantization parameter
 +
          Quantization parameter for all types of frames. This parameters sets
 +
          qpi, qpp and qpb. It has less precedence than the forementionned
 +
           parameters. Used only if rc_method is 'qp'.
 +
      --sout-qsv-qpi=<integer [0 .. 51]>
 +
                                Quantization parameter for I-frames
 +
          Quantization parameter for I-frames. This parameter overrides any qp
 +
          set globally. Used only if rc_method is 'qp'.
 +
      --sout-qsv-qpp=<integer [0 .. 51]>
 +
                                Quantization parameter for P-frames
 +
          Quantization parameter for P-frames. This parameter overrides any qp
 +
          set globally. Used only if rc_method is 'qp'.
 +
      --sout-qsv-qpb=<integer [0 .. 51]>
 +
                                Quantization parameter for B-frames
 +
          Quantization parameter for B-frames. This parameter overrides any qp
 +
          set globally. Used only if rc_method is 'qp'.
 +
       --sout-qsv-bitrate-max=<integer>
 +
                                Maximum Bitrate
 +
          Defines the maximum bitrate in kbps (1000 bits/s) for VBR rate
 +
          control method. If not set, this parameter is computed from other
 +
          sources such as bitrate, profile, level, etc.
 +
      --sout-qsv-accuracy=<integer [0 .. 100]>
 +
                                 Accuracy of RateControl
 +
          Tolerance in percentage of the 'avbr'  (Average Variable BitRate)
 +
           method. (e.g. 10 with a bitrate of 800  kbps means the encoder tries
 +
          not to  go above 880 kbps and under  730 kbps. The targeted accuracy
 +
          is only reached after a certained  convergence period. See the
 +
          convergence parameter
 +
      --sout-qsv-convergence=<integer>
 +
                                Convergence time of 'avbr' RateControl
 +
          Number of 100 frames before the 'avbr' rate control method reaches
 +
          the requested bitrate with the requested accuracy. See the accuracy
 +
           parameter.
 +
      --sout-qsv-num-slice=<integer>
 +
                                Number of slices per frame
 +
          Number of slices in each video frame; each slice contains one or more
 +
          macro-block rows. If numslice is not set, the encoder may choose any
 +
          slice partitioning allowed by the codec standard.
 +
      --sout-qsv-num-ref-frame=<integer>
 +
                                Number of reference frames
 +
          Number of reference frames
 +
      --sout-qsv-async-depth=<integer [1 .. 32]>
 +
                                Number of parallel operations
 +
          Defines the number of parallel encoding operations before we
 +
          synchronise the result. Higher numbers may result on better
 +
          throughput depending on hardware. MPEG2 needs at least 1 here.
  
  Qt interface
+
  Kate overlay decoder (kate)
      --qt-display-mode={0 (Classic look), 1 (Complete look with information area), 2 (Minimal look with no menus)}
+
Kate is a codec for text and image based overlays.
                                Selection of the starting mode and look
+
The Tiger rendering library is needed to render complex Kate streams, but VLC can still render static text and image based subtitles if it is not available.
          Start VLC with:
+
Note that changing settings below will not take effect until a new stream is played. This will hopefully be fixed soon.
- normal mode
+
       --kate-formatted, --no-kate-formatted
- a zone always present to show
+
                                 Formatted Subtitles
          information as lyrics, album arts...
 
- minimal mode with limited
 
          controls
 
       --qt-notification, --no-qt-notification
 
                                 Show notification popup on track change
 
 
                                 (default enabled)
 
                                 (default enabled)
           Show a notification popup with the artist and track name when the
+
           Kate streams allow for text formatting. VLC partly implements this,
           current playlist item changes, when VLC is minimized or hidden.
+
           but you can choose to disable all formatting. Note that this has no
          (default enabled)
+
          effect is rendering via Tiger is enabled.
       --qt-opacity=<float [0.100000 .. 1.000000]>
+
 
                                 Windows opacity between 0.1 and 1.
+
JPEG image decoder (jpeg)
           Sets the windows opacity between 0.1 and 1 for main interface,
+
  Encoding:
           playlist and extended panel. This option only works with Windows and
+
       --sout-jpeg-quality=<integer [0 .. 100]>  
           X11 with composite extensions.
+
                                 Quality level
       --qt-blingbling, --no-qt-blingbling
+
           Quality level for encoding (this can enlarge or reduce output image
                                 Use non native buttons and volume slider
+
           size).
 +
 
 +
FluidSynth MIDI synthesizer (fluidsynth)
 +
      --soundfont=<string>      SoundFont file
 +
           SoundFont file to use for software synthesis.
 +
       --synth-chorus, --no-synth-chorus
 +
                                 Chorus
 
                                 (default enabled)
 
                                 (default enabled)
           Use non native buttons and volume slider (default enabled)
+
           Chorus
       --qt-system-tray, --no-qt-system-tray
+
       --synth-gain=<float [0.000000 .. 10.000000]>
                                 Systray icon (default enabled)
+
                                 Synthesis gain
           Show an icon in the systray allowing you to control VLC media player
+
           This gain is applied to synthesis output. High values may cause
           for basic actions. (default enabled)
+
           saturation when many notes are played at a time.
       --qt-start-minimized, --no-qt-start-minimized
+
       --synth-polyphony=<integer [1 .. 65535]>
                                 Start VLC with only a systray icon (default
+
                                 Polyphony
                                disabled)
+
          The polyphony defines how many voices can be played at a time. Larger
           VLC will start with just an icon in your taskbar (default disabled)
+
           values require more processing power.
       --qt-name-in-title, --no-qt-name-in-title
+
       --synth-reverb, --no-synth-reverb
                                 Show playing item name in window title
+
                                 Reverb
 
                                 (default enabled)
 
                                 (default enabled)
           Show the name of the song or video in the controler window title.
+
           Reverb
           (default enabled)
+
      --synth-sample-rate=<integer [22050 .. 96000]>
       --qt-fs-controller, --no-qt-fs-controller
+
                                Sample rate
                                 Show a controller in fullscreen mode (default
+
           Sample rate
                                enabled)
+
 
           Show a controller in fullscreen mode (default enabled)
+
DVB subtitles decoder (dvbsub)
       --qt-volume-complete, --no-qt-volume-complete
+
       --dvbsub-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}
                                Allow the volume to be set to 400% (default
+
                                 Subpicture position
                                disabled)
+
          You can enforce the subpicture position on the video (0=center,
           Allow the volume to have range from 0% to 400%, instead of 0% to
+
          1=left, 2=right, 4=top, 8=bottom, you can also use combinations of
          200%. This option can distort the audio, since it uses software
+
           these values, e.g. 6=top-right).
          amplification. (default disabled)
+
       --dvbsub-x=<integer>      Decoding X coordinate
       --qt-autosave-volume, --no-qt-autosave-volume
+
          X coordinate of the rendered subtitle
                                 Automatically save the volume on exit
+
      --dvbsub-y=<integer>      Decoding Y coordinate
 +
          Y coordinate of the rendered subtitle
 +
      --sout-dvbsub-x=<integer>  Encoding X coordinate
 +
          X coordinate of the encoded subtitle
 +
      --sout-dvbsub-y=<integer>  Encoding Y coordinate
 +
           Y coordinate of the encoded subtitle
 +
 
 +
Dummy decoder (ddummy)
 +
       --dummy-save-es, --no-dummy-save-es
 +
                                 Save raw codec data
 
                                 (default disabled)
 
                                 (default disabled)
           Automatically save the volume on exit (default disabled)
+
           Save the raw codec data if you have selected/forced the dummy decoder
      --qt-filedialog-path=<string>
+
           in the main options.
                                Path to use in openfile dialog
+
 
           Path to use in openfile dialog
+
DTS Coherent Acoustics audio decoder (dca)
      --qt-adv-options, --no-qt-adv-options
+
       --dts-dynrng, --no-dts-dynrng
                                Advanced options (default disabled)
+
                                 DTS dynamic range compression
          Show all the advanced options in the dialogs. (default disabled)
 
      --qt-advanced-pref, --no-qt-advanced-pref
 
                                Show advanced preferences over simple ones
 
                                (default disabled)
 
          Show advanced preferences and not simple preferences when opening the
 
          preferences dialog. (default disabled)
 
       --qt-error-dialogs, --no-qt-error-dialogs
 
                                 Show unimportant error and warnings dialogs
 
 
                                 (default enabled)
 
                                 (default enabled)
           Show unimportant error and warnings dialogs (default enabled)
+
           Dynamic range compression makes the loud sounds softer, and the soft
      --qt-updates-notif, --no-qt-updates-notif
+
           sounds louder, so you can more easily listen to the stream in a noisy
                                Activate the updates availability
+
           environment without disturbing anyone. If you disable the dynamic
                                notification (default enabled)
+
           range compression the playback will be more adapted to a movie
           Activate the automatic notification of new versions of the software.
+
           theater or a listening room.
           It runs once every two weeks. (default enabled)
 
      --qt-updates-days=<integer>
 
                                Number of days between two update checks
 
          Number of days between two update checks
 
      --qt-slider-colours=<string>
 
                                Define the colors of the volume slider
 
           Define the colors of the volume slider
 
By specifying the 12 numbers
 
           separated by a ';'
 
Default is '255;255;255;20;226;20;255;176;15;235;30
 
          ;20'
 
An alternative can be '30;30;50;40;40;100;50;50;160;150;150;255'
 
      --qt-privacy-ask, --no-qt-privacy-ask
 
                                Ask for network policy at start (default
 
                                enabled)
 
          Ask for network policy at start (default enabled)
 
  
  DV (Digital Video) demuxer
+
  Closed Captions decoder (cc)
       --rawdv-hurry-up, --no-rawdv-hurry-up
+
       --cc-opaque, --no-cc-opaque
                                 Hurry up (default disabled)
+
                                Opacity
           The demuxer will advance timestamps if the input can't keep up with
+
                                 (default enabled)
          the rate. (default disabled)
+
           Setting to true makes the text to be boxed and maybe easier to read.
  
  Raw video demuxer
+
  FFmpeg audio/video decoder (avcodec)
       --rawvid-fps=<float>       Frames per Second
+
Various audio and video decoders/encoders delivered by the FFmpeg library. This includes (MS)MPEG4, DivX, SV1,H261, H263, H264, WMV, WMA, AAC, AMR, DV, MJPEG and other codecs
           This is the desired frame rate when playing raw video streams.
+
  Decoding:
       --rawvid-width=<integer>   Width
+
       --avcodec-dr, --no-avcodec-dr
           This specifies the width in pixels of the raw video stream.
+
                                Direct rendering
       --rawvid-height=<integer>  Height
+
                                (default enabled)
           This specifies the height in pixels of the raw video stream.
+
          Direct rendering
       --rawvid-chroma=<string>  Force chroma (Use carefully)
+
       --avcodec-corrupted, --no-avcodec-corrupted
           Force chroma. This is a four character string.
+
                                Show corrupted frames
       --rawvid-aspect-ratio=<string>
+
                                (default enabled)
                                 Aspect ratio
+
           Prefer visual artifacts instead of missing frames
           Aspect ratio (4:3, 16:9). Default is square pixels.
+
       --avcodec-error-resilience=<integer>  
 
+
                                Error resilience
  Remote control interface
+
          libavcodec can do error resilience. However, with a buggy encoder
       --rc-show-pos, --no-rc-show-pos
+
           (such as the ISO MPEG-4 encoder from M$) this can produce a lot of
                                 Show stream position (default disabled)
+
          errors. Valid values range from 0 to 4 (0 disables all errors
           Show the current position in seconds within the stream from time to
+
          resilience).
           time. (default disabled)
+
       --avcodec-workaround-bugs=<integer>  
       --rc-quiet, --no-rc-quiet  Do not open a DOS command box interface
+
                                Workaround bugs
 +
          Try to fix some bugs: 1 autodetect 2  old msmpeg4 4  xvid interlaced
 +
           8  ump4  16 no padding 32 ac vlc 64 Qpel chroma. This must be the sum
 +
          of the values. For example, to fix "ac vlc" and "ump4", enter 40.
 +
      --avcodec-hurry-up, --no-avcodec-hurry-up
 +
                                Hurry up
 +
                                (default enabled)
 +
          The decoder can partially decode or skip frame(s) when there is not
 +
          enough time. It's useful with low CPU power but it can produce
 +
          distorted pictures.
 +
       --avcodec-skip-frame={-1 (None), 0 (Default), 1 (Non-ref), 2 (Bidir), 3 (Non-key), 4 (All)}
 +
                                Skip frame (default=0)
 +
           Force skipping of frames to speed up decoding (-1=None, 0=Default,
 +
          1=B-frames, 2=P-frames, 3=B+P frames, 4=all frames).
 +
       --avcodec-skip-idct=<integer [-1 .. 4]>  
 +
                                 Skip idct (default=0)
 +
           Force skipping of idct to speed up decoding for frame types (-1=None,
 +
          0=Default, 1=B-frames, 2=P-frames, 3=B+P frames, 4=all frames).
 +
      --avcodec-fast, --no-avcodec-fast
 +
                                Allow speed tricks
 +
                                (default disabled)
 +
          Allow non specification compliant speedup tricks. Faster but
 +
          error-prone.
 +
      --avcodec-skiploopfilter={0 (None), 1 (Non-ref), 2 (Bidir), 3 (Non-key), 4 (All)}
 +
                                Skip the loop filter for H.264 decoding
 +
          Skipping the loop filter (aka deblocking) usually has a detrimental
 +
          effect on quality. However it provides a big speedup for high
 +
          definition streams.
 +
      --avcodec-debug=<integer> Debug mask
 +
          Set FFmpeg debug mask
 +
       --avcodec-codec=<string>  Codec name
 +
          Internal libavcodec codec name
 +
      --avcodec-hw={any,d3d11va,dxva2,none}
 +
                                Hardware decoding
 +
          This allows hardware decoding when available.
 +
      --avcodec-threads=<integer>
 +
                                Threads
 +
          Number of threads used for decoding, 0 meaning auto
 +
      --avcodec-options=<string> Advanced options
 +
          Advanced options, in the form {opt=val,opt2=val2}.
 +
  Encoding:
 +
      --sout-avcodec-codec=<string>
 +
                                Codec name
 +
          Internal libavcodec codec name
 +
      --sout-avcodec-hq={rd,bits,simple}
 +
                                 Quality level
 +
          Quality level for the encoding of motions vectors (this can slow down
 +
          the encoding very much).
 +
      --sout-avcodec-keyint=<integer>
 +
                                Ratio of key frames
 +
           Number of frames that will be coded for one key frame.
 +
      --sout-avcodec-bframes=<integer>
 +
                                Ratio of B frames
 +
           Number of B frames that will be coded between two reference frames.
 +
       --sout-avcodec-hurry-up, --no-sout-avcodec-hurry-up
 +
                                Hurry up
 
                                 (default disabled)
 
                                 (default disabled)
           By default the rc interface plugin will start a DOS command box.
+
           The encoder can make on-the-fly quality tradeoffs if your CPU can't
           Enabling the quiet mode will not bring this command box but can also
+
           keep up with the encoding rate. It will disable trellis quantization,
           be pretty annoying when you want to stop VLC and no video window is
+
           then the rate distortion of motion vectors (hq), and raise the noise
           open. (default disabled)
+
           reduction threshold to ease the encoder's task.
       --rc-host=<string>        TCP command input
+
       --sout-avcodec-interlace, --no-sout-avcodec-interlace
          Accept commands over a socket rather than stdin. You can set the
+
                                Interlaced encoding
           address and port the interface will bind to.
+
                                (default disabled)
 
+
           Enable dedicated algorithms for interlaced frames.
Remote-OSD over VNC
+
      --sout-avcodec-interlace-me, --no-sout-avcodec-interlace-me
      --rmtosd-host=<string>    VNC Host
+
                                Interlaced motion estimation
          VNC hostname or IP address.
+
                                 (default enabled)
      --rmtosd-port=<integer [1 .. 65535]>
+
           Enable interlaced motion estimation algorithms. This requires more
                                 VNC Port
+
           CPU.
           VNC portnumber.
+
       --sout-avcodec-vt=<integer>  
      --rmtosd-password=<string> VNC Password
+
                                 Video bitrate tolerance
           VNC password.
+
           Video bitrate tolerance in kbit/s.
       --rmtosd-update=<integer [200 .. 300]>
+
       --sout-avcodec-pre-me, --no-sout-avcodec-pre-me
                                 VNC poll interval
+
                                Pre-motion estimation
           In this interval an update from VNC is requested, default every 300
+
                                 (default disabled)
          ms.  
+
           Enable the pre-motion estimation algorithm.
       --rmtosd-vnc-polling, --no-rmtosd-vnc-polling
+
       --sout-avcodec-rc-buffer-size=<integer>
                                 VNC polling (default disabled)
+
                                 Rate control buffer size
           Activate VNC polling. Do NOT activate for use as VDR ffnetdev client.
+
          Rate control buffer size (in kbytes). A bigger buffer will allow for
          (default disabled)
+
           better rate control, but will cause a delay in the stream.
       --rmtosd-mouse-events, --no-rmtosd-mouse-events
+
       --sout-avcodec-rc-buffer-aggressivity=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
                                 Mouse events (default disabled)
+
                                 Rate control buffer aggressiveness
          Send mouse events to VNC host. Not needed for use as VDR ffnetdev
+
           Rate control buffer aggressiveness.
           client. (default disabled)
+
       --sout-avcodec-i-quant-factor=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
       --rmtosd-key-events, --no-rmtosd-key-events
+
                                 I quantization factor
                                 Key events (default disabled)
+
           Quantization factor of I frames, compared with P frames (for instance
           Send key events to VNC host. (default disabled)
+
           1.0 => same qscale for I and P frames).
       --rmtosd-alpha=<integer [0 .. 255]>
+
       --sout-avcodec-noise-reduction=<integer>  
                                 Alpha transparency value (default 255)
+
                                 Noise reduction
           The transparency of the OSD VNC can be changed by giving a value
+
           Enable a simple noise reduction algorithm to lower the encoding
           between 0 and 255. A lower value specifies more transparency a higher
+
          length and bitrate, at the expense of lower quality frames.
          means less transparency. The default is being not transparent (value
+
       --sout-avcodec-mpeg4-matrix, --no-sout-avcodec-mpeg4-matrix
          255) the minimum is fully transparent (value 0).
+
                                MPEG4 quantization matrix
 
+
                                (default disabled)
Rotate video filter
+
          Use the MPEG4 quantization matrix for MPEG2 encoding. This generally
       --rotate-angle=<integer [0 .. 359]>
+
          yields a better looking picture, while still retaining the
                                 Angle in degrees
+
          compatibility with standard MPEG2 decoders.
           Angle in degrees (0 to 359)
+
       --sout-avcodec-qmin=<integer>  
 
+
                                Minimum video quantizer scale
RSS and Atom feed display
+
           Minimum video quantizer scale.
       --rss-urls=<string>        Feed URLs
+
       --sout-avcodec-qmax=<integer>  
          RSS/Atom feed '|' (pipe) seperated URLs.
+
                                Maximum video quantizer scale
  Position:
+
           Maximum video quantizer scale.
       --rss-x=<integer>         X offset
+
       --sout-avcodec-trellis, --no-sout-avcodec-trellis
           X offset, from the left screen edge.
+
                                 Trellis quantization
       --rss-y=<integer>         Y offset
+
                                (default disabled)
           Y offset, down from the top.
+
           Enable trellis quantization (rate distortion for block coefficients).
       --rss-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}
+
       --sout-avcodec-qscale=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
                                 Text position
+
                                 Fixed quantizer scale
          You can enforce the text position on the video (0=center, 1=left,
+
           A fixed video quantizer scale for VBR encoding (accepted values: 0.01
           2=right, 4=top, 8=bottom; you can also use combinations of these
+
           to 255.0).
          values, eg 6 = top-right).
+
       --sout-avcodec-strict=<integer [-2 .. 2]>
  Font:
+
                                 Strict standard compliance
       --rss-opacity=<integer [0 .. 255]>
+
           Force a strict standard compliance when encoding (accepted values: -2
                                 Opacity
+
           to 2).
           Opacity (inverse of transparency) of overlay text. 0 = transparent,
+
      --sout-avcodec-lumi-masking=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
           255 = totally opaque.
+
                                Luminance masking
       --rss-color={-268435456 (Default), 0 (Black), 8421504 (Gray), 12632256 (Silver), 16777215 (White), 8388608 (Maroon), 16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 8421376 (Olive), 32768 (Green), 32896 (Teal), 65280 (Lime), 8388736 (Purple), 128 (Navy), 255 (Blue), 65535 (Aqua)}
+
           Raise the quantizer for very bright macroblocks (default: 0.0).
                                 Color
+
       --sout-avcodec-dark-masking=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
           Color of the text that will be rendered on the video. This must be an
+
                                Darkness masking
           hexadecimal (like HTML colors). The first two chars are for red, then
+
           Raise the quantizer for very dark macroblocks (default: 0.0).
          green, then blue. #000000 = black, #FF0000 = red, #00FF00 = green,
+
       --sout-avcodec-p-masking=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
           #FFFF00 = yellow (red + green), #FFFFFF = white
+
                                Motion masking
       --rss-size=<integer>       Font size, pixels
+
           Raise the quantizer for macroblocks with a high temporal complexity
           Font size, in pixels. Default is -1 (use default font size).
+
          (default: 0.0).
  Misc:
+
       --sout-avcodec-border-masking=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
       --rss-speed=<integer>     Speed of feeds
+
                                Border masking
           Speed of the RSS/Atom feeds in microseconds (bigger is slower).
+
           Raise the quantizer for macroblocks at the border of the frame
       --rss-length=<integer>     Max length
+
          (default: 0.0).
           Maximum number of characters displayed on the screen.
+
       --sout-avcodec-luma-elim-threshold=<integer>  
       --rss-ttl=<integer>       Refresh time
+
                                Luminance elimination
           Number of seconds between each forced refresh of the feeds. 0 means
+
           Eliminates luminance blocks when the PSNR isn't much changed
          that the feeds are never updated.
+
          (default: 0.0). The H264 specification recommends -4.
       --rss-images, --no-rss-images
+
       --sout-avcodec-chroma-elim-threshold=<integer>
                                 Feed images (default enabled)
+
                                 Chrominance elimination
           Display feed images if available. (default enabled)
+
          Eliminates chrominance blocks when the PSNR isn't much changed
       --rss-title={-1 (Default), 0 (Don't show), 1 (Always visible), 2 (Scroll with feed)}
+
           (default: 0.0). The H264 specification recommends 7.
                                Title display mode
+
       --sout-avcodec-aac-profile=<string>
          Title display mode. Default is 0 (hidden) if the feed has an image
+
                                Specify AAC audio profile to use
          and feed images are enabled, 1 otherwise.
+
          Specify the AAC audio profile to use for encoding the audio
 
+
          bitstream. It takes the following options: main, low, ssr (not
(Experimental) Real-Time Protocol demuxer
+
          supported),ltp, hev1, hev2 (default: low). hev1 and hev2 are
       --rtp-caching=<integer [0 .. 65535]>
+
          currently supported only with libfdk-aac enabled libavcodec
                                 RTP de-jitter buffer length (msec)
+
       --sout-avcodec-options=<string>  
           How long to wait for late RTP packets (and delay the performance).
+
                                 Advanced options
       --srtp-key=<string>       SRTP key (hexadecimal)
+
           Advanced options, in the form {opt=val,opt2=val2}.
          RTP packets will be authenticated and deciphered with this Secure RTP
+
  Demuxer:
           master shared secret key.
+
       --avformat-format=<string> Format name
       --srtp-salt=<string>       SRTP salt (hexadecimal)
+
           Internal libavcodec format name
           Secure RTP requires a (non-secret) master salt value.
+
       --avformat-options=<string>  
       --rtp-max-src=<integer [1 .. 255]>
+
                                Advanced options
                                 Maximum RTP sources
+
           Advanced options, in the form {opt=val,opt2=val2}.
           How many distinct active RTP sources are allowed at a time.
+
  Muxer:
       --rtp-timeout=<integer>   RTP source timeout (sec)
+
       --sout-avformat-mux=<string>  
           How long to wait for any packet before a source is expired.
+
                                 Avformat mux
       --rtp-max-dropout=<integer [0 .. 32767]>
+
           Force use of a specific avformat muxer.
                                Maximum RTP sequence number dropout
+
       --sout-avformat-options=<string>  
           RTP packets will be discarded if they are too much ahead (i.e. in the
+
                                Advanced options
          future) by this many packets from the last received packet.
+
           Advanced options, in the form {opt=val,opt2=val2}.
       --rtp-max-misorder=<integer [0 .. 32767]>
+
  Input:
                                 Maximum RTP sequence number misordering
+
       --avio-options=<string>   Advanced options
           RTP packets will be discarded if they are too far behind (i.e. in the
+
           Advanced options, in the form {opt=val,opt2=val2}.
          past) by this many packets from the last received packet.
+
  Stream output:
 +
       --sout-avio-options=<string>  
 +
                                 Advanced options
 +
           Advanced options, in the form {opt=val,opt2=val2}.
  
  SAP Announcements
+
  ARIB subtitles decoder (aribsub)
       --sap-addr=<string>        SAP multicast address
+
       --aribsub-ignore-ruby, --no-aribsub-ignore-ruby
          The SAP module normally chooses itself the right addresses to listen
+
                                Ignore ruby (furigana)
          to. However, you can specify a specific address.
+
                                 (default disabled)
      --sap-ipv4, --no-sap-ipv4  IPv4 SAP (default enabled)
+
           Ignore ruby (furigana) in the subtitle.
          Listen to IPv4 announcements on the standard addresses. (default
+
       --aribsub-use-coretext, --no-aribsub-use-coretext
          enabled)
+
                                 Use Core Text renderer
      --sap-ipv6, --no-sap-ipv6  IPv6 SAP (default enabled)
+
                                 (default disabled)
          Listen to IPv6 announcements on the standard addresses. (default
+
           Use Core Text renderer in the subtitle.
          enabled)
 
      --sap-timeout=<integer>    SAP timeout (seconds)
 
          Delay after which SAP items get deleted if no new announcement is
 
          received.
 
      --sap-parse, --no-sap-parse
 
                                 Try to parse the announce (default enabled)
 
           This enables actual parsing of the announces by the SAP module.
 
          Otherwise, all announcements are parsed by the "live555" (RTP/RTSP)
 
          module. (default enabled)
 
       --sap-strict, --no-sap-strict
 
                                 SAP Strict mode (default disabled)
 
          When this is set, the SAP parser will discard some non-compliant
 
          announcements. (default disabled)
 
      --sap-timeshift, --no-sap-timeshift
 
                                 Allow timeshifting (default disabled)
 
           This automatically enables timeshifting for streams discovered
 
          through SAP announcements. (default disabled)
 
  
  Scale audio tempo in sync with playback rate
+
  ATSC A/52 (AC-3) audio decoder (a52)
       --scaletempo-stride=<integer [1 .. 2000]>
+
      --a52-dynrng, --no-a52-dynrng
                                 Stride Length
+
                                A/52 dynamic range compression
 +
                                (default enabled)
 +
          Dynamic range compression makes the loud sounds softer, and the soft
 +
          sounds louder, so you can more easily listen to the stream in a noisy
 +
          environment without disturbing anyone. If you disable the dynamic
 +
          range compression the playback will be more adapted to a movie
 +
          theater or a listening room.
 +
 
 +
WaveOut audio output (waveout)
 +
      --waveout-audio-device={wavemapper,Speakers (ASUS Xonar DG Audio D ($1,$64),S/PDIF Pass-through Device (ASU ($1,$64),CABLE Input (VB-Audio Virtual C ($1,$64)}
 +
                                Select Audio Device
 +
          Select special Audio device, or let windows decide (default), change
 +
          needs VLC restart to apply.
 +
      --waveout-volume=<float [0.000000 .. 2.000000]>
 +
                                Audio volume
 +
      --waveout-float32, --no-waveout-float32
 +
                                Use float32 output
 +
                                (default enabled)
 +
          The option allows you to enable or disable the high-quality float32
 +
          audio output mode (which is not well supported by some soundcards).
 +
      --waveout-audio-channels=<integer [1 .. 9]>
 +
                                Audio output channels
 +
          Channels available for audio output. If the input has more channels
 +
          than the output, it will be down-mixed. This parameter is ignored
 +
          when digital pass-through is active.
 +
 
 +
Windows Multimedia Device output (mmdevice)
 +
      --mmdevice-backend={any,wasapi,directsound,none}
 +
                                Output back-end
 +
          Audio output back-end interface.
 +
      --mmdevice-passthrough={0 (Disabled), 1 (Enabled (without HD codecs)), 2 (Enabled)}
 +
                                HDMI/SPDIF audio passthrough
 +
          Change this value if you have issue with HD codecs when using a HDMI
 +
          receiver.
 +
      --mmdevice-audio-device={,{0.0.0.00000000}.{435351ed-7f2a-4588-83d5-d460b7fa5fa7},{0.0.0.00000000}.{4b187877-fc84-4130-b74c-87ece9e3eb5f},{0.0.0.00000000}.{ecb415c9-9835-4a9d-b618-104e7179b206}}
 +
                                Output device
 +
          Select your audio output device
 +
      --mmdevice-volume=<float [0.000000 .. 1.250000]>
 +
                                Audio volume
 +
          Audio volume in hundredths of decibels (dB).
 +
 
 +
DirectX audio output (directsound)
 +
      --directx-audio-device={,{ECB415C9-9835-4A9D-B618-104E7179B206},{435351ED-7F2A-4588-83D5-D460B7FA5FA7},{4B187877-FC84-4130-B74C-87ECE9E3EB5F}}
 +
                                Output device
 +
          Select your audio output device
 +
      --directx-audio-float32, --no-directx-audio-float32
 +
                                Use float32 output
 +
                                (default enabled)
 +
          The option allows you to enable or disable the high-quality float32
 +
          audio output mode (which is not well supported by some soundcards).
 +
      --directx-audio-speaker={Windows default,Mono,Stereo,Quad,5.1,7.1}
 +
                                Speaker configuration
 +
          Select speaker configuration you want to use. This option doesn't
 +
          upmix! So NO e.g. Stereo -> 5.1 conversion.
 +
      --directx-volume=<float [0.000000 .. 2.000000]>
 +
                                Audio volume
 +
          Audio volume in hundredths of decibels (dB).
 +
 
 +
Audio memory output (amem)
 +
      --amem-format=<string>    Sample format
 +
          Sample format
 +
      --amem-rate=<integer [1 .. 352800]>
 +
                                Sample rate
 +
          Sample rate
 +
      --amem-channels=<integer [1 .. 9]>
 +
                                Channels count
 +
          Channels count
 +
 
 +
File audio output (afile)
 +
      --audiofile-file=<string>  Output file
 +
          File to which the audio samples will be written to ("-" for stdout).
 +
      --audiofile-format={u8,s16,float32,spdif}
 +
                                Output format
 +
          Output format
 +
      --audiofile-channels=<integer [0 .. 6]>
 +
                                Number of output channels
 +
          By default (0), all the channels of the incoming will be saved but
 +
          you can restrict the number of channels here.
 +
      --audiofile-wav, --no-audiofile-wav
 +
                                Add WAVE header
 +
                                (default enabled)
 +
          Instead of writing a raw file, you can add a WAV header to the file.
 +
 
 +
Simple stereo widening effect (stereo_widen)
 +
This filter enhances the stereo effect by suppressing mono (signal common to both channels) and by delaying the signal of left into right and vice versa, thereby widening the stereo effect.
 +
      --stereowiden-delay=<float [1.000000 .. 100.000000]>
 +
                                Delay time
 +
          Time in ms of the delay of left signal into right and vice versa.
 +
      --stereowiden-feedback=<float [0.000000 .. 0.900000]>
 +
                                Feedback gain
 +
          Amount of gain in delayed left signal into right and vice versa.
 +
          Gives a delay effect of left signal in right output and vice versa
 +
          which gives widening effect.
 +
      --stereowiden-crossfeed=<float [0.000000 .. 0.800000]>
 +
                                Crossfeed
 +
          Cross feed of left into right with inverted phase. This helps in
 +
          suppressing the mono. If the value is 1 it will cancel all the signal
 +
          common to both channels.
 +
      --stereowiden-dry-mix=<float [0.000000 .. 1.000000]>
 +
                                Dry mix
 +
          Level of input signal of original channel.
 +
 
 +
Speex resampler (speex_resampler)
 +
      --speex-resampler-quality=<integer [0 .. 10]>
 +
                                Resampling quality
 +
          Resampling quality, from worst to best
 +
 
 +
Audio Spatializer (spatializer)
 +
      --spatializer-roomsize=<float [0.000000 .. 1.100000]>
 +
                                Room size
 +
          Defines the virtual surface of the room emulated by the filter.
 +
      --spatializer-width=<float [0.000000 .. 1.000000]>
 +
                                Room width
 +
          Width of the virtual room
 +
      --spatializer-wet=<float [0.000000 .. 1.000000]>
 +
                                Wet
 +
      --spatializer-dry=<float [0.000000 .. 1.000000]>
 +
                                Dry
 +
      --spatializer-damp=<float [0.000000 .. 1.000000]>
 +
                                Damp
 +
 
 +
Ambisonics renderer and binauralizer (spatialaudio)
 +
      --spatialaudio-headphones, --no-spatialaudio-headphones
 +
                                Headphones mode (binaural)
 +
                                (default disabled)
 +
          If the output is stereo, render ambisonics with the binaural decoder.
 +
      --hrtf-file=<string>      HRTF file for the binauralization
 +
          Custom HRTF (Head-related transfer function) file in the SOFA format.
 +
 
 +
Audio tempo scaler synched with rate (scaletempo)
 +
       --scaletempo-stride=<integer [1 .. 2000]>  
 +
                                 Stride Length
 
           Length in milliseconds to output each stride
 
           Length in milliseconds to output each stride
       --scaletempo-overlap=<float [0.000000 .. 1.000000]>
+
       --scaletempo-overlap=<float [0.000000 .. 1.000000]>  
 
                                 Overlap Length
 
                                 Overlap Length
 
           Percentage of stride to overlap
 
           Percentage of stride to overlap
       --scaletempo-search=<integer [0 .. 200]>
+
       --scaletempo-search=<integer [0 .. 200]>  
 
                                 Search Length
 
                                 Search Length
 
           Length in milliseconds to search for best overlap position
 
           Length in milliseconds to search for best overlap position
  
  Screen Input
+
  Pitch Shifter (scaletempo_pitch)
       --screen-caching=<integer> Caching value in ms
+
       --scaletempo-stride=<integer [1 .. 2000]>  
           Caching value for screen capture. This value should be set in
+
                                Stride Length
          milliseconds.
+
           Length in milliseconds to output each stride
       --screen-fps=<float>       Frame rate
+
       --scaletempo-overlap=<float [0.000000 .. 1.000000]>  
          Desired frame rate for the capture.
+
                                Overlap Length
      --screen-top=<integer>    Subscreen top left corner
+
           Percentage of stride to overlap
           Top coordinate of the subscreen top left corner.
+
       --scaletempo-search=<integer [0 .. 200]>  
       --screen-left=<integer>   Subscreen top left corner
+
                                Search Length
          Left coordinate of the subscreen top left corner.
+
           Length in milliseconds to search for best overlap position
      --screen-width=<integer>  Subscreen width
+
       --pitch-shift=<float [-12.000000 .. 12.000000]>  
           Subscreen width
+
                                 Pitch Shift
       --screen-height=<integer>  Subscreen height
+
           Pitch shift in semitones.
          Subscreen height
 
      --screen-follow-mouse, --no-screen-follow-mouse
 
                                Follow the mouse (default disabled)
 
          Follow the mouse when capturing a subscreen. (default disabled)
 
      --screen-fragment-size=<integer>
 
                                 Capture fragment size
 
           Optimize the capture by fragmenting the screen in chunks of
 
          predefined height (16 might be a good value, and 0 means disabled).
 
  
  Augment contrast between contours.
+
  Secret Rabbit Code (libsamplerate) resampler (samplerate)
       --sharpen-sigma=<float [0.000000 .. 2.000000]>
+
       --src-converter-type={0 (Sinc function (best quality)), 1 (Sinc function (medium quality)), 2 (Sinc function (fast)), 3 (Zero Order Hold (fastest)), 4 (Linear (fastest))}
                                 Sharpen strength (0-2)
+
                                 Sample rate converter type
           Set the Sharpen strength, between 0 and 2. Defaults to 0.05.
+
          Different resampling algorithms are supported. The best one is
 +
           slower, while the fast one exhibits low quality.
  
  Shoutcast radio listings
+
  Audio channel remapper (remap)
 +
      --aout-remap-channel-left={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)}
 +
                                Left
 +
          Left
 +
      --aout-remap-channel-center={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)}
 +
                                Center
 +
          Center
 +
      --aout-remap-channel-right={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)}
 +
                                Right
 +
          Right
 +
      --aout-remap-channel-rearleft={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)}
 +
                                Rear left
 +
          Rear left
 +
      --aout-remap-channel-rearcenter={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)}
 +
                                Rear center
 +
          Rear center
 +
      --aout-remap-channel-rearright={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)}
 +
                                Rear right
 +
          Rear right
 +
      --aout-remap-channel-middleleft={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)}
 +
                                Side left
 +
          Side left
 +
      --aout-remap-channel-middleright={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)}
 +
                                Side right
 +
          Side right
 +
      --aout-remap-channel-lfe={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)}
 +
                                Low-frequency effects
 +
          Low-frequency effects
 +
      --aout-remap-normalize, --no-aout-remap-normalize
 +
                                Normalize channels
 +
                                (default enabled)
 +
          When mapping more than one channel to a single output channel,
 +
          normalize the output accordingly.
  
  Show interface with mouse
+
  Parametric Equalizer (param_eq)
       --showintf-threshold=<integer>
+
       --param-eq-lowf=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
                                 Threshold
+
                                 Low freq (Hz)
          Height of the zone triggering the interface.
+
      --param-eq-lowgain=<float [-20.000000 .. 20.000000]>
 +
                                Low freq gain (dB)
 +
      --param-eq-highf=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                High freq (Hz)
 +
      --param-eq-highgain=<float [-20.000000 .. 20.000000]>
 +
                                High freq gain (dB)
 +
      --param-eq-f1=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                Freq 1 (Hz)
 +
      --param-eq-gain1=<float [-20.000000 .. 20.000000]>
 +
                                Freq 1 gain (dB)
 +
      --param-eq-q1=<float [0.100000 .. 100.000000]>
 +
                                Freq 1 Q
 +
      --param-eq-f2=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                Freq 2 (Hz)
 +
      --param-eq-gain2=<float [-20.000000 .. 20.000000]>
 +
                                Freq 2 gain (dB)
 +
      --param-eq-q2=<float [0.100000 .. 100.000000]>
 +
                                Freq 2 Q
 +
      --param-eq-f3=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                Freq 3 (Hz)
 +
      --param-eq-gain3=<float [-20.000000 .. 20.000000]>
 +
                                Freq 3 gain (dB)
 +
      --param-eq-q3=<float [0.100000 .. 100.000000]>
 +
                                Freq 3 Q
  
  Skinnable Interface
+
  Volume normalizer (normvol)
       --skins2-last=<string>     Skin to use
+
       --norm-buff-size=<integer> Number of audio buffers
           Path to the skin to use.
+
           This is the number of audio buffers on which the power measurement is
      --skins2-config=<string>  Config of last used skin
+
           made. A higher number of buffers will increase the response time of
           Windows configuration of the last skin used. This option is updated
+
           the filter to a spike but will make it less sensitive to short
           automatically, do not touch it.
+
          variations.
       --skins2-systray, --no-skins2-systray
+
       --norm-max-level=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
                                 Systray icon (default disabled)
+
                                 Maximal volume level
           Show a systray icon for VLC (default disabled)
+
           If the average power over the last N buffers is higher than this
      --skins2-taskbar, --no-skins2-taskbar
+
           value, the volume will be normalized. This value is a positive
                                Show VLC on the taskbar (default enabled)
+
           floating point number. A value between 0.5 and 10 seems sensible.
           Show VLC on the taskbar (default enabled)
 
      --skins2-transparency, --no-skins2-transparency
 
                                Enable transparency effects (default disabled)
 
          You can disable all transparency effects if you want. This is mainly
 
           useful when moving windows does not behave correctly. (default
 
          disabled)
 
      --skinned-playlist, --no-skinned-playlist
 
                                Use a skinned playlist (default enabled)
 
          Use a skinned playlist (default enabled)
 
  
  spatializer
+
  Stereo to mono downmixer (mono)
       --Roomsize=<float>        (null)
+
       --sout-mono-downmix, --no-sout-mono-downmix
       --Width=<float>            (null)
+
                                Use downmix algorithm
      --Wet=<float>              (null)
+
                                (default enabled)
      --Dry=<float>              (null)
+
          This option selects a stereo to mono downmix algorithm that is used
      --Damp=<float>            (null)
+
          in the headphone channel mixer. It gives the effect of standing in a
 +
          room full of speakers.
 +
       --sout-mono-channel={0 (Left), 1 (Right), 4 (Rear left), 5 (Rear right), 7 (Center), 8 (Low-frequency effects), 2 (Side left), 3 (Side right), 6 (Rear center)}
 +
                                Select channel to keep
 +
          This option silences all other channels except the selected channel.
  
  Bridge stream output
+
  Headphone virtual spatialization effect (headphone)
  Bridge out:
+
This effect gives you the feeling that you are standing in a room with a complete 7.1 speaker set when using only a headphone, providing a more realistic sound experience. It should also be more comfortable and less tiring when listening to music for long periods of time.
       --sout-bridge-out-id=<integer>
+
It works with any source format from mono to 7.1.
                                 ID
+
       --headphone-dim=<integer> Characteristic dimension
           Integer identifier for this elementary stream. This will be used to
+
          Distance between front left speaker and listener in meters.
           "find" this stream later.
+
      --headphone-compensate, --no-headphone-compensate
  Bridge in:
+
                                Compensate delay
       --sout-bridge-in-delay=<integer>
+
                                 (default disabled)
                                 Delay
+
          The delay which is introduced by the physical algorithm may sometimes
           Pictures coming from the picture video outputs will be delayed
+
           be disturbing for the synchronization between lips-movement and
           according to this value (in milliseconds, should be >= 100 ms). For
+
          speech. In case, turn this on to compensate.
           high values, you will need to raise caching values.
+
      --headphone-dolby, --no-headphone-dolby
       --sout-bridge-in-id-offset=<integer>
+
                                No decoding of Dolby Surround
                                 ID Offset
+
                                (default disabled)
           Offset to add to the stream IDs specified in bridge_out to obtain the
+
          Dolby Surround encoded streams won't be decoded before being
           stream IDs bridge_in will register.
+
          processed by this filter. Enabling this setting is not recommended.
 +
 
 +
Gain control filter (gain)
 +
      --gain-value=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                Gain multiplier
 +
          Increase or decrease the gain (default 1.0)
 +
 
 +
Equalizer with 10 bands (equalizer)
 +
      --equalizer-preset={flat,classical,club,dance,fullbass,fullbasstreble,fulltreble,headphones,largehall,live,party,pop,reggae,rock,ska,soft,softrock,techno}
 +
                                Equalizer preset
 +
          Preset to use for the equalizer.
 +
      --equalizer-bands=<string> Bands gain
 +
          Don't use presets, but manually specified bands. You need to provide
 +
           10 values between -20dB and 20dB, separated by spaces, e.g. "0 2 4 2
 +
          0 -2 -4 -2 0 2".
 +
      --equalizer-2pass, --no-equalizer-2pass
 +
                                Two pass
 +
                                (default disabled)
 +
          Filter the audio twice. This provides a more intense effect.
 +
      --equalizer-vlcfreqs, --no-equalizer-vlcfreqs
 +
                                Use VLC frequency bands
 +
                                (default enabled)
 +
          Use the VLC frequency bands. Otherwise, use the ISO Standard
 +
          frequency bands.
 +
      --equalizer-preamp=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                Global gain
 +
          Set the global gain in dB (-20 ... 20).
 +
 
 +
Dynamic range compressor (compressor)
 +
       --compressor-rms-peak=<float [0.000000 .. 1.000000]>
 +
                                RMS/peak
 +
          Set the RMS/peak.
 +
      --compressor-attack=<float [1.500000 .. 400.000000]>  
 +
                                 Attack time
 +
           Set the attack time in milliseconds.
 +
      --compressor-release=<float [2.000000 .. 800.000000]>
 +
                                Release time
 +
           Set the release time in milliseconds.
 +
      --compressor-threshold=<float [-30.000000 .. 0.000000]>  
 +
                                Threshold level
 +
          Set the threshold level in dB.
 +
      --compressor-ratio=<float [1.000000 .. 20.000000]>
 +
                                Ratio
 +
          Set the ratio (n:1).
 +
      --compressor-knee=<float [1.000000 .. 10.000000]>
 +
                                Knee radius
 +
           Set the knee radius in dB.
 +
       --compressor-makeup-gain=<float [0.000000 .. 24.000000]>
 +
                                Makeup gain
 +
          Set the makeup gain in dB (0 ... 24).
 +
 
 +
Sound Delay (chorus_flanger)
 +
Add a delay effect to the sound
 +
      --delay-time=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
 +
                                 Delay time
 +
           Time in milliseconds of the average delay. Note average
 +
      --sweep-depth=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                Sweep Depth
 +
          Time in milliseconds of the maximum sweep depth. Thus, the sweep
 +
           range will be delay-time +/- sweep-depth.
 +
      --sweep-rate=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                Sweep Rate
 +
          Rate of change of sweep depth in milliseconds shift per second of
 +
          play
 +
      --feedback-gain=<float [-0.900000 .. 0.900000]>
 +
                                Feedback gain
 +
          Gain on Feedback loop
 +
      --wet-mix=<float [-0.999000 .. 0.999000]>
 +
                                Wet mix
 +
          Level of delayed signal
 +
      --dry-mix=<float [-0.999000 .. 0.999000]>
 +
                                Dry Mix
 +
          Level of input signal
  
  Display stream output
+
  Audio part of the BarGraph function (audiobargraph_a)
       --sout-display-audio, --no-sout-display-audio
+
       --audiobargraph_a-bargraph=<integer>
                                 Enable audio (default enabled)
+
                                Defines if BarGraph information should be sent
           Enable/disable audio rendering. (default enabled)
+
          Defines if BarGraph information should be sent. 1 if the information
       --sout-display-video, --no-sout-display-video
+
          should be sent, 0 otherwise (default 1).
                                 Enable video (default enabled)
+
      --audiobargraph_a-bargraph_repetition=<integer>
           Enable/disable video rendering. (default enabled)
+
                                Sends the barGraph information every n audio
       --sout-display-delay=<integer>
+
                                 packets
                                 Delay
+
          Defines how often the barGraph information should be sent. Sends the
           Introduces a delay in the display of the stream.
+
          barGraph information every n audio packets (default 4).
 +
      --audiobargraph_a-silence=<integer>
 +
                                Defines if silence alarm information should be
 +
                                sent
 +
           Defines if silence alarm information should be sent. 1 if the
 +
          information should be sent, 0 otherwise (default 1).
 +
       --audiobargraph_a-time_window=<integer>
 +
                                Time window to use in ms
 +
          Time Window during when the audio level is measured in ms for silence
 +
          detection. If the audio level is under the threshold during this
 +
          time, an alarm is sent (default 5000).
 +
      --audiobargraph_a-alarm_threshold=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                 Minimum Audio level to raise the alarm
 +
           Threshold to be attained to raise an alarm. If the audio level is
 +
          under the threshold during this time, an alarm is sent (default 0.1).
 +
       --audiobargraph_a-repetition_time=<integer>  
 +
                                 Time between two alarm messages in ms
 +
           Time between two alarm messages in ms. This value is used to avoid
 +
          alarm saturation (default 2000).
  
  Elementary stream output
+
  UDP stream output (udp)
       --sout-es-access=<string>  Output access method
+
       --sout-udp-caching=<integer>  
          This is the default output access method that will be used.
+
                                 Caching value (ms)
      --sout-es-access-audio=<string>
+
           Default caching value for outbound UDP streams. This value should be
                                 Audio output access method
+
           set in milliseconds.
           This is the output access method that will be used for audio.
+
       --sout-udp-group=<integer> Group packets
      --sout-es-access-video=<string>
+
           Packets can be sent one by one at the right time or by groups. You
                                Video output access method
+
           can choose the number of packets that will be sent at a time. It
          This is the output access method that will be used for video.
+
           helps reducing the scheduling load on heavily-loaded systems.
      --sout-es-mux=<string>    Output muxer
 
           This is the default muxer method that will be used.
 
       --sout-es-mux-audio=<string>
 
                                Audio output muxer
 
           This is the muxer that will be used for audio.
 
      --sout-es-mux-video=<string>
 
                                Video output muxer
 
           This is the muxer that will be used for video.
 
      --sout-es-dst=<string>    Output URL
 
          This is the default output URI.
 
      --sout-es-dst-audio=<string>
 
                                Audio output URL
 
           This is the output URI that will be used for audio.
 
      --sout-es-dst-video=<string>
 
                                Video output URL
 
          This is the output URI that will be used for video.
 
  
  Mosaic bridge stream output
+
  IceCAST output (access_output_shout)
       --sout-mosaic-bridge-id=<string>
+
       --sout-shout-name=<string> Stream name
                                 ID
+
          Name to give to this stream/channel on the shoutcast/icecast server.
           Specify an identifier string for this subpicture
+
      --sout-shout-description=<string>  
       --sout-mosaic-bridge-width=<integer>
+
                                 Stream description
                                 Video width
+
           Description of the stream content or information about your channel.
           Output video width.
+
       --sout-shout-mp3, --no-sout-shout-mp3
       --sout-mosaic-bridge-height=<integer>
+
                                Stream MP3
                                 Video height
+
                                (default disabled)
           Output video height.
+
          You normally have to feed the shoutcast module with Ogg streams. It
       --sout-mosaic-bridge-sar=<string>
+
          is also possible to stream MP3 instead, so you can forward MP3
                                 Sample aspect ratio
+
          streams to the shoutcast/icecast server.
           Sample aspect ratio of the destination (1:1, 3:4, 2:3).
+
      --sout-shout-genre=<string>  
       --sout-mosaic-bridge-chroma=<string>
+
                                 Genre description
                                 Image chroma
+
           Genre of the content.
           Force the use of a specific chroma. Use YUVA if you're planning to
+
       --sout-shout-url=<string>  URL description
           use the Alphamask or Bluescreen video filter.
+
          URL with information about the stream or your channel.
       --sout-mosaic-bridge-vfilter=<string>
+
      --sout-shout-bitrate=<string>  
                                 Video filter
+
                                 Bitrate
           Video filters will be applied to the video stream.
+
           Bitrate information of the transcoded stream.
       --sout-mosaic-bridge-alpha=<integer [0 .. 255]>
+
       --sout-shout-samplerate=<string>
                                 Transparency
+
                                Samplerate
           Transparency of the mosaic picture.
+
          Samplerate information of the transcoded stream.
       --sout-mosaic-bridge-x=<integer>
+
      --sout-shout-channels=<string>  
                                 X offset
+
                                 Number of channels
           X coordinate of the upper left corner in the mosaic if non negative.
+
           Number of channels information of the transcoded stream.
       --sout-mosaic-bridge-y=<integer>
+
       --sout-shout-quality=<string>  
                                 Y offset
+
                                 Ogg Vorbis Quality
           Y coordinate of the upper left corner in the mosaic if non negative.
+
           Ogg Vorbis Quality information of the transcoded stream.
 +
      --sout-shout-public, --no-sout-shout-public
 +
                                Stream public
 +
                                (default disabled)
 +
          Make the server publicly available on the 'Yellow Pages' (directory
 +
           listing of streams) on the icecast/shoutcast website. Requires the
 +
          bitrate information specified for shoutcast. Requires Ogg streaming
 +
          for icecast.
 +
 
 +
HTTP Live streaming output (access_output_livehttp)
 +
       --sout-livehttp-seglen=<integer>
 +
                                Segment length
 +
          Length of TS stream segments
 +
      --sout-livehttp-numsegs=<integer>  
 +
                                 Number of segments
 +
           Number of segments to include in index
 +
       --sout-livehttp-initial-segment-number=<integer>  
 +
                                 Number of first segment
 +
           The number of the first segment generated
 +
      --sout-livehttp-splitanywhere, --no-sout-livehttp-splitanywhere
 +
                                Split segments anywhere
 +
                                (default disabled)
 +
          Don't require a keyframe before splitting a segment. Needed for audio
 +
          only.
 +
      --sout-livehttp-delsegs, --no-sout-livehttp-delsegs
 +
                                Delete segments
 +
                                (default enabled)
 +
          Delete segments when they are no longer needed
 +
      --sout-livehttp-ratecontrol, --no-sout-livehttp-ratecontrol
 +
                                Use muxers rate control mechanism
 +
                                (default disabled)
 +
          Use muxers rate control mechanism
 +
      --sout-livehttp-caching, --no-sout-livehttp-caching
 +
                                Allow cache
 +
                                (default disabled)
 +
          Add EXT-X-ALLOW-CACHE:NO directive in playlist-file if this is
 +
          disabled
 +
       --sout-livehttp-generate-iv, --no-sout-livehttp-generate-iv
 +
                                Use randomized IV for encryption
 +
                                (default disabled)
 +
          Generate IV instead using segment-number as IV
 +
      --sout-livehttp-index=<string>  
 +
                                 Index file
 +
           Path to the index file to create
 +
      --sout-livehttp-index-url=<string>
 +
                                Full URL to put in index file
 +
          Full URL to put in index file. Use #'s to represent segment number
 +
      --sout-livehttp-key-uri=<string>
 +
                                AES key URI to place in playlist
 +
          AES key URI to place in playlist
 +
       --sout-livehttp-key-file=<string>  
 +
                                 AES key file
 +
           File containing the 16 bytes encryption key
 +
      --sout-livehttp-key-loadfile=<string>
 +
                                File where vlc reads key-uri and
 +
                                keyfile-location
 +
          File is read when segment starts and is assumed to be in format:
 +
          key-uri\nkey-file. File is read on the segment opening and values are
 +
          used on that segment.
  
  RTP stream output
+
  HTTP stream output (http)
       --sout-rtp-dst=<string>   Destination
+
       --sout-http-user=<string> Username
           This is the output URL that will be used.
+
           Username that will be requested to access the stream.
       --sout-rtp-sdp=<string>   SDP
+
       --sout-http-pwd=<string>   Password
           This allows you to specify how the SDP (Session Descriptor) for this
+
           Password that will be requested to access the stream.
          RTP session will be made available. You must use an url:
+
       --sout-http-mime=<string> Mime
          http://location to access the SDP via HTTP, rtsp://location for RTSP
+
           MIME returned by the server (autodetected if not specified).
          access, and sap:// for the SDP to be announced via SAP.
+
       --sout-http-metacube, --no-sout-http-metacube
       --sout-rtp-mux=<string>   Muxer
+
                                Metacube
           This allows you to specify the muxer used for the streaming output.
+
                                 (default disabled)
          Default is to use no muxer (standard RTP stream).
+
           Use the Metacube protocol. Needed for streaming to the Cubemap
       --sout-rtp-sap, --no-sout-rtp-sap
+
          reflector.
                                 SAP announcing (default disabled)
+
 
           Announce this session with SAP. (default disabled)
+
File stream output (file)
       --sout-rtp-name=<string>  Session name
+
       --sout-file-overwrite, --no-sout-file-overwrite
           This is the name of the session that will be announced in the SDP
+
                                Overwrite existing file
          (Session Descriptor).
+
                                (default enabled)
       --sout-rtp-description=<string>
+
           If the file already exists, it will be overwritten.
                                 Session description
+
      --sout-file-append, --no-sout-file-append
           This allows you to give a short description with details about the
+
                                Append to file
          stream, that will be announced in the SDP (Session Descriptor).
+
                                (default disabled)
       --sout-rtp-url=<string>    Session URL
+
          Append to file if it exists instead of replacing it.
           This allows you to give an URL with more details about the stream
+
       --sout-file-format, --no-sout-file-format
           (often the website of the streaming organization), that will be
+
                                Format time and date
           announced in the SDP (Session Descriptor).
+
                                 (default disabled)
       --sout-rtp-email=<string> Session email
+
           Perform ISO C time and date formatting on the file path
           This allows you to give a contact mail address for the stream, that
+
 
          will be announced in the SDP (Session Descriptor).
+
VNC client access (vnc)
       --sout-rtp-phone=<string> Session phone number
+
       --rfb-user=<string>        Username
           This allows you to give a contact telephone number for the stream,
+
          Username
           that will be announced in the SDP (Session Descriptor).
+
      --rfb-password=<string>    Password
       --sout-rtp-proto={dccp,sctp,tcp,udp,udplite}
+
           Password
                                 Transport protocol
+
      --rfb-x509-ca=<string>    X.509 Certificate Authority
           This selects which transport protocol to use for RTP.
+
           Certificate of the Authority to verify server's against
       --sout-rtp-port=<integer> Port
+
      --rfb-x509-crl=<string>    X.509 Certificate Revocation List
           This allows you to specify the base port for the RTP streaming.
+
           List of revoked servers certificates
       --sout-rtp-port-audio=<integer>
+
       --rfb-x509-client-cert=<string>  
                                 Audio port
+
                                X.509 Client certificate
           This allows you to specify the default audio port for the RTP
+
           Certificate for client authentication
          streaming.
+
       --rfb-x509-client-key=<string>  
       --sout-rtp-port-video=<integer>
+
                                X.509 Client private key
                                 Video port
+
           Private key for authentication by certificate
           This allows you to specify the default video port for the RTP
+
      --rfb-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
           streaming.
+
                                Frame rate
       --sout-rtp-ttl=<integer>   Hop limit (TTL)
+
           How many times the screen content should be refreshed per second.
           This is the hop limit (also known as "Time-To-Live" or TTL) of the
+
       --rfb-chroma={RV32,RV24,RV16,RGB8}  
           multicast packets sent by the stream output (0 = use operating system
+
                                 Frame buffer depth
           built-in default).
+
           RGB chroma (RV32, RV24, RV16, RGB2)
       --sout-rtp-rtcp-mux, --no-sout-rtp-rtcp-mux
+
       --rfb-compress-level=<integer [0 .. 9]>  
                                 RTP/RTCP multiplexing (default disabled)
+
                                Compression level
           This sends and receives RTCP packet multiplexed over the same port as
+
           Transfer compression level from 0 (none) to 9 (max)
           RTP packets. (default disabled)
+
       --rfb-quality-level=<integer [1 .. 9]>  
       --sout-rtp-key=<string>   SRTP key (hexadecimal)
+
                                 Image quality
          RTP packets will be integrity-protected and ciphered with this Secure
+
           Image quality 1 to 9 (max)
           RTP master shared secret key.
+
 
       --sout-rtp-salt=<string>   SRTP salt (hexadecimal)
+
VDR recordings (vdr)
           Secure RTP requires a (non-secret) master salt value.
+
Support for VDR recordings (http://www.tvdr.de/).
       --sout-rtp-mp4a-latm, --no-sout-rtp-mp4a-latm
+
       --vdr-chapter-offset=<integer>  
                                MP4A LATM (default disabled)
+
                                 Chapter offset in ms
           This allows you to stream MPEG4 LATM audio streams (see RFC3016).
+
           Move all chapters. This value should be set in milliseconds.
          (default disabled)
+
      --vdr-fps=<float [1.000000 .. 1000.000000]>
 +
                                Frame rate
 +
           Default frame rate for chapter import.
 +
 
 +
UDP input (udp)
 +
       --udp-timeout=<integer>   UDP Source timeout (sec)
 +
 
 +
Time code subpicture elementary stream generator (timecode)
 +
      --timecode-fps={24/1,25/1,30000/1001,30/1}
 +
                                Frame rate
 +
           Frame rate
 +
 
 +
SMB input (smb)
 +
Samba (Windows network shares) input
 +
      --smb-user=<string>        Username
 +
          Username that will be used for the connection, if no username is set
 +
           in the URL.
 +
      --smb-pwd=<string>        Password
 +
          Password that will be used for the connection, if no username or
 +
           password are set in URL.
 +
       --smb-domain=<string>      SMB domain
 +
          Domain/Workgroup that will be used for the connection.
 +
 
 +
Shared memory framebuffer (shm)
 +
      --shm-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                Frame rate
 +
          How many times the screen content should be refreshed per second.
 +
      --shm-depth={0 (XWD file (autodetect)), 8 (8 bits), 15 (15 bits), 16 (16 bits), 24 (24 bits), 32 (32 bits)}
 +
                                 Frame buffer depth
 +
           Pixel depth of the frame buffer, or zero for XWD file
 +
      --shm-width=<integer [0 .. 65535]>
 +
                                Frame buffer width
 +
           Pixel width of the frame buffer (ignored for XWD file)
 +
       --shm-height=<integer [0 .. 65535]>  
 +
                                Frame buffer height
 +
           Pixel height of the frame buffer (ignored for XWD file)
 +
       --shm-file=<string>       Frame buffer file
 +
           Path of the memory mapped file of the frame buffer
 +
 
 +
SFTP input (sftp)
 +
       --sftp-port=<integer>      SFTP port
 +
          SFTP port number to use on the server
 +
      --sftp-user=<string>      Username
 +
          Username that will be used for the connection, if no username is set
 +
          in the URL.
 +
      --sftp-pwd=<string>        Password
 +
          Password that will be used for the connection, if no username or
 +
           password are set in URL.
  
  Standard stream output
+
  Screen Input (screen)
       --sout-standard-access=<string>
+
       --screen-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
                                 Output access method
+
                                 Frame rate
           Output method to use for the stream.
+
           Desired frame rate for the capture.
       --sout-standard-mux=<string>
+
       --screen-top=<integer>     Region top row
                                Output muxer
+
           Ordinate of the capture region in pixels.
           Muxer to use for the stream.
+
       --screen-left=<integer>   Region left column
       --sout-standard-dst=<string>
+
           Abscissa of the capture region in pixels.
                                Output destination
+
       --screen-width=<integer>   Capture region width
           Destination (URL) to use for the stream. Overrides path and bind
+
           Capture region width
          parameters
+
       --screen-height=<integer> Capture region height
       --sout-standard-bind=<string>
+
           Capture region height
                                address to bind to (helper setting for dst)
+
       --screen-follow-mouse, --no-screen-follow-mouse
           address:port to bind vlc to listening incoming streams helper setting
+
                                Follow the mouse
          for dst,dst=bind+'/'+path. dst-parameter overrides this
+
                                 (default disabled)
       --sout-standard-path=<string>
+
           Follow the mouse when capturing a subscreen.
                                filename for stream (helper setting for dst)
+
       --screen-mouse-image=<string>  
           Filename for stream helper setting for dst, dst=bind+'/'+path,
+
                                 Mouse pointer image
          dst-parameter overrides this
+
           If specified, will use the image to draw the mouse pointer on the
       --sout-standard-sap, --no-sout-standard-sap
+
           capture.
                                 SAP announcing (default disabled)
+
       --screen-fragment-size=<integer>  
           Announce this session with SAP. (default disabled)
+
                                 Capture fragment size
       --sout-standard-name=<string>
+
           Optimize the capture by fragmenting the screen in chunks of
                                 Session name
+
           predefined height (16 might be a good value, and 0 means disabled).
           This is the name of the session that will be announced in the SDP
+
 
           (Session Descriptor).
+
SAT>IP Receiver Plugin (satip)
       --sout-standard-group=<string>
+
       --satip-buffer=<integer>   Receive buffer
                                 Session groupname
+
           UDP receive buffer size (bytes)
           This allows you to specify a group for the session, that will be
+
       --satip-multicast, --no-satip-multicast
           announced if you choose to use SAP.
+
                                 Request multicast stream
       --sout-standard-description=<string>
+
                                (default disabled)
                                Session description
+
           Request server to send stream as multicast
           This allows you to give a short description with details about the
+
       --satip-host=<string>     Host
          stream, that will be announced in the SDP (Session Descriptor).
+
           Host
       --sout-standard-url=<string>
 
                                 Session URL
 
          This allows you to give an URL with more details about the stream
 
          (often the website of the streaming organization), that will be
 
          announced in the SDP (Session Descriptor).
 
      --sout-standard-email=<string>
 
                                Session email
 
           This allows you to give a contact mail address for the stream, that
 
          will be announced in the SDP (Session Descriptor).
 
       --sout-standard-phone=<string>
 
                                Session phone number
 
           This allows you to give a contact telephone number for the stream,
 
          that will be announced in the SDP (Session Descriptor).
 
  
  Transcode stream output
+
  Real-Time Protocol (RTP) input (rtp)
  Video:
+
       --rtcp-port=<integer [0 .. 65535]>  
       --sout-transcode-venc=<string>
+
                                 RTCP (local) port
                                 Video encoder
+
           RTCP packets will be received on this transport protocol port. If
           This is the video encoder module that will be used (and its
+
          zero, multiplexed RTP/RTCP is used.
           associated options).
+
      --srtp-key=<string>        SRTP key (hexadecimal)
       --sout-transcode-vcodec=<string>
+
          RTP packets will be authenticated and deciphered with this Secure RTP
                                Destination video codec
+
           master shared secret key. This must be a 32-character-long
           This is the video codec that will be used.
+
          hexadecimal string.
       --sout-transcode-vb=<integer>
+
       --srtp-salt=<string>       SRTP salt (hexadecimal)
                                 Video bitrate
+
           Secure RTP requires a (non-secret) master salt value. This must be a
           Target bitrate of the transcoded video stream.
+
          28-character-long hexadecimal string.
       --sout-transcode-scale=<float>
+
       --rtp-max-src=<integer [1 .. 255]>  
                                 Video scaling
+
                                 Maximum RTP sources
           Scale factor to apply to the video while transcoding (eg: 0.25)
+
          How many distinct active RTP sources are allowed at a time.
       --sout-transcode-fps=<float>
+
      --rtp-timeout=<integer>    RTP source timeout (sec)
                                 Video frame-rate
+
           How long to wait for any packet before a source is expired.
           Target output frame rate for the video stream.
+
       --rtp-max-dropout=<integer [0 .. 32767]>  
       --sout-transcode-hurry-up, --no-sout-transcode-hurry-up
+
                                 Maximum RTP sequence number dropout
                                 Hurry up (default enabled)
+
           RTP packets will be discarded if they are too much ahead (i.e. in the
           The transcoder will drop frames if your CPU can't keep up with the
+
          future) by this many packets from the last received packet.
           encoding rate. (default enabled)
+
       --rtp-max-misorder=<integer [0 .. 32767]>  
       --sout-transcode-deinterlace, --no-sout-transcode-deinterlace
+
                                 Maximum RTP sequence number misordering
                                 Deinterlace video (default disabled)
+
          RTP packets will be discarded if they are too far behind (i.e. in the
           Deinterlace the video before encoding. (default disabled)
+
           past) by this many packets from the last received packet.
       --sout-transcode-deinterlace-module={deinterlace,ffmpeg-deinterlace}
+
       --rtp-dynamic-pt={theora}  RTP payload format assumed for dynamic
                                 Deinterlace module
+
                                 payloads
           Specify the deinterlace module to use.
+
           This payload format will be assumed for dynamic payload types
       --sout-transcode-width=<integer>
+
          (between 96 and 127) if it can't be determined otherwise with
                                 Video width
+
           out-of-band mappings (SDP)
           Output video width.
+
 
       --sout-transcode-height=<integer>
+
NFS input (nfs)
                                 Video height
+
       --nfs-auto-guid, --no-nfs-auto-guid
           Output video height.
+
                                Set NFS uid/guid automatically
       --sout-transcode-maxwidth=<integer>
+
                                 (default enabled)
                                 Maximum video width
+
           If uid/gid are not specified in the url, VLC will automatically set a
           Maximum output video width.
+
          uid/gid.
       --sout-transcode-maxheight=<integer>
+
 
                                Maximum video height
+
RTP/RTSP/SDP demuxer (using Live555) (live555)
           Maximum output video height.
+
       --rtsp-tcp, --no-rtsp-tcp  Use RTP over RTSP (TCP)
       --sout-transcode-vfilter=<string>
+
                                 (default disabled)
                                 Video filter
+
           Use RTP over RTSP (TCP)
           Video filters will be applied to the video streams (after overlays
+
       --rtp-client-port=<integer>  
           are applied). You must enter a comma-separated list of filters.
+
                                 Client port
  Audio:
+
           Port to use for the RTP source of the session
       --sout-transcode-aenc=<string>
+
       --rtsp-mcast, --no-rtsp-mcast
                                 Audio encoder
+
                                Force multicast RTP via RTSP
           This is the audio encoder module that will be used (and its
+
                                 (default disabled)
           associated options).
+
           Force multicast RTP via RTSP
       --sout-transcode-acodec=<string>
+
       --rtsp-http, --no-rtsp-http
                                Destination audio codec
+
                                Tunnel RTSP and RTP over HTTP
           This is the audio codec that will be used.
+
                                 (default disabled)
       --sout-transcode-ab=<integer>
+
           Tunnel RTSP and RTP over HTTP
                                Audio bitrate
+
       --rtsp-http-port=<integer> HTTP tunnel port
           Target bitrate of the transcoded audio stream.
+
           Port to use for tunneling the RTSP/RTP over HTTP.
      --sout-transcode-channels=<integer>
+
       --rtsp-kasenna, --no-rtsp-kasenna
                                Audio channels
+
                                 Kasenna RTSP dialect
           Number of audio channels in the transcoded streams.
+
                                (default disabled)
       --sout-transcode-samplerate=<integer>
+
           Kasenna servers use an old and nonstandard dialect of RTSP. With this
                                 Audio sample rate
+
          parameter VLC will try this dialect, but then it cannot connect to
           Sample rate of the transcoded audio stream (11250, 22500, 44100 or
+
           normal RTSP servers.
           48000).
+
       --rtsp-wmserver, --no-rtsp-wmserver
       --sout-transcode-audio-sync, --no-sout-transcode-audio-sync
+
                                WMServer RTSP dialect
                                 Synchronise on audio track (default disabled)
+
                                 (default disabled)
           This option will drop/duplicate video frames to synchronise the video
+
           WMServer uses a nonstandard dialect of RTSP. Selecting this parameter
          track on the audio track. (default disabled)
+
           will tell VLC to assume some options contrary to RFC 2326 guidelines.
       --sout-transcode-afilter=<string>
+
       --rtsp-user=<string>       Username
                                Audio filter
+
          Sets the username for the connection, if no username or password are
           Audio filters will be applied to the audio streams (after conversion
+
           set in the url.
           filters are applied). You must enter a comma-separated list of
+
       --rtsp-pwd=<string>       Password
          filters.
+
           Sets the password for the connection, if no username or password are
  Overlays/Subtitles:
+
           set in the url.
       --sout-transcode-senc=<string>
+
       --rtsp-frame-buffer-size=<integer>  
                                 Subtitles encoder
+
                                 RTSP frame buffer size
           This is the subtitles encoder module that will be used (and its
+
           RTSP start frame buffer size of the video track, can be increased in
           associated options).
+
           case of broken pictures due to too small buffer.
       --sout-transcode-scodec=<string>
+
 
                                 Destination subtitles codec
+
Blu-ray Disc support (libbluray) (libbluray)
           This is the subtitles codec that will be used.
+
       --bluray-menu, --no-bluray-menu
       --sout-transcode-soverlay, --no-sout-transcode-soverlay
+
                                Blu-ray menus
                                 Destination subtitles codec (default disabled)
+
                                 (default enabled)
           This is the subtitles codec that will be used. (default disabled)
+
           Use Blu-ray menus. If disabled, the movie will start directly
       --sout-transcode-sfilter=<string>
+
       --bluray-region={A,B,C}    Region code
                                Overlays
+
           Blu-Ray player region code. Some discs can be played only with a
           This allows you to add overlays (also known as "subpictures" on the
+
           correct region code.
           transcoded video stream. The subpictures produced by the filters will
+
 
          be overlayed directly onto the video. You must specify a
+
HTTP input (http)
           comma-separated list of subpicture modules
+
       --http-reconnect, --no-http-reconnect
  On Screen Display:
+
                                 Auto re-connect
       --sout-transcode-osd, --no-sout-transcode-osd
+
                                (default disabled)
                                OSD menu (default disabled)
+
           Automatically try to reconnect to the stream in case of a sudden
           Stream the On Screen Display menu (using the osdmenu subpicture
+
           disconnect.
          module). (default disabled)
+
 
  Miscellaneous:
+
HTTPS input (access)
       --sout-transcode-threads=<integer>
+
       --http-continuous, --no-http-continuous
                                Number of threads
+
                                Continuous stream
           Number of threads used for the transcoding.
+
                                 (default disabled)
       --sout-transcode-high-priority, --no-sout-transcode-high-priority
+
           Keep reading a resource that keeps being updated.
                                High priority (default disabled)
+
       --http-forward-cookies, --no-http-forward-cookies
           Runs the optional encoder thread at the OUTPUT priority instead of
+
                                Cookies forwarding
          VIDEO. (default disabled)
+
                                 (default enabled)
 +
           Forward cookies across HTTP redirections.
 +
      --http-referrer=<string>  Referrer
 +
          Provide the referral URL, i.e. HTTP "Referer" (sic).
 +
       --http-user-agent=<string> User agent
 +
           Override the name and version of the application as provided to the
 +
           HTTP server, i.e. the HTTP "User-Agent". Name and version must be
 +
           separated by a forward slash, e.g. "FooBar/1.2.3".
 +
 
 +
FTP input (ftp)
 +
       --ftp-user=<string>        Username
 +
          Username that will be used for the connection, if no username is set
 +
           in the URL.
 +
       --ftp-pwd=<string>         Password
 +
           Password that will be used for the connection, if no username or
 +
          password are set in URL.
 +
       --ftp-account=<string>    FTP account
 +
           Account that will be used for the connection.
  
  Text subtitles decoder
+
  File input (filesystem)
      --subsdec-align={0 (Center), 1 (Left), 2 (Right)}
+
  Directory:
                                Subtitles justification
+
       --list-special-files, --no-list-special-files
          Set the justification of subtitles
+
                                 List special files
       --subsdec-encoding={Default,ASCII,UTF-8,,ISO-8859-1,CP1252,MacRoman,MacIceland,ISO-8859-15,,ISO-8859-2,CP1250,MacCentralEurope,MacCroatian,MacRomania,,ISO-8859-5,CP1251,MacCyrillic,MacUkraine,KOI8-R,KOI8-U,KOI8-RU,,ISO-8859-6,CP1256,MacArabic,,ISO-8859-7,CP1253,MacGreek,,ISO-8859-8,CP1255,MacHebrew,,ISO-8859-9,CP1254,MacTurkish,,ISO-8859-13,CP1257,,ISO-2022-JP,ISO-2022-JP-1,ISO-2022-JP-2,EUC-JP,SHIFT_JIS,,ISO-2022-CN,ISO-2022-CN-EXT,EUC-CN,EUC-TW,BIG5,BIG5-HKSCS,,ISO-2022-KR,EUC-KR,,MacThai,KOI8-T,,ISO-8859-3,ISO-8859-4,ISO-8859-10,ISO-8859-14,ISO-8859-16,,CP850,CP862,CP866,CP874,CP932,CP949,CP950,CP1133,CP1258,,Macintosh,,UTF-7,UTF-16,UTF-16BE,UTF-16LE,UTF-32,UTF-32BE,UTF-32LE,C99,JAVA,UCS-2,UCS-2BE,UCS-2LE,UCS-4,UCS-4BE,UCS-4LE,,HZ,GBK,GB18030,JOHAB,ARMSCII-8,Georgian-Academy,Georgian-PS,TIS-620,MuleLao-1,VISCII,TCVN,HPROMAN8,NEXTSTEP}
+
                                 (default disabled)
                                Subtitles text encoding
+
           Include devices and pipes when listing directories
          Set the encoding used in text subtitles
 
      --subsdec-autodetect-utf8, --no-subsdec-autodetect-utf8
 
                                 UTF-8 subtitles autodetection (default
 
                                enabled)
 
          This enables automatic detection of UTF-8 encoding within subtitles
 
          files. (default enabled)
 
      --subsdec-formatted, --no-subsdec-formatted
 
                                 Formatted Subtitles (default enabled)
 
           Some subtitle formats allow for text formatting. VLC partly
 
          implements this, but you can choose to disable all formatting.
 
          (default enabled)
 
  
  Text subtitles parser
+
  DVDRead Input (no menu support) (dvdread)
      --sub-fps=<float>          Frames per second
+
       --dvdread-angle=<integer>  DVD angle
          Override the normal frames per second settings. This will only work
+
           Default DVD angle.
          with MicroDVD and SubRIP (SRT) subtitles.
 
       --sub-delay=<integer>     Subtitles delay
 
          Apply a delay to all subtitles (in 1/10s, eg 100 means 10s).
 
      --sub-type={auto,microdvd,subrip,subviewer,ssa1,ssa2-4,ass,vplayer,sami,dvdsubtitle,mpl2,aqt,pjs,mpsub,jacosub,psb,realtext,dks,subviewer1}
 
                                Subtitles format
 
          Force the subtiles format. Valid values are : "microdvd", "subrip",
 
          "subviewer", "ssa1", "ssa2-4", "ass", "vplayer", "sami",
 
          "dvdsubtitle", "mpl2", "aqt", "pjs", "mpsub", "jacosub", "psb",
 
          "realtext", "dks", "subviewer1", and "auto" (meaning autodetection,
 
           this should always work).
 
  
  Philips OGT (SVCD subtitle) decoder
+
  DVDnav Input (dvdnav)
       --svcdsub-debug=<integer> Enable debug
+
       --dvdnav-angle=<integer>   DVD angle
           This integer when viewed in binary is a debugging mask
+
           Default DVD angle.
calls       
+
      --dvdnav-menu, --no-dvdnav-menu
                1
+
                                Start directly in menu
packet assembly info  2
+
                                (default enabled)
 +
          Start the DVD directly in the main menu. This will try to skip all
 +
          the useless warning introductions.
  
 +
Digital Television and Radio (dtv)
 +
      --dvb-adapter=<integer>    DVB adapter
 +
          If there is more than one digital broadcasting adapter, the adapter
 +
          number must be selected. Numbering starts from zero.
 +
      --dvb-network-name=<string>
 +
                                Network name
 +
          Unique network name in the System Tuning Spaces
 +
      --dvb-create-name=<string> Network name to create
 +
          Create unique name in the System Tuning Spaces
 +
      --dvb-frequency=<integer [0 .. 107999999]>
 +
                                Frequency (Hz)
 +
          TV channels are grouped by transponder (a.k.a. multiplex) on a given
 +
          frequency. This is required to tune the receiver.
 +
      --dvb-inversion={-1 (Automatic), 0 (Off), 1 (On)}
 +
                                Spectrum inversion
 +
          If the demodulator cannot detect spectral inversion correctly, it
 +
          needs to be configured manually.
 +
  Terrestrial reception parameters:
 +
      --dvb-bandwidth={0 (Automatic), 10 (10 MHz), 8 (8 MHz), 7 (7 MHz), 6 (6 MHz), 5 (5 MHz), 2 (1.712 MHz)}
 +
                                Bandwidth (MHz)
 +
          Bandwidth (MHz)
 +
      --dvb-transmission={-1 (Automatic), 1 (1k), 2 (2k), 4 (4k), 8 (8k), 16 (16k), 32 (32k)}
 +
                                Transmission mode
 +
          Transmission mode
 +
      --dvb-guard={,1/128,1/32,1/16,19/256,1/8,19/128,1/4}
 +
                                Guard interval
 +
          Guard interval
 +
  DVB-T reception parameters:
 +
      --dvb-code-rate-hp={,0,1/2,3/5,2/3,3/4,4/5,5/6,6/7,7/8,8/9,9/10}
 +
                                High-priority code rate
 +
          The code rate for Forward Error Correction can be specified.
 +
      --dvb-code-rate-lp={,0,1/2,3/5,2/3,3/4,4/5,5/6,6/7,7/8,8/9,9/10}
 +
                                Low-priority code rate
 +
          The code rate for Forward Error Correction can be specified.
 +
      --dvb-hierarchy={-1 (Automatic), 0 (None), 1 (1), 2 (2), 4 (4)}
 +
                                Hierarchy mode
 +
          Hierarchy mode
 +
      --dvb-plp-id=<integer [0 .. 255]>
 +
                                DVB-T2 Physical Layer Pipe
 +
          DVB-T2 Physical Layer Pipe
 +
  ISDB-T reception parameters:
 +
      --dvb-a-modulation={,QAM,16QAM,32QAM,64QAM,128QAM,256QAM,8VSB,16VSB,QPSK,DQPSK,8PSK,16APSK,32APSK}
 +
                                Layer A modulation
 +
          The digital signal can be modulated according with different
 +
          constellations (depending on the delivery system). If the demodulator
 +
          cannot detect the constellation automatically, it needs to be
 +
          configured manually.
 +
      --dvb-a-fec={,0,1/2,3/5,2/3,3/4,4/5,5/6,6/7,7/8,8/9,9/10}
 +
                                Layer A code rate
 +
          The code rate for Forward Error Correction can be specified.
 +
      --dvb-a-count=<integer [0 .. 13]>
 +
                                Layer A segments count
 +
      --dvb-a-interleaving=<integer [0 .. 3]>
 +
                                Layer A time interleaving
 +
      --dvb-b-modulation={,QAM,16QAM,32QAM,64QAM,128QAM,256QAM,8VSB,16VSB,QPSK,DQPSK,8PSK,16APSK,32APSK}
 +
                                Layer B modulation
 +
          The digital signal can be modulated according with different
 +
          constellations (depending on the delivery system). If the demodulator
 +
          cannot detect the constellation automatically, it needs to be
 +
          configured manually.
 +
      --dvb-b-fec={,0,1/2,3/5,2/3,3/4,4/5,5/6,6/7,7/8,8/9,9/10}
 +
                                Layer B code rate
 +
          The code rate for Forward Error Correction can be specified.
 +
      --dvb-b-count=<integer [0 .. 13]>
 +
                                Layer B segments count
 +
      --dvb-b-interleaving=<integer [0 .. 3]>
 +
                                Layer B time interleaving
 +
      --dvb-c-modulation={,QAM,16QAM,32QAM,64QAM,128QAM,256QAM,8VSB,16VSB,QPSK,DQPSK,8PSK,16APSK,32APSK}
 +
                                Layer C modulation
 +
          The digital signal can be modulated according with different
 +
          constellations (depending on the delivery system). If the demodulator
 +
          cannot detect the constellation automatically, it needs to be
 +
          configured manually.
 +
      --dvb-c-fec={,0,1/2,3/5,2/3,3/4,4/5,5/6,6/7,7/8,8/9,9/10}
 +
                                Layer C code rate
 +
          The code rate for Forward Error Correction can be specified.
 +
      --dvb-c-count=<integer [0 .. 13]>
 +
                                Layer C segments count
 +
      --dvb-c-interleaving=<integer [0 .. 3]>
 +
                                Layer C time interleaving
 +
  Cable and satellite reception parameters:
 +
      --dvb-modulation={,QAM,16QAM,32QAM,64QAM,128QAM,256QAM,8VSB,16VSB,QPSK,DQPSK,8PSK,16APSK,32APSK}
 +
                                Modulation / Constellation
 +
          The digital signal can be modulated according with different
 +
          constellations (depending on the delivery system). If the demodulator
 +
          cannot detect the constellation automatically, it needs to be
 +
          configured manually.
 +
      --dvb-srate=<integer [0 .. 4294967295]>
 +
                                Symbol rate (bauds)
 +
          The symbol rate must be specified manually for some systems, notably
 +
          DVB-C, DVB-S and DVB-S2.
 +
      --dvb-fec={,0,1/2,3/5,2/3,3/4,4/5,5/6,6/7,7/8,8/9,9/10}
 +
                                FEC code rate
 +
          The code rate for Forward Error Correction can be specified.
 +
  DVB-S2 parameters:
 +
      --dvb-stream=<integer [0 .. 255]>
 +
                                Stream identifier
 +
          Stream identifier
 +
      --dvb-pilot={-1 (Automatic), 0 (Off), 1 (On)}
 +
                                Pilot
 +
          Pilot
 +
      --dvb-rolloff={-1 (Automatic), 35 (0.35 (same as DVB-S)), 20 (0.20), 25 (0.25)}
 +
                                Roll-off factor
 +
          Roll-off factor
 +
  ISDB-S parameters:
 +
      --dvb-ts-id=<integer [0 .. 65535]>
 +
                                Transport stream ID
 +
          Transport stream ID
 +
  Satellite equipment control:
 +
      --dvb-polarization={,V,H,R,L}
 +
                                Polarization (Voltage)
 +
          To select the polarization of the transponder, a different voltage is
 +
          normally applied to the low noise block-downconverter (LNB).
 +
      --dvb-voltage=<integer [0 .. 18]>
 +
                               
 +
      --dvb-lnb-low=<integer [0 .. 2147483647]>
 +
                                Local oscillator low frequency (kHz)
 +
          The downconverter (LNB) will subtract the local oscillator frequency
 +
          from the satellite transmission frequency. The intermediate frequency
 +
          (IF) on the RF cable is the result.
 +
      --dvb-lnb-high=<integer [0 .. 2147483647]>
 +
                                Local oscillator high frequency (kHz)
 +
          The downconverter (LNB) will subtract the local oscillator frequency
 +
          from the satellite transmission frequency. The intermediate frequency
 +
          (IF) on the RF cable is the result.
 +
      --dvb-lnb-switch=<integer [0 .. 2147483647]>
 +
                                Universal LNB switch frequency (kHz)
 +
          If the satellite transmission frequency exceeds the switch frequency,
 +
          the oscillator high frequency will be used as reference. Furthermore
 +
          the automatic continuous 22kHz tone will be sent.
 +
      --dvb-network-id=<integer> Network identifier
 +
          Network identifier
 +
      --dvb-azimuth=<integer>    Satellite azimuth
 +
          Satellite azimuth in tenths of degree
 +
      --dvb-elevation=<integer>  Satellite elevation
 +
          Satellite elevation in tenths of degree
 +
      --dvb-longitude=<integer>  Satellite longitude
 +
          Satellite longitude in tenths of degree. West is negative.
 +
      --dvb-range=<string>      Satellite range code
 +
          Satellite range code as defined by manufacturer e.g. DISEqC switch
 +
          code
 +
  ATSC reception parameters:
 +
      --dvb-major-channel=<integer>
 +
                                Major channel
 +
      --dvb-minor-channel=<integer>
 +
                                ATSC minor channel
 +
      --dvb-physical-channel=<integer>
 +
                                Physical channel
  
  Video scaling filter
+
  DirectShow input (dshow)
       --swscale-mode={0 (Fast bilinear), 1 (Bilinear), 2 (Bicubic (good quality)), 3 (Experimental), 4 (Nearest neighbour (bad quality)), 5 (Area), 6 (Luma bicubic / chroma bilinear), 7 (Gauss), 8 (SincR), 9 (Lanczos), 10 (Bicubic spline)}
+
       --dshow-vdev={,none,screen-capture-recorder}
                                 Scaling mode
+
                                Video device name
           Scaling mode to use.
+
          Name of the video device that will be used by the DirectShow plugin.
 
+
          If you don't specify anything, the default device will be used.
VLM remote control interface
+
      --dshow-adev={,none,Aux (ASUS Xonar DG Audio Device),CABLE Output (VB-Audio Virtual Cable),Line In (ASUS Xonar DG Audio Device),Microphone (ASUS Xonar DG Audio Device),Stereo Mix (ASUS Xonar DG Audio Device),Wave (ASUS Xonar DG Audio Device),virtual-audio-capturer}  
       --telnet-host=<string>     Host
+
                                 Audio device name
           This is the host on which the interface will listen. It defaults to
+
           Name of the audio device that will be used by the DirectShow plugin.
           all network interfaces (0.0.0.0). If you want this interface to be
+
          If you don't specify anything, the default device will be used.
           available only on the local machine, enter "127.0.0.1".
+
       --dshow-size=<string>     Video size
       --telnet-port=<integer>   Port
+
           Size of the video that will be displayed by the DirectShow plugin. If
          This is the TCP port on which this interface will listen. It defaults
+
           you don't specify anything the default size for your device will be
           to 4212.
+
           used. You can specify a standard size (cif, d1, ...) or
       --telnet-password=<string> Password
+
          <width>x<height>.
           A single administration password is used to protect this interface.
+
       --dshow-aspect-ratio=<string>  
           The default value is "admin".
+
                                Picture aspect-ratio n:m
 
+
           Define input picture aspect-ratio to use. Default is 4:3
Teletext subtitles decoder
+
       --dshow-chroma=<string>   Video input chroma format
       --telx-override-page=<integer>
+
           Force the DirectShow video input to use a specific chroma format (eg.
                                 Override page
+
           I420 (default), RV24, etc.)
           Override the indicated page, try this if your subtitles don't appear
+
       --dshow-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
           (-1 = autodetect from TS, 0 = autodetect from teletext, >0 = actual
+
                                 Video input frame rate
          page number, usually 888 or 889).
+
           Force the DirectShow video input to use a specific frame rate (eg. 0
       --telx-ignore-subtitle-flag, --no-telx-ignore-subtitle-flag
+
           means default, 25, 29.97, 50, 59.94, etc.)
                                 Ignore subtitle flag (default disabled)
+
       --dshow-config, --no-dshow-config
           Ignore the subtitle flag, try this if your subtitles don't appear.
+
                                Device properties
           (default disabled)
+
                                 (default disabled)
       --telx-french-workaround, --no-telx-french-workaround
+
           Show the properties dialog of the selected device before starting the
                                 Workaround for France (default disabled)
+
           stream.
           Some French channels do not flag their subtitling pages correctly due
+
       --dshow-tuner, --no-dshow-tuner
           to a historical interpretation mistake. Try using this wrong
+
                                Tuner properties
          interpretation if your subtitles don't appear. (default disabled)
+
                                 (default disabled)
 
+
           Show the tuner properties [channel selection] page.
Theora video decoder
+
      --dshow-tuner-channel=<integer>
       --sout-theora-quality=<integer>
+
                                Tuner TV Channel
                                 Encoding quality
+
           Set the TV channel the tuner will set to (0 means default).
           Enforce a quality between 1 (low) and 10 (high), instead of
+
      --dshow-tuner-frequency=<integer>
           specifying a particular bitrate. This will produce a VBR stream.
+
                                Tuner Frequency
 
+
          This overrides the channel. Measured in Hz.
Video transformation filter
+
       --dshow-tuner-country=<integer>  
       --transform-type={90,180,270,hflip,vflip}
+
                                 Tuner country code
                                 Transform type
+
           Set the tuner country code that establishes the current
           One of '90', '180', '270', 'hflip' and 'vflip'
+
          channel-to-frequency mapping (0 means default).
 +
      --dshow-tuner-standard={0 (Default), 1 (NTSC_M), 2 (NTSC_M_J), 4 (NTSC_443), 16 (PAL_B), 32 (PAL_D), 64 (PAL_G), 128 (PAL_H), 256 (PAL_I), 512 (PAL_M), 1024 (PAL_N), 2048 (PAL_60), 4096 (SECAM_B), 8192 (SECAM_D), 16384 (SECAM_G), 32768 (SECAM_H), 65536 (SECAM_K), 131072 (SECAM_K1), 262144 (SECAM_L), 524288 (SECAM_L1), 1048576 (PAL_N_COMBO)}
 +
                                Video standard
 +
          Video standard
 +
      --dshow-tuner-input={0 (Default), 1 (Cable), 2 (Antenna)}
 +
                                Tuner input type
 +
          Select the tuner input type (Cable/Antenna).
 +
      --dshow-video-input=<integer>
 +
                                Video input pin
 +
          Select the video input source, such as composite, s-video, or tuner.
 +
          Since these settings are hardware-specific, you should find good
 +
           settings in the "Device config" area, and use those numbers here. -1
 +
          means that settings will not be changed.
 +
      --dshow-video-output=<integer>
 +
                                Video output pin
 +
          Select the video output type. See the "video input" option.
 +
       --dshow-audio-input=<integer>
 +
                                Audio input pin
 +
          Select the audio input source. See the "video input" option.
 +
      --dshow-audio-output=<integer>
 +
                                Audio output pin
 +
          Select the audio output type. See the "video input" option.
 +
      --dshow-amtuner-mode={0 (Default), 1 (TV), 2 (FM radio), 4 (AM radio), 8 (DSS)}  
 +
                                 AM Tuner mode
 +
           AM Tuner mode. Can be one of Default (0), TV (1), AM Radio (2), FM
 +
          Radio (3) or DSS (4).
 +
      --dshow-audio-channels=<integer>
 +
                                Number of audio channels
 +
          Select audio input format with the given number of audio channels (if
 +
          non 0)
 +
      --dshow-audio-samplerate=<integer>
 +
                                Audio sample rate
 +
          Select audio input format with the given sample rate (if non 0)
 +
      --dshow-audio-bitspersample=<integer>
 +
                                Audio bits per sample
 +
          Select audio input format with the given bits/sample (if non 0)
 +
 
 +
Digital Cinema Package module (dcp)
 +
      --kdm=<string>            KDM file
 +
          Path to Key Delivery Message XML file
  
  MPEG Transport Stream demuxer
+
  Audio CD input (cdda)
       --ts-extra-pmt=<string>   Extra PMT
+
       --cd-audio=<string>       Audio CD device
           Allows a user to specify an extra pmt (pmt_pid=pid:stream_type[,...]).
+
           This is the default Audio CD drive (or file) to use. Don't forget the
      --ts-es-id-pid, --no-ts-es-id-pid
+
           colon after the drive letter (e.g. D:)
                                Set id of ES to PID (default enabled)
+
 
          Set the internal ID of each elementary stream handled by VLC to the
+
[cdda:][device][@[track]]
           same value as the PID in the TS stream, instead of 1, 2, 3, etc.
+
       --cdda-track=<integer>     
          Useful to do '#duplicate{..., select="es=<pid>"}'. (default enabled)
+
       --cdda-first-sector=<integer>  
      --ts-out=<string>          Fast udp streaming
+
                               
          Sends TS to specific ip:port by udp (you must know what you are
+
       --cdda-last-sector=<integer>  
          doing).
+
                               
       --ts-out-mtu=<integer>    MTU for out mode
+
       --cddb-server=<string>    CDDB Server
          MTU for out mode.
+
           Address of the CDDB server to use.
       --ts-csa-ck=<string>       CSA ck
+
       --cddb-port=<integer [1 .. 65535]>
          Control word for the CSA encryption algorithm
+
                                 CDDB port
       --ts-csa2-ck=<string>     CSA ck
+
           CDDB Server port to use.
          Control word for the CSA encryption algorithm
+
 
       --ts-csa-pkt=<integer>    Packet size in bytes to decrypt
+
Windows Audio Session API input (wasapi)
           Specify the size of the TS packet to decrypt. The decryption routines
+
       --wasapi-loopback, --no-wasapi-loopback
          subtract the TS-header from the value before decrypting.  
+
                                 Loopback mode
       --ts-silent, --no-ts-silent
+
                                (default disabled)
                                 Silent mode (default disabled)
+
           Record an audio rendering endpoint.
           Do not complain on encrypted PES. (default disabled)
 
       --ts-dump-file=<string>    Filename of dump
 
          Specify a filename where to dump the TS in.
 
      --ts-dump-append, --no-ts-dump-append
 
                                 Append (default disabled)
 
          If the file exists and this option is selected, the existing file
 
          will not be overwritten. (default disabled)
 
      --ts-dump-size=<integer>  Dump buffer size
 
           Tweak the buffer size for reading and writing an integer number of
 
          packets.Specify the size of the buffer here and not the number of
 
          packets.
 
  
  Libtwolame audio encoder
+
  Microsoft Media Server (MMS) input (access_mms)
       --sout-twolame-quality=<float>
+
       --mms-timeout=<integer>   TCP/UDP timeout (ms)
                                Encoding quality
+
           Amount of time (in ms) to wait before aborting network reception of
           Force a specific encoding quality between 0.0 (high) and 50.0 (low),
+
           data. Note that there will be 10 retries before completely giving up.
           instead of specifying a particular bitrate. This will produce a VBR
+
       --mms-all, --no-mms-all    Force selection of all streams
          stream.
+
                                 (default disabled)
       --sout-twolame-mode={0 (Stereo), 1 (Dual mono), 2 (Joint stereo)}
+
           MMS streams can contain several elementary streams, with different
                                Stereo mode
+
          bitrates. You can choose to select all of them.
          Handling mode for stereo streams
+
       --mms-maxbitrate=<integer> Maximum bitrate
      --sout-twolame-vbr, --no-sout-twolame-vbr
+
           Select the stream with the maximum bitrate under that limit.
                                 VBR mode (default disabled)
 
           Use Variable BitRate. Default is to use Constant BitRate (CBR).
 
          (default disabled)
 
       --sout-twolame-psy=<integer>
 
                                Psycho-acoustic model
 
           Integer from -1 (no model) to 4.
 
  
  VC1 video demuxer
+
  Memory input (imem)
       --vc1-fps=<float>         Frames per Second
+
      --imem-get=<string>        Get function
           Desired frame rate for the VC-1 stream.
+
          Address of the get callback function
 +
      --imem-release=<string>    Release function
 +
          Address of the release callback function
 +
      --imem-cookie=<string>    Callback cookie string
 +
          Text identifier for the callback functions
 +
      --imem-data=<string>      Callback data
 +
          Data for the get and release functions
 +
      --imem-id=<integer>        ID
 +
          Set the ID of the elementary stream
 +
      --imem-group=<integer>    Group
 +
          Set the group of the elementary stream
 +
      --imem-cat={0 (Unknown), 1 (Audio), 2 (Video), 3 (Subtitle), 4 (Data)}
 +
                                Category
 +
          Set the category of the elementary stream
 +
      --imem-codec=<string>      Codec
 +
          Set the codec of the elementary stream
 +
      --imem-language=<string>  Language
 +
          Language of the elementary stream as described by ISO639
 +
      --imem-samplerate=<integer>
 +
                                Sample rate
 +
          Sample rate of an audio elementary stream
 +
      --imem-channels=<integer>  Channels count
 +
          Channels count of an audio elementary stream
 +
      --imem-width=<integer>    Width
 +
          Width of video or subtitle elementary streams
 +
      --imem-height=<integer>    Height
 +
          Height of video or subtitle elementary streams
 +
      --imem-dar=<string>        Display aspect ratio
 +
          Display aspect ratio of a video elementary stream
 +
       --imem-fps=<string>       Frame rate
 +
           Frame rate of a video elementary stream
 +
      --imem-size=<integer>      Size
 +
          Size of stream in bytes
  
  VCD input
+
  Concatenated inputs (concat)
       --vcd-caching=<integer>   Caching value in ms
+
       --concat-list=<string>     Inputs list
           Caching value for VCDs. This value should be set in milliseconds.
+
           Comma-separated list of input URLs to concatenate.
  
  Visualizer filter
+
  core program (core)
  General:
 
      --effect-list=<string>    Effects list
 
          A list of visual effect, separated by commas.
 
Current effects
 
          include: dummy, scope, spectrum.
 
      --effect-width=<integer>  Video width
 
          The width of the effects video window, in pixels.
 
      --effect-height=<integer>  Video height
 
          The height of the effects video window, in pixels.
 
  Spectrum analyser:
 
      --visual-nbbands=<integer> Number of bands
 
          Number of bands used by spectrum analyzer, should be 20 or 80.
 
      --visual-separ=<integer>  Band separator
 
          Number of blank pixels between bands.
 
      --visual-amp=<integer>    Amplification
 
          This is a coefficient that modifies the height of the bands.
 
      --visual-peaks, --no-visual-peaks
 
                                Enable peaks (default enabled)
 
          Draw "peaks" in the spectrum analyzer. (default enabled)
 
  Spectrometer:
 
      --spect-show-original, --no-spect-show-original
 
                                Enable original graphic spectrum (default
 
                                disabled)
 
          Enable the "flat" spectrum analyzer in the spectrometer. (default
 
          disabled)
 
      --spect-show-base, --no-spect-show-base
 
                                Enable base (default enabled)
 
          Defines whether to draw the base of the bands. (default enabled)
 
      --spect-radius=<integer>  Base pixel radius
 
          Defines radius size in pixels, of base of bands(beginning).
 
      --spect-sections=<integer> Spectral sections
 
          Determines how many sections of spectrum will exist.
 
      --spect-color=<integer>    V-plane color
 
          YUV-Color cube shifting across the V-plane ( 0 - 127 ).
 
      --spect-show-bands, --no-spect-show-bands
 
                                Enable bands (default enabled)
 
          Draw bands in the spectrometer. (default enabled)
 
      --spect-nbbands=<integer>  Number of bands
 
          Number of bands used by the spectrometer, from 20 to 80.
 
      --spect-separ=<integer>    Band separator
 
          Number of blank pixels between bands.
 
      --spect-amp=<integer>      Amplification
 
          This is a coefficient that modifies the height of the bands.
 
      --spect-show-peaks, --no-spect-show-peaks
 
                                Enable peaks (default enabled)
 
          Draw "peaks" in the spectrum analyzer. (default enabled)
 
      --spect-peak-width=<integer>
 
                                Peak extra width
 
          Additions or subtractions of pixels on the peak width.
 
      --spect-peak-height=<integer>
 
                                Peak height
 
          Total pixel height of the peak items.
 
  
  Video memory module
+
  Audio
       --vmem-width=<integer>     Width
+
These options allow you to modify the behavior of the audio subsystem, and to add audio filters which can be used for post processing or visual effects (spectrum analyzer, etc.). Enable these filters here, and configure them in the "audio filters" modules section.
           Video memory buffer width.
+
       --audio, --no-audio        Enable audio
       --vmem-height=<integer>   Height
+
                                (default enabled)
           Video memory buffer height.
+
          You can completely disable the audio output. The audio decoding stage
       --vmem-pitch=<integer>     Pitch
+
          will not take place, thus saving some processing power.
           Video memory buffer pitch in bytes.
+
      --gain=<float [0.000000 .. 8.000000]>  
       --vmem-chroma=<string>     Chroma
+
                                Audio gain
           Output chroma for the memory image as a 4-character string, eg.
+
           This linear gain will be applied to outputted audio.
           "RV32".
+
       --volume-step=<float [1.000000 .. 256.000000]>  
       --vmem-lock=<string>      Lock function
+
                                Audio output volume step
           Address of the locking callback function. This function must return a
+
          The step size of the volume is adjustable using this option.
           valid memory address for use by the video renderer.
+
      --volume-save, --no-volume-save
       --vmem-unlock=<string>     Unlock function
+
                                Remember the audio volume
           Address of the unlocking callback function
+
                                (default enabled)
       --vmem-data=<string>       Callback data
+
          Remember the audio volume
           Data for the locking and unlocking functions
+
      --spdif, --no-spdif        Force S/PDIF support
 +
                                (default disabled)
 +
          This option should be used when the audio output can't negotiate
 +
          S/PDIF support.
 +
      --force-dolby-surround={0 (Auto), 1 (On), 2 (Off)}
 +
                                Force detection of Dolby Surround
 +
          Use this when you know your stream is (or is not) encoded with Dolby
 +
          Surround but fails to be detected as such. Even if the stream is not
 +
          actually encoded with Dolby Surround, turning on this option might
 +
          enhance your experience, especially when combined with the Headphone
 +
           Channel Mixer.
 +
       --stereo-mode={0 (Unset), 1 (Stereo), 2 (Reverse stereo), 3 (Left), 4 (Right), 5 (Dolby Surround), 6 (Headphones)}
 +
                                Stereo audio output mode
 +
          Stereo audio output mode
 +
      --audio-desync=<integer>   Audio desynchronization compensation
 +
           This delays the audio output. The delay must be given in
 +
          milliseconds. This can be handy if you notice a lag between the video
 +
          and the audio.
 +
      --audio-replay-gain-mode={none,track,album}
 +
                                Replay gain mode
 +
          Select the replay gain mode
 +
       --audio-replay-gain-preamp=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
 +
                                Replay preamp
 +
           This allows you to change the default target level (89 dB) for stream
 +
          with replay gain information
 +
      --audio-replay-gain-default=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
 +
                                Default replay gain
 +
          This is the gain used for stream without replay gain information
 +
      --audio-replay-gain-peak-protection, --no-audio-replay-gain-peak-protection
 +
                                Peak protection
 +
                                (default enabled)
 +
           Protect against sound clipping
 +
       --audio-time-stretch, --no-audio-time-stretch
 +
                                Enable time stretching audio
 +
                                (default enabled)
 +
          This allows playing audio at lower or higher speed without affecting
 +
          the audio pitch
 +
  -A, --aout={any,mmdevice,directsound,waveout,amem,afile,adummy,none}
 +
                                Audio output module
 +
           This is the audio output method used by VLC. The default behavior is
 +
           to automatically select the best method available.
 +
      --role={video,music,communication,game,notification,animation,production,accessibility,test}
 +
                                Media role
 +
          Media (player) role for operating system policy.
 +
       --audio-filter=<string>   Audio filters
 +
           This adds audio post processing filters, to modify the sound
 +
          rendering.
 +
       --audio-visual={any,goom,projectm,visual,glspectrum,none}
 +
                                Audio visualizations
 +
          This adds visualization modules (spectrum analyzer, etc.).
 +
       --audio-resampler={any,samplerate,ugly,speex_resampler,none}
 +
                                Audio resampler
 +
           This selects which plugin to use for audio resampling.
  
  RTSP VoD server
+
  Video
      --rtsp-host=<string>      RTSP host address
+
These options allow you to modify the behavior of the video output subsystem. You can for example enable video filters (deinterlacing, image adjusting, etc.). Enable these filters here and configure them in the "video filters" modules section. You can also set many miscellaneous video options.
          This defines the address, port and path the RTSP VOD server will
+
       --video, --no-video        Enable video
          listen on.
+
                                 (default enabled)
Syntax is address:port/path. The default is to listen on
+
           You can completely disable the video output. The video decoding stage
          all interfaces (address 0.0.0.0), on port 554, with no path.
+
           will not take place, thus saving some processing power.
To
+
       --grayscale, --no-grayscale
          listen only on the local interface, use "localhost" as address.
+
                                 Grayscale video output
       --rtsp-raw-mux=<string>    MUX for RAW RTSP transport
+
                                 (default disabled)
          MUX for RAW RTSP transport
+
           Output video in grayscale. As the color information aren't decoded,
      --rtsp-throttle-users=<integer>
+
           this can save some processing power.
                                 Maximum number of connections
+
  -f, --fullscreen, --no-fullscreen
           This limits the maximum number of clients that can connect to the
+
                                 Fullscreen video output
           RTSP VOD. 0 means no limit.
+
                                (default disabled)
       --rtsp-session-timeout=<integer>
+
           Start video in fullscreen mode
                                 Sets the timeout option in the RTSP session
+
       --embedded-video, --no-embedded-video
                                 string
+
                                Embedded video
           Defines what timeout option to add to the RTSP session ID string.
+
                                 (default enabled)
          Setting it to a negative number removes the timeout option entirely.
+
           Embed the video output in the main interface.
           This is needed by some IPTV STBs (such as those made by HansunTech)
+
       --xlib, --no-xlib         
          which get confused by it. The default is 5.
+
                                 (default enabled)
 
+
       --drop-late-frames, --no-drop-late-frames
Vorbis audio decoder
+
                                Drop late frames
      --sout-vorbis-quality=<integer>
+
                                 (default enabled)
                                 Encoding quality
+
           This drops frames that are late (arrive to the video output after
          Enforce a quality between 1 (low) and 10 (high), instead of
+
          their intended display date).
           specifying a particular bitrate. This will produce a VBR stream.
+
       --skip-frames, --no-skip-frames
       --sout-vorbis-max-bitrate=<integer>
+
                                Skip frames
                                 Maximum encoding bitrate
+
                                 (default enabled)
           Maximum bitrate in kbps. This is useful for streaming applications.
+
           Enables framedropping on MPEG2 stream. Framedropping occurs when your
       --sout-vorbis-min-bitrate=<integer>
+
           computer is not powerful enough
                                 Minimum encoding bitrate
+
       --quiet-synchro, --no-quiet-synchro
          Minimum bitrate in kbps. This is useful for encoding for a fixed-size
+
                                Quiet synchro
          channel.
+
                                 (default disabled)
       --sout-vorbis-cbr, --no-sout-vorbis-cbr
+
           This avoids flooding the message log with debug output from the video
                                 CBR encoding (default disabled)
+
           output synchronization mechanism.
           Force a constant bitrate encoding (CBR). (default disabled)
+
      --keyboard-events, --no-keyboard-events
 
+
                                Key press events
DirectX video output
+
                                (default enabled)
       --directx-hw-yuv, --no-directx-hw-yuv
+
           This enables VLC hotkeys from the (non-embedded) video window.
                                 Use hardware YUV->RGB conversions (default
+
       --mouse-events, --no-mouse-events
                                enabled)
+
                                Mouse events
           Try to use hardware acceleration for YUV->RGB conversions. This
+
                                 (default enabled)
           option doesn't have any effect when using overlays. (default enabled)
+
           This enables handling of mouse clicks on the video.
       --directx-use-sysmem, --no-directx-use-sysmem
+
      --video-on-top, --no-video-on-top
                                 Use video buffers in system memory (default
+
                                Always on top
                                disabled)
+
                                (default disabled)
           Create video buffers in system memory instead of video memory. This
+
           Always place the video window on top of other windows.
           isn't recommended as usually using video memory allows to benefit
+
       --video-wallpaper, --no-video-wallpaper  
          from more hardware acceleration (like rescaling or YUV->RGB
+
                                 Enable wallpaper mode
          conversions). This option doesn't have any effect when using
+
                                (default disabled)
           overlays. (default disabled)
 
       --directx-3buffering, --no-directx-3buffering
 
                                 Use triple buffering for overlays (default
 
                                enabled)
 
           Try to use triple buffering when using YUV overlays. That results in
 
          much better video quality (no flickering). (default enabled)
 
      --directx-device={}        Name of desired display device
 
          In a multiple monitor configuration, you can specify the Windows
 
           device name of the display that you want the video window to open on.
 
          For example, "\\.\DISPLAY1" or "\\.\DISPLAY2".
 
       --directx-wallpaper, --no-directx-wallpaper
 
                                 Enable wallpaper mode (default disabled)
 
 
           The wallpaper mode allows you to display the video as the desktop
 
           The wallpaper mode allows you to display the video as the desktop
           background. Note that this feature only works in overlay mode and the
+
           background.
          desktop must not already have a wallpaper. (default disabled)
+
       --disable-screensaver, --no-disable-screensaver
 
+
                                Disable screensaver
Wall video filter
+
                                (default enabled)
       --wall-cols=<integer>      Number of columns
+
           Disable the screensaver during video playback.
          Number of horizontal windows in which to split the video.
+
       --video-title-show, --no-video-title-show
      --wall-rows=<integer>      Number of rows
+
                                Show media title on video
           Number of vertical windows in which to split the video.
+
                                 (default disabled)
       --wall-active=<string>    Active windows
+
           Display the title of the video on top of the movie.
          Comma-separated list of active windows, defaults to all
+
       --video-title-timeout=<integer>
      --wall-element-aspect=<string>
+
                                 Show video title for x milliseconds
                                 Element aspect ratio
+
           Show the video title for n milliseconds, default is 5000 ms (5 sec.)
           Aspect ratio of the individual displays building the wall.
+
       --video-title-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}
 
+
                                 Position of video title
Win32 waveOut extension output
+
           Place on video where to display the title (default bottom center).
       --waveout-float32, --no-waveout-float32
+
       --mouse-hide-timeout=<integer>  
                                 Use float32 output (default enabled)
+
                                 Hide cursor and fullscreen controller after x
           The option allows you to enable or disable the high-quality float32
+
                                milliseconds
          audio output mode (which is not well supported by some soundcards).
+
           Hide mouse cursor and fullscreen controller after n milliseconds.
          (default enabled)
+
  Snapshot:
       --waveout-dev={wavemapper} Select Audio Device
+
      --snapshot-path=<string>  Video snapshot directory (or filename)
          Select special Audio device, or let windows decide (default), change
+
           Directory where the video snapshots will be stored.
          needs VLC restart to apply.
+
      --snapshot-prefix=<string> Video snapshot file prefix
 
+
           Video snapshot file prefix
H.264/MPEG4 AVC encoder (using x264 library)
+
       --snapshot-format={png,jpg,tiff}
      --sout-x264-keyint=<integer>
+
                                 Video snapshot format
                                 Maximum GOP size
+
           Image format which will be used to store the video snapshots
           Sets maximum interval between IDR-frames.Larger values save bits,
+
      --snapshot-preview, --no-snapshot-preview
          thus improving quality for a given bitrate at the cost of seeking
+
                                Display video snapshot preview
          precision.
+
                                (default enabled)
       --sout-x264-min-keyint=<integer>
+
           Display the snapshot preview in the screen's top-left corner.
                                 Minimum GOP size
+
       --snapshot-sequential, --no-snapshot-sequential
           Sets minimum interval between IDR-frames. In H.264, I-frames do not
+
                                 Use sequential numbers instead of timestamps
          necessarily bound a closed GOP because it is allowable for a P-frame
+
                                 (default disabled)
          to be predicted from more frames than just the one frame before it
+
           Use sequential numbers instead of timestamps for snapshot numbering
          (also see reference frame option). Therefore, I-frames are not
+
       --snapshot-width=<integer> Video snapshot width
          necessarily seekable. IDR-frames restrict subsequent P-frames from
+
          You can enforce the width of the video snapshot. By default it will
           referring to any frame prior to the IDR-frame.  
+
           keep the original width (-1). Using 0 will scale the width to keep
If scenecuts appear
+
          the aspect ratio.
          within this interval, they are still encoded as I-frames, but do not
+
       --snapshot-height=<integer>
           start a new GOP.
+
                                 Video snapshot height
       --sout-x264-scenecut=<integer [-1 .. 100]>
+
          You can enforce the height of the video snapshot. By default it will
                                 Extra I-frames aggressivity
+
           keep the original height (-1). Using 0 will scale the height to keep
           Scene-cut detection. Controls how aggressively to insert extra
+
           the aspect ratio.
          I-frames. With small values of scenecut, the codec often has to force
+
  Window properties:
          an I-frame when it would exceed keyint. Good values of scenecut may
+
       --width=<integer>         Video width
          find a better location for the I-frame. Large values use more
+
           You can enforce the video width. By default (-1) VLC will adapt to
          I-frames than necessary, thus wasting bits. -1 disables scene-cut
+
           the video characteristics.
           detection, so I-frames are inserted only every other keyint frames,
+
       --height=<integer>        Video height
          which probably leads to ugly encoding artifacts. Range 1 to 100.
+
          You can enforce the video height. By default (-1) VLC will adapt to
       --sout-x264-pre-scenecut, --no-sout-x264-pre-scenecut
+
           the video characteristics.
                                 Faster, less precise scenecut detection
+
       --video-x=<integer>        Video X coordinate
                                 (default disabled)
+
          You can enforce the position of the top left corner of the video
           Faster, less precise scenecut detection. Required and implied by
+
           window (X coordinate).
          multi-threading. (default disabled)
+
       --video-y=<integer>       Video Y coordinate
       --sout-x264-bframes=<integer [0 .. 16]>
+
          You can enforce the position of the top left corner of the video
                                B-frames between I and P
+
           window (Y coordinate).
           Number of consecutive B-frames between I and P-frames. Range 1 to 16.
+
      --crop=<string>            Video cropping
       --sout-x264-b-adapt, --no-sout-x264-b-adapt
+
           This forces the cropping of the source video. Accepted formats are
                                 Adaptive B-frame decision (default enabled)
+
           x:y (4:3, 16:9, etc.) expressing the global image aspect.
           Force the specified number of consecutive B-frames to be used, except
+
       --custom-crop-ratios=<string>  
           possibly before an I-frame. (default enabled)
+
                                 Custom crop ratios list
       --sout-x264-b-bias=<integer [-100 .. 100]>
+
           Comma separated list of crop ratios which will be added in the
                                Influence (bias) B-frames usage
+
           interface's crop ratios list.
           Bias the choice to use B-frames. Positive values cause more B-frames,
+
       --aspect-ratio=<string>   Source aspect ratio
           negative values cause less B-frames.
+
          This forces the source aspect ratio. For instance, some DVDs claim to
       --sout-x264-bpyramid, --no-sout-x264-bpyramid
+
           be 16:9 while they are actually 4:3. This can also be used as a hint
                                Keep some B-frames as references (default
+
          for VLC when a movie does not have aspect ratio information. Accepted
                                disabled)
+
           formats are x:y (4:3, 16:9, etc.) expressing the global image aspect,
          Allows B-frames to be used as references for predicting other frames.
+
           or a float value (1.25, 1.3333, etc.) expressing pixel squareness.
           Keeps the middle of 2+ consecutive B-frames as a reference, and
+
       --autoscale, --no-autoscale
          reorders frame appropriately. (default disabled)
+
                                Video Auto Scaling
       --sout-x264-cabac, --no-sout-x264-cabac
+
                                 (default enabled)
                                CABAC (default enabled)
+
           Let the video scale to fit a given window or fullscreen.
           CABAC (Context-Adaptive Binary Arithmetic Coding). Slightly slows
+
       --monitor-par=<string>     Monitor pixel aspect ratio
          down encoding and decoding, but should save 10 to 15% bitrate.
+
           This forces the monitor aspect ratio. Most monitors have square
          (default enabled)
+
           pixels (1:1). If you have a 16:9 screen, you might need to change
       --sout-x264-ref=<integer [1 .. 16]>
+
           this to 4:3 in order to keep proportions.
                                Number of reference frames
+
       --custom-aspect-ratios=<string>  
           Number of previous frames used as predictors. This is effective in
+
                                 Custom aspect ratios list
          Anime, but seems to make little difference in live-action source
+
          Comma separated list of aspect ratios which will be added in the
           material. Some decoders are unable to deal with large frameref
+
           interface's aspect ratio list.
           values. Range 1 to 16.
+
       --hdtv-fix, --no-hdtv-fix  Fix HDTV height
      --sout-x264-nf, --no-sout-x264-nf
+
                                 (default enabled)
                                Skip loop filter (default disabled)
+
           This allows proper handling of HDTV-1080 video format even if broken
          Deactivate the deblocking loop filter (decreases quality). (default
+
          encoder incorrectly sets height to 1088 lines. You should only
          disabled)
+
          disable this option if your video has a non-standard format requiring
       --sout-x264-deblock=<string>
+
           all 1088 lines.
                                 Loop filter AlphaC0 and Beta parameters
+
       --video-deco, --no-video-deco
                                alpha:beta
+
                                Window decorations
           Loop filter AlphaC0 and Beta parameters. Range -6 to 6 for both alpha
+
                                 (default enabled)
           and beta parameters. -6 means light filter, 6 means strong.
+
           VLC can avoid creating window caption, frames, etc... around the
       --sout-x264-level=<string> H.264 level
+
           video, giving a "minimal" window.
           Specify H.264 level (as defined by Annex A of the standard). Levels
+
       --video-title=<string>     Video title
           are not enforced; it's up to the user to select a level compatible
+
          Custom title for the video window (in case the video is not embedded
           with the rest of the encoding options. Range 1 to 5.1 (10 to 51 is
+
           in the interface).
          also allowed).
+
       --align={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}
       --sout-x264-interlaced, --no-sout-x264-interlaced
+
                                 Video alignment
                                 Interlaced mode (default disabled)
+
           Enforce the alignment of the video in its window. By default (0) it
           Pure-interlaced mode. (default disabled)
+
          will be centered (0=center, 1=left, 2=right, 4=top, 8=bottom, you can
       --sout-x264-qp=<integer [0 .. 51]>
+
          also use combinations of these values, like 6=4+2 meaning top-right).
                                Set QP
+
       --zoom=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
           This selects the quantizer to use. Lower values result in better
+
                                 Zoom video
           fidelity, but higher bitrates. 26 is a good default value. Range 0
+
           You can zoom the video by the specified factor.
           (lossless) to 51.
+
       --deinterlace={0 (Off), -1 (Automatic), 1 (On)}
       --sout-x264-crf=<integer [0 .. 51]>
+
                                 Deinterlace
                                 Quality-based VBR
+
           Deinterlace
           1-pass Quality-based VBR. Range 0 to 51.
+
       --deinterlace-mode={auto,discard,blend,mean,bob,linear,x,yadif,yadif2x,phosphor,ivtc}
       --sout-x264-qpmin=<integer [0 .. 51]>
+
                                 Deinterlace mode
                                 Min QP
+
           Deinterlace method to use for video processing.
           Minimum quantizer parameter. 15 to 35 seems to be a useful range.
+
  -V, --vout={any,direct3d11,direct3d9,glwin32,gl,directdraw,wingdi,caca,vdummy,vmem,flaschen,yuv,vdummy,none}
      --sout-x264-qpmax=<integer [0 .. 51]>
+
                                 Video output module
                                Max QP
+
          This is the the video output method used by VLC. The default behavior
           Maximum quantizer parameter.
+
           is to automatically select the best method available.
       --sout-x264-qpstep=<integer [0 .. 51]>
+
       --video-filter=<string>   Video filter module
                                 Max QP step
+
           This adds post-processing filters to enhance the picture quality, for
           Max QP step between frames.
+
           instance deinterlacing, or distort the video.
      --sout-x264-ratetol=<float [0.000000 .. 100.000000]>
+
      --video-splitter=<string> Video splitter module
                                Average bitrate tolerance
+
           This adds video splitters like clone or wall
           Allowed variance in average bitrate (in kbits/s).
 
       --sout-x264-vbv-maxrate=<integer>
 
                                Max local bitrate
 
           Sets a maximum local bitrate (in kbits/s).
 
       --sout-x264-vbv-bufsize=<integer>
 
                                 VBV buffer
 
           Averaging period for the maximum local bitrate (in kbits).
 
       --sout-x264-vbv-init=<float [0.000000 .. 1.000000]>
 
                                 Initial VBV buffer occupancy
 
           Sets the initial buffer occupancy as a fraction of the buffer size.
 
          Range 0.0 to 1.0.
 
       --sout-x264-ipratio=<float [1.000000 .. 2.000000]>
 
                                 QP factor between I and P
 
           QP factor between I and P. Range 1.0 to 2.0.
 
       --sout-x264-pbratio=<float [1.000000 .. 2.000000]>
 
                                 QP factor between P and B
 
           QP factor between P and B. Range 1.0 to 2.0.
 
      --sout-x264-chroma-qp-offset=<integer>
 
                                 QP difference between chroma and luma
 
           QP difference between chroma and luma.
 
       --sout-x264-pass=<integer [0 .. 3]>
 
                                Multipass ratecontrol
 
           Multipass ratecontrol:
 
- 1: First pass, creates stats file
 
- 2:
 
           Last pass, does not overwrite stats file
 
  - 3: Nth pass, overwrites
 
           stats file
 
  
       --sout-x264-qcomp=<float [0.000000 .. 1.000000]>
+
Subpictures
                                 QP curve compression
+
These options allow you to modify the behavior of the subpictures subsystem. You can for example enable subpictures sources (logo, etc.). Enable these filters here and configure them in the "subsources filters" modules section. You can also set many miscellaneous subpictures options.
           QP curve compression. Range 0.0 (CBR) to 1.0 (QCP).
+
  On Screen Display:
       --sout-x264-cplxblur=<float>
+
       --spu, --no-spu            Enable sub-pictures
                                 Reduce fluctuations in QP
+
                                 (default enabled)
           This reduces the fluctuations in QP before curve compression.
+
           You can completely disable the sub-picture processing.
           Temporally blurs complexity.
+
      --osd, --no-osd            On Screen Display
       --sout-x264-qblur=<float> Reduce fluctuations in QP
+
                                (default enabled)
           This reduces the fluctations in QP after curve compression.
+
          VLC can display messages on the video. This is called OSD (On Screen
           Temporally blurs quants.
+
          Display).
       --sout-x264-aq-mode=<integer [0 .. 2]>
+
       --text-renderer={any,freetype,tdummy,sapi,none}
                                 How AQ distributes bits
+
                                 Text rendering module
           Defines bitdistribution mode for AQ, default 2
+
           VLC normally uses Freetype for rendering, but this allows you to use
- 0: Disabled
+
           svg for instance.
- 1:
+
  Subtitles:
           Avoid moving bits between frames
+
       --sub-file=<string>       Use subtitle file
- 2: Move bits between frames
+
           Load this subtitle file. To be used when autodetect cannot detect
       --sout-x264-aq-strength=<float>
+
           your subtitle file.
                                 Strength of AQ
+
       --sub-autodetect-file, --no-sub-autodetect-file
           Strength to reduce blocking and blurring in flat
+
                                Autodetect subtitle files
and textured areas,
+
                                (default enabled)
           default 1.0 recommented to be between 0..2
+
          Automatically detect a subtitle file, if no subtitle filename is
- 0.5: weak AQ
+
          specified (based on the filename of the movie).
- 1.5:
+
      --sub-autodetect-fuzzy=<integer>  
           strong AQ
+
                                 Subtitle autodetection fuzziness
       --sout-x264-partitions={none,fast,normal,slow,all}
+
           This determines how fuzzy subtitle and movie filename matching will
                                Partitions to consider
+
          be. Options are: 0 = no subtitles autodetected 1 = any subtitle file
           Partitions to consider in analyse mode:
+
          2 = any subtitle file containing the movie name 3 = subtitle file
- none  :
+
           matching the movie name with additional chars 4 = subtitle file
- fast  : i4x4
+
          matching the movie name exactly
 
+
       --sub-autodetect-path=<string>  
           - normal: i4x4,p8x8,(i8x8)
+
                                 Subtitle autodetection paths
- slow  : i4x4,p8x8,(i8x8),b8x8
+
           Look for a subtitle file in those paths too, if your subtitle file
- all 
+
           was not found in the current directory.
           : i4x4,p8x8,(i8x8),b8x8,p4x4
+
      --sub-margin=<integer>    Force subtitle position
(p4x4 requires p8x8. i8x8 requires
+
          You can use this option to place the subtitles under the movie,
           8x8dct).
+
          instead of over the movie. Try several positions.
       --sout-x264-direct={none,spatial,temporal,auto}
+
      --sub-text-scale=<integer [10 .. 500]>
                                Direct MV prediction mode
+
                                Subtitles text scaling factor
           Direct MV prediction mode.
+
          Changes the subtitles size where possible
       --sout-x264-direct-8x8=<integer [-1 .. 1]>
+
  Overlays:
                                Direct prediction size
+
      --sub-source=<string>      Subpictures source module
           Direct prediction size:  -  0: 4x4
+
          This adds so-called "subpicture sources". These filters overlay some
- 1: 8x8
+
           images or text over the video (like a logo, arbitrary text, ...).
- -1: smallest
+
       --sub-filter=<string>      Subpictures filter module
           possible according to level
+
          This adds so-called "subpicture filters". These filter subpictures
 
+
          created by subtitle decoders or other subpictures sources.
       --sout-x264-weightb, --no-sout-x264-weightb
+
  Track settings:
                                Weighted prediction for B-frames (default
+
      --program=<integer>        Program
                                 disabled)
+
          Choose the program to select by giving its Service ID. Only use this
           Weighted prediction for B-frames. (default disabled)
+
           option if you want to read a multi-program stream (like DVB streams
       --sout-x264-me={dia,hex,umh,esa,tesa}
+
          for example).
                                 Integer pixel motion estimation method
+
      --programs=<string>        Programs
           Selects the motion estimation algorithm:  - dia: diamond search,
+
          Choose the programs to select by giving a comma-separated list of
           radius 1 (fast)
+
           Service IDs (SIDs). Only use this option if you want to read a
- hex: hexagonal search, radius 2
+
          multi-program stream (like DVB streams for example).
- umh: uneven
+
      --audio-track=<integer>    Audio track
           multi-hexagon search (better but slower)
+
           Stream number of the audio track to use (from 0 to n).
- esa: exhaustive search
+
      --sub-track=<integer>      Subtitle track
           (extremely slow, primarily for testing)
+
           Stream number of the subtitle track to use (from 0 to n).
- tesa: hadamard exhaustive
+
       --audio-language=<string>  Audio language
          search (extremely slow, primarily for testing)
+
          Language of the audio track you want to use (comma separated, two or
 
+
          three letter country code, you may use 'none' to avoid a fallback to
       --sout-x264-merange=<integer [1 .. 64]>
+
           another language).
                                 Maximum motion vector search range
+
       --sub-language=<string>   Subtitle language
           Maximum distance to search for motion estimation, measured from
+
          Language of the subtitle track you want to use (comma separated, two
          predicted position(s). Default of 16 is good for most footage, high
+
           or three letters country code, you may use 'any' as a fallback).
          motion sequences may benefit from settings between 24 and 32. Range 0
+
      --menu-language=<string>  Menu language
          to 64.
+
           Language of the menus you want to use with DVD/BluRay (comma
       --sout-x264-mvrange=<integer>
+
          separated, two or three letters country code, you may use 'any' as a
                                 Maximum motion vector length
+
          fallback).
           Maximum motion vector length in pixels. -1 is automatic, based on
+
       --audio-track-id=<integer> Audio track ID
          level.
+
          Stream ID of the audio track to use.
       --sout-x264-mvrange-thread=<integer>
+
      --sub-track-id=<integer>  Subtitle track ID
                                 Minimum buffer space between threads
+
          Stream ID of the subtitle track to use.
           Minimum buffer space between threads. -1 is automatic, based on
+
      --captions={608 (EIA/CEA 608), 708 (CEA 708)}
          number of threads.
+
                                 Preferred Closed Captions decoder
       --sout-x264-subme=<integer [1 .. 9]>
+
           Preferred Closed Captions decoder
                                 Subpixel motion estimation and partition
+
       --preferred-resolution={-1 (Best available), 1080 (Full HD (1080p)), 720 (HD (720p)), 576 (Standard Definition (576 or 480 lines)), 360 (Low Definition (360 lines)), 240 (Very Low Definition (240 lines))}  
                                decision quality
+
                                 Preferred video resolution
           This parameter controls quality versus speed tradeoffs involved in
+
           When several video formats are available, select one whose resolution
          the motion estimation decision process (lower = quicker and higher =
+
           is closest to (but not higher than) this setting, in number of lines.
          better quality). Range 1 to 9.
+
           Use this option if you don't have enough CPU power or network
       --sout-x264-mixed-refs, --no-sout-x264-mixed-refs
+
           bandwidth to play higher resolutions.
                                 Decide references on a per partition basis
+
  Playback control:
 +
       --input-repeat=<integer [0 .. 65535]>  
 +
                                 Input repetitions
 +
           Number of time the same input will be repeated
 +
       --start-time=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
 +
                                 Start time
 +
           The stream will start at this position (in seconds).
 +
       --stop-time=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
 +
                                 Stop time
 +
           The stream will stop at this position (in seconds).
 +
       --run-time=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>  
 +
                                 Run time
 +
           The stream will run this duration (in seconds).
 +
       --input-fast-seek, --no-input-fast-seek
 +
                                 Fast seek
 
                                 (default disabled)
 
                                 (default disabled)
           Allows each 8x8 or 16x8 partition to independently select a reference
+
           Favor speed over precision while seeking
           frame, as opposed to only one ref per macroblock. (default disabled)
+
      --rate=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]>
       --sout-x264-chroma-me, --no-sout-x264-chroma-me
+
                                Playback speed
                                Chroma in motion estimation (default enabled)
+
           This defines the playback speed (nominal speed is 1.0).
           Chroma ME for subpel and mode decision in P-frames. (default enabled)
+
       --input-list=<string>      Input list
       --sout-x264-8x8dct, --no-sout-x264-8x8dct
+
          You can give a comma-separated list of inputs that will be
                                Adaptive spatial transform size (default
+
           concatenated together after the normal one.
                                disabled)
+
       --input-slave=<string>    Input slave (experimental)
           SATD-based decision for 8x8 transform in inter-MBs. (default disabled)
+
          This allows you to play from several inputs at the same time. This
       --sout-x264-trellis=<integer [0 .. 2]>
+
          feature is experimental, not all formats are supported. Use a '#'
                                Trellis RD quantization
+
           separated list of inputs.
           Trellis RD quantization:
+
       --bookmarks=<string>       Bookmarks list for a stream
- 0: disabled
+
          You can manually give a list of bookmarks for a stream in the form
- 1: enabled only on the
+
           "{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-of
           final encode of a MB
+
           fset},{...}"
- 2: enabled on all mode decisions
+
  Default devices:
This
+
      --dvd=<string>            DVD device
           requires CABAC.
+
          This is the default DVD drive (or file) to use. Don't forget the
       --sout-x264-fast-pskip, --no-sout-x264-fast-pskip
+
           colon after the drive letter (e.g. D:)
                                Early SKIP detection on P-frames (default
+
       --vcd=<string>            VCD device
                                enabled)
+
          This is the default VCD drive (or file) to use. Don't forget the
           Early SKIP detection on P-frames. (default enabled)
+
           colon after the drive letter (e.g. D:)
       --sout-x264-dct-decimate, --no-sout-x264-dct-decimate
+
  Network settings:
                                Coefficient thresholding on P-frames (default
+
       --mtu=<integer>            MTU of the network interface
                                enabled)
+
           This is the maximum application-layer packet size that can be
           Coefficient thresholding on P-frames.Eliminate dct blocks containing
+
           transmitted over the network (in bytes).
           only a small single coefficient. (default enabled)
+
       --ipv4-timeout=<integer [0 .. 2147483647]>  
       --sout-x264-nr=<integer [0 .. 1000]>
+
                                 TCP connection timeout
                                 Noise reduction
+
           Default TCP connection timeout (in milliseconds).
           Dct-domain noise reduction. Adaptive pseudo-deadzone. 10 to 1000
+
       --http-host=<string>       HTTP server address
          seems to be a useful range.
+
           By default, the server will listen on any local IP address. Specify
       --sout-x264-deadzone-inter=<integer [0 .. 32]>
+
          an IP address (e.g. ::1 or 127.0.0.1) or a host name (e.g. localhost)
                                Inter luma quantization deadzone
+
          to restrict them to a specific network interface.
           Set the size of the intra luma quantization deadzone. Range 0 to 32.
+
       --http-port=<integer [1 .. 65535]>  
       --sout-x264-deadzone-intra=<integer [0 .. 32]>
+
                                 HTTP server port
                                 Intra luma quantization deadzone
+
           The HTTP server will listen on this TCP port. The standard HTTP port
           Set the size of the intra luma quantization deadzone. Range 0 to 32.
+
          number is 80. However allocation of port numbers below 1025 is
       --sout-x264-non-deterministic, --no-sout-x264-non-deterministic
+
          usually restricted by the operating system.
                                 Non-deterministic optimizations when threaded
+
       --https-port=<integer [1 .. 65535]>
                                (default disabled)
+
                                 HTTPS server port
           Slightly improve quality of SMP, at the cost of repeatability.
+
          The HTTPS server will listen on this TCP port. The standard HTTPS
          (default disabled)
+
           port number is 443. However allocation of port numbers below 1025 is
       --sout-x264-asm, --no-sout-x264-asm
+
          usually restricted by the operating system.
                                CPU optimizations (default enabled)
+
       --rtsp-host=<string>      RTSP server address
           Use assembler CPU optimizations. (default enabled)
+
          This defines the address the RTSP server will listen on, along with
       --sout-x264-psnr, --no-sout-x264-psnr
+
          the base path of the RTSP VOD media. Syntax is address/path. By
                                 PSNR computation (default disabled)
+
           default, the server will listen on any local IP address. Specify an
           Compute and print PSNR stats. This has no effect on the actual
+
          IP address (e.g. ::1 or 127.0.0.1) or a host name (e.g. localhost) to
           encoding quality. (default disabled)
+
          restrict them to a specific network interface.
       --sout-x264-ssim, --no-sout-x264-ssim
+
       --rtsp-port=<integer [1 .. 65535]>
                                SSIM computation (default disabled)
+
                                 RTSP server port
           Compute and print SSIM stats. This has no effect on the actual
+
          The RTSP server will listen on this TCP port. The standard RTSP port
           encoding quality. (default disabled)
+
           number is 554. However allocation of port numbers below 1025 is
       --sout-x264-quiet, --no-sout-x264-quiet
+
           usually restricted by the operating system.
                                Quiet mode (default disabled)
+
       --http-cert=<string>      HTTP/TLS server certificate
          Quiet mode. (default disabled)
+
          This X.509 certicate file (PEM format) is used for server-side TLS.
       --sout-x264-sps-id=<integer>
+
           On OS X, the string is used as a label to search the certificate in
                                SPS and PPS id numbers
+
           the keychain.
           Set SPS and PPS id numbers to allow concatenating streams with
+
       --http-key=<string>        HTTP/TLS server private key
           different settings.
+
          This private key file (PEM format) is used for server-side TLS.
       --sout-x264-aud, --no-sout-x264-aud
+
       --http-proxy=<string>     HTTP proxy
                                Access unit delimiters (default disabled)
+
           HTTP proxy to be used It must be of the form
           Generate access unit delimiter NAL units. (default disabled)
+
           http://[user@]myproxy.mydomain:myport/ ; if empty, the http_proxy
       --sout-x264-verbose, --no-sout-x264-verbose
+
          environment variable will be tried.
                                 Statistics (default disabled)
+
       --http-proxy-pwd=<string>  HTTP proxy password
          Print stats for each frame. (default disabled)
+
          If your HTTP proxy requires a password, set it here.
       --sout-x264-stats=<string> Filename for 2 pass stats file
+
  Socks proxy:
          Filename for 2 pass stats file for multi-pass encoding.
+
      --socks=<string>          SOCKS server
</nowiki>
+
          SOCKS proxy server to use. This must be of the form address:port. It
 +
          will be used for all TCP connections
 +
      --socks-user=<string>      SOCKS user name
 +
           User name to be used for connection to the SOCKS proxy.
 +
       --socks-pwd=<string>      SOCKS password
 +
          Password to be used for connection to the SOCKS proxy.
 +
  Metadata:
 +
      --meta-title=<string>      Title metadata
 +
          Allows you to specify a "title" metadata for an input.
 +
      --meta-author=<string>    Author metadata
 +
          Allows you to specify an "author" metadata for an input.
 +
      --meta-artist=<string>    Artist metadata
 +
          Allows you to specify an "artist" metadata for an input.
 +
      --meta-genre=<string>      Genre metadata
 +
          Allows you to specify a "genre" metadata for an input.
 +
      --meta-copyright=<string>  Copyright metadata
 +
          Allows you to specify a "copyright" metadata for an input.
 +
      --meta-description=<string>
 +
                                Description metadata
 +
          Allows you to specify a "description" metadata for an input.
 +
      --meta-date=<string>      Date metadata
 +
          Allows you to specify a "date" metadata for an input.
 +
      --meta-url=<string>        URL metadata
 +
          Allows you to specify a "url" metadata for an input.
 +
  Advanced:
 +
      --file-caching=<integer [0 .. 60000]>
 +
                                File caching (ms)
 +
          Caching value for local files, in milliseconds.
 +
      --live-caching=<integer [0 .. 60000]>
 +
                                Live capture caching (ms)
 +
          Caching value for cameras and microphones, in milliseconds.
 +
      --disc-caching=<integer [0 .. 60000]>
 +
                                Disc caching (ms)
 +
          Caching value for optical media, in milliseconds.
 +
      --network-caching=<integer [0 .. 60000]>
 +
                                Network caching (ms)
 +
          Caching value for network resources, in milliseconds.
 +
      --cr-average=<integer>    Clock reference average counter
 +
          When using the PVR input (or a very irregular source), you should set
 +
          this to 10000.
 +
      --clock-synchro={-1 (Default), 0 (Disable), 1 (Enable)}
 +
                                Clock synchronisation
 +
          It is possible to disable the input clock synchronisation for
 +
          real-time sources. Use this if you experience jerky playback of
 +
          network streams.
 +
      --clock-jitter=<integer>  Clock jitter
 +
          This defines the maximum input delay jitter that the synchronization
 +
          algorithms should try to compensate (in milliseconds).
 +
      --network-synchronisation, --no-network-synchronisation
 +
                                Network synchronisation
 +
                                (default disabled)
 +
          This allows you to remotely synchronise clocks for server and client.
 +
          The detailed settings are available in Advanced / Network Sync.
 +
      --input-record-path=<string>
 +
                                Record directory
 +
          Directory where the records will be stored
 +
      --input-record-native, --no-input-record-native
 +
                                Prefer native stream recording
 +
                                (default enabled)
 +
          When possible, the input stream will be recorded instead of using the
 +
          stream output module
 +
      --input-timeshift-path=<string>
 +
                                Timeshift directory
 +
          Directory used to store the timeshift temporary files.
 +
      --input-timeshift-granularity=<integer>
 +
                                Timeshift granularity
 +
          This is the maximum size in bytes of the temporary files that will be
 +
          used to store the timeshifted streams.
 +
      --input-title-format=<string>
 +
                                Change title according to current media
 +
          This option allows you to set the title according to what's being
 +
          played<br>$a: Artist<br>$b: Album<br>$c: Copyright<br>$t:
 +
          Title<br>$g: Genre<br>$n: Track num<br>$p: Now playing<br>$A:
 +
          Date<br>$D: Duration<br>$Z: "Now playing" (Fall back on Title -
 +
          Artist)
 +
      --lua, --no-lua            Disable all lua plugins
 +
                                (default enabled)
 +
          Disable all lua plugins
 +
 
 +
Decoders
 +
This option can be used to alter the way VLC selects its codecs (decompression methods). Only advanced users should alter this option as it can break playback of all your streams.
 +
      --codec=<string>          Preferred decoders list
 +
          List of codecs that VLC will use in priority. For instance,
 +
          'dummy,a52' will try the dummy and a52 codecs before trying the other
 +
          ones. Only advanced users should alter this option as it can break
 +
          playback of all your streams.
 +
      --encoder=<string>        Preferred encoders list
 +
          This allows you to select a list of encoders that VLC will use in
 +
          priority.
 +
 
 +
Input
 +
These options allow you to modify the behavior of the input subsystem, such as the DVD or VCD device, the network interface settings or the subtitle channel.
 +
      --access={any,satip,vdr,filesystem,filesystem,access_realrtsp,access,dtv,dshow,imem,ftp,cdda,attachment,http,imem_access,nfs,concat,sdp,sftp,smb,tcp,udp,vcd,upnp,avcodec,access_mms,none}
 +
                                Access module
 +
          This allows you to force an access module. You can use it if the
 +
          correct access is not automatically detected. You should not set this
 +
          as a global option unless you really know what you are doing.
 +
      --demux={any,mp4,avi,asf,es,flacsys,mpc,nuv,tta,wav,caf,sid,sap,ogg,mkv,live555,smf,adaptive,ts,xa,gme,aiff,directory,rawvid,image,pva,voc,mod,au,nsv,ps,ty,h26x,h26x,dvdnav,libbluray,mpgv,mjpeg,rawdv,demux_cdg,nsc,webvtt,ttml,avcodec,ps,vobsub,demux_stl,vc1,es,subtitle,real,demuxdump,stats,rawaud,webvtt,none}
 +
                                Demux module
 +
          Demultiplexers are used to separate the "elementary" streams (like
 +
          audio and video streams). You can use it if the correct demuxer is
 +
          not automatically detected. You should not set this as a global
 +
          option unless you really know what you are doing.
 +
      --stream-filter=<string>  Stream filter module
 +
          Stream filters are used to modify the stream that is being read.
 +
      --demux-filter=<string>    Demux filter module
 +
          Demux filters are used to modify/control the stream that is being
 +
          read.
 +
 
 +
Stream output
 +
These options allow you to set default global options for the stream output subsystem.
 +
      --sout=<string>            Default stream output chain
 +
          You can enter here a default stream output chain. Refer to the
 +
          documentation to learn how to build such chains. Warning: this chain
 +
          will be enabled for all streams.
 +
      --sout-display, --no-sout-display
 +
                                Display while streaming
 +
                                (default disabled)
 +
          Play locally the stream while streaming it.
 +
      --sout-keep, --no-sout-keep
 +
                                Keep stream output open
 +
                                (default disabled)
 +
          This allows you to keep an unique stream output instance across
 +
          multiple playlist item (automatically insert the gather stream output
 +
          if not specified)
 +
      --sout-all, --no-sout-all  Enable streaming of all ES
 +
                                (default enabled)
 +
          Stream all elementary streams (video, audio and subtitles)
 +
      --sout-audio, --no-sout-audio
 +
                                Enable audio stream output
 +
                                (default enabled)
 +
          Choose whether the audio stream should be redirected to the stream
 +
          output facility when this last one is enabled.
 +
      --sout-video, --no-sout-video
 +
                                Enable video stream output
 +
                                (default enabled)
 +
          Choose whether the video stream should be redirected to the stream
 +
          output facility when this last one is enabled.
 +
      --sout-spu, --no-sout-spu  Enable SPU stream output
 +
                                (default enabled)
 +
          Choose whether the SPU streams should be redirected to the stream
 +
          output facility when this last one is enabled.
 +
      --sout-mux-caching=<integer>
 +
                                Stream output muxer caching (ms)
 +
          This allow you to configure the initial caching amount for stream
 +
          output muxer. This value should be set in milliseconds.
 +
  VLM:
 +
      --vlm-conf=<string>        VLM configuration file
 +
          Read a VLM configuration file as soon as VLM is started.
 +
      --sap-interval=<integer>  SAP announcement interval
 +
          When the SAP flow control is disabled, this lets you set the fixed
 +
          interval between SAP announcements.
 +
      --mux={any,mux_ts,ps,mux_ogg,asf,wav,mpjpeg,dummy,mp4,avi,avcodec,mp4,none}
 +
                                Mux module
 +
          This is a legacy entry to let you configure mux modules
 +
      --access_output={any,file,dummy,ftp,http,access_output_livehttp,access_output_shout,udp,stream_out_chromecast,avcodec,none}
 +
                                Access output module
 +
          This is a legacy entry to let you configure access output modules
 +
      --ttl=<integer>            Hop limit (TTL)
 +
          This is the hop limit (also known as "Time-To-Live" or TTL) of the
 +
          multicast packets sent by the stream output (-1 = use operating
 +
          system built-in default).
 +
      --miface=<string>          Multicast output interface
 +
          Default multicast interface. This overrides the routing table.
 +
      --dscp=<integer>          DiffServ Code Point
 +
          Differentiated Services Code Point for outgoing UDP streams (or IPv4
 +
          Type Of Service, or IPv6 Traffic Class). This is used for network
 +
          Quality of Service.
 +
      --packetizer={any,aes3,theora,speex,lpcm,rawvideo,vorbis,spudec,svcdsub,mpegvideo,cvdsub,mpeg4video,vc1,mpeg4audio,mlp,flac,h264,hevc,avcodec,oggspots,mpegaudio,a52,dts,copy,none}
 +
                                Preferred packetizer list
 +
          This allows you to select the order in which VLC will choose its
 +
          packetizers.
 +
 
 +
Miscellaneous
 +
These options allow you to select default modules. Leave these alone unless you really know what you are doing.
 +
  Special modules:
 +
      --vod-server={any,stream_out_rtp,rtsp,none}
 +
                                VoD server module
 +
          You can select which VoD server module you want to use. Set this to
 +
          'vod_rtsp' to switch back to the old, legacy module.
 +
  Plugins:
 +
      --plugins-cache, --no-plugins-cache
 +
                                Use a plugins cache
 +
                                (default enabled)
 +
          Use a plugins cache which will greatly improve the startup time of
 +
          VLC.
 +
      --plugins-scan, --no-plugins-scan
 +
                                Scan for new plugins
 +
                                (default enabled)
 +
          Scan plugin directories for new plugins at startup. This increases
 +
          the startup time of VLC.
 +
      --keystore=<string>        Preferred keystore list
 +
          List of keystores that VLC will use in priority.
 +
  Performance options:
 +
      --high-priority, --no-high-priority
 +
                                Increase the priority of the process
 +
                                (default disabled)
 +
          Increasing the priority of the process will very likely improve your
 +
          playing experience as it allows VLC not to be disturbed by other
 +
          applications that could otherwise take too much processor time.
 +
          However be advised that in certain circumstances (bugs) VLC could
 +
          take all the processor time and render the whole system unresponsive
 +
          which might require a reboot of your machine.
 +
      --clock-source={,interrupt,tick,multimedia,perf,wall}
 +
                                Clock source
 +
          Clock source
 +
 
 +
Playlist
 +
These options define the behavior of the playlist. Some of them can be overridden in the playlist dialog box.
 +
  -Z, --random, --no-random      Play files randomly forever
 +
                                (default disabled)
 +
          VLC will randomly play files in the playlist until interrupted.
 +
  -L, --loop, --no-loop          Repeat all
 +
                                (default disabled)
 +
          VLC will keep playing the playlist indefinitely.
 +
  -R, --repeat, --no-repeat      Repeat current item
 +
                                (default disabled)
 +
          VLC will keep playing the current playlist item.
 +
      --play-and-exit, --no-play-and-exit
 +
                                Play and exit
 +
                                (default disabled)
 +
          Exit if there are no more items in the playlist.
 +
      --play-and-stop, --no-play-and-stop
 +
                                Play and stop
 +
                                (default disabled)
 +
          Stop the playlist after each played playlist item.
 +
      --play-and-pause, --no-play-and-pause
 +
                                Play and pause
 +
                                (default disabled)
 +
          Pause each item in the playlist on the last frame.
 +
      --start-paused, --no-start-paused
 +
                                Start paused
 +
                                (default disabled)
 +
          Pause each item in the playlist on the first frame.
 +
      --playlist-autostart, --no-playlist-autostart
 +
                                Auto start
 +
                                (default enabled)
 +
          Automatically start playing the playlist content once it's loaded.
 +
      --playlist-cork, --no-playlist-cork
 +
                                Pause on audio communication
 +
                                (default enabled)
 +
          If pending audio communication is detected, playback will be paused
 +
          automatically.
 +
      --one-instance, --no-one-instance
 +
                                Allow only one running instance
 +
                                (default disabled)
 +
          Allowing only one running instance of VLC can sometimes be useful,
 +
          for example if you associated VLC with some media types and you don't
 +
          want a new instance of VLC to be opened each time you open a file in
 +
          your file manager. This option will allow you to play the file with
 +
          the already running instance or enqueue it.
 +
      --started-from-file, --no-started-from-file
 +
                                VLC is started from file association
 +
                                (default disabled)
 +
          Tell VLC that it is being launched due to a file association in the
 +
          OS
 +
      --one-instance-when-started-from-file, --no-one-instance-when-started-from-file
 +
                                Use only one instance when started from file
 +
                                manager
 +
                                (default enabled)
 +
          Use only one instance when started from file manager
 +
      --playlist-enqueue, --no-playlist-enqueue
 +
                                Enqueue items into playlist in one instance
 +
                                mode
 +
                                (default disabled)
 +
          When using the one instance only option, enqueue items to playlist
 +
          and keep playing current item.
 +
      --media-library, --no-media-library
 +
                                Use media library
 +
                                (default disabled)
 +
          The media library is automatically saved and reloaded each time you
 +
          start VLC.
 +
      --playlist-tree, --no-playlist-tree
 +
                                Display playlist tree
 +
                                (default disabled)
 +
          The playlist can use a tree to categorize some items, like the
 +
          contents of a directory.
 +
      --open=<string>            Default stream
 +
          This stream will always be opened at VLC startup.
 +
      --auto-preparse, --no-auto-preparse
 +
                                Automatically preparse items
 +
                                (default enabled)
 +
          Automatically preparse items added to the playlist (to retrieve some
 +
          metadata).
 +
      --preparse-timeout=<integer>
 +
                                Preparsing timeout
 +
          Maximum time allowed to preparse an item, in milliseconds
 +
      --metadata-network-access, --no-metadata-network-access
 +
                                Allow metadata network access
 +
                                (default enabled)
 +
          Allow metadata network access
 +
      --recursive={none,collapse,expand}
 +
                                Subdirectory behavior
 +
          Select whether subdirectories must be expanded. none: subdirectories
 +
          do not appear in the playlist. collapse: subdirectories appear but
 +
          are expanded on first play. expand: all subdirectories are expanded.
 +
      --ignore-filetypes=<string>
 +
                                Ignored extensions
 +
          Files with these extensions will not be added to playlist when
 +
          opening a directory. This is useful if you add directories that
 +
          contain playlist files for instance. Use a comma-separated list of
 +
          extensions.
 +
      --show-hiddenfiles, --no-show-hiddenfiles
 +
                                Show hidden files
 +
                                (default disabled)
 +
          Ignore files starting with '.'
 +
      --extractor-flatten, --no-extractor-flatten
 +
                                Flatten files listed by extractors (archive)
 +
                                (default disabled)
 +
  -S, --services-discovery=<string>
 +
                                Services discovery modules
 +
          Specifies the services discovery modules to preload, separated by
 +
          colons. Typical value is "sap".
 +
  -v, --verbose=<integer>        Verbosity (0,1,2)
 +
          This is the verbosity level (0=only errors and standard messages,
 +
          1=warnings, 2=debug).
 +
      --color, --no-color        Color messages
 +
                                (default enabled)
 +
          This enables colorization of the messages sent to the console. Your
 +
          terminal needs Linux color support for this to work.
 +
      --advanced, --no-advanced  Show advanced options
 +
                                (default disabled)
 +
          When this is enabled, the preferences and/or interfaces will show all
 +
          available options, including those that most users should never
 +
          touch.
 +
      --interact, --no-interact  Interface interaction
 +
                                (default enabled)
 +
          When this is enabled, the interface will show a dialog box each time
 +
          some user input is required.
 +
      --stats, --no-stats        Locally collect statistics
 +
                                (default enabled)
 +
          Collect miscellaneous local statistics about the playing media.
 +
  -I, --intf=<string>            Interface module
 +
          This is the main interface used by VLC. The default behavior is to
 +
          automatically select the best module available.
 +
      --extraintf=<string>      Extra interface modules
 +
          You can select "additional interfaces" for VLC. They will be launched
 +
          in the background in addition to the default interface. Use a colon
 +
          separated list of interface modules. (common values are "rc" (remote
 +
          control), "http", "gestures" ...)
 +
      --control=<string>        Control interfaces
 +
          You can select control interfaces for VLC.
 +
 
 +
Hot keys
 +
These settings are the global VLC key bindings, known as "hotkeys".
 +
      --hotkeys-y-wheel-mode={-1 (Ignore), 0 (Volume control), 2 (Position control), 3 (Position control reversed)}
 +
                                Mouse wheel vertical axis control
 +
          The mouse wheel vertical (up/down) axis can control volume, position
 +
          or be ignored.
 +
      --hotkeys-x-wheel-mode={-1 (Ignore), 0 (Volume control), 2 (Position control), 3 (Position control reversed)}
 +
                                Mouse wheel horizontal axis control
 +
          The mouse wheel horizontal (left/right) axis can control volume,
 +
          position or be ignored.
 +
      --global-key-toggle-fullscreen=<string>
 +
                                Fullscreen
 +
          Select the hotkey to use to swap fullscreen state.
 +
      --key-toggle-fullscreen=<string>
 +
                                Fullscreen
 +
          Select the hotkey to use to swap fullscreen state.
 +
      --global-key-leave-fullscreen=<string>
 +
                                Exit fullscreen
 +
          Select the hotkey to use to exit fullscreen state.
 +
      --key-leave-fullscreen=<string>
 +
                                Exit fullscreen
 +
          Select the hotkey to use to exit fullscreen state.
 +
      --global-key-play-pause=<string>
 +
                                Play/Pause
 +
          Select the hotkey to use to swap paused state.
 +
      --key-play-pause=<string>  Play/Pause
 +
          Select the hotkey to use to swap paused state.
 +
      --global-key-pause=<string>
 +
                                Pause only
 +
          Select the hotkey to use to pause.
 +
      --key-pause=<string>      Pause only
 +
          Select the hotkey to use to pause.
 +
      --global-key-play=<string> Play only
 +
          Select the hotkey to use to play.
 +
      --key-play=<string>        Play only
 +
          Select the hotkey to use to play.
 +
      --global-key-faster=<string>
 +
                                Faster
 +
          Select the hotkey to use for fast forward playback.
 +
      --key-faster=<string>      Faster
 +
          Select the hotkey to use for fast forward playback.
 +
      --global-key-slower=<string>
 +
                                Slower
 +
          Select the hotkey to use for slow motion playback.
 +
      --key-slower=<string>      Slower
 +
          Select the hotkey to use for slow motion playback.
 +
      --global-key-rate-normal=<string>
 +
                                Normal rate
 +
          Select the hotkey to set the playback rate back to normal.
 +
      --key-rate-normal=<string> Normal rate
 +
          Select the hotkey to set the playback rate back to normal.
 +
      --global-key-rate-faster-fine=<string>
 +
                                Faster (fine)
 +
          Select the hotkey to use for fast forward playback.
 +
      --key-rate-faster-fine=<string>
 +
                                Faster (fine)
 +
          Select the hotkey to use for fast forward playback.
 +
      --global-key-rate-slower-fine=<string>
 +
                                Slower (fine)
 +
          Select the hotkey to use for slow motion playback.
 +
      --key-rate-slower-fine=<string>
 +
                                Slower (fine)
 +
          Select the hotkey to use for slow motion playback.
 +
      --global-key-next=<string> Next
 +
          Select the hotkey to use to skip to the next item in the playlist.
 +
      --key-next=<string>        Next
 +
          Select the hotkey to use to skip to the next item in the playlist.
 +
      --global-key-prev=<string> Previous
 +
          Select the hotkey to use to skip to the previous item in the
 +
          playlist.
 +
      --key-prev=<string>        Previous
 +
          Select the hotkey to use to skip to the previous item in the
 +
          playlist.
 +
      --global-key-stop=<string> Stop
 +
          Select the hotkey to stop playback.
 +
      --key-stop=<string>        Stop
 +
          Select the hotkey to stop playback.
 +
      --global-key-position=<string>
 +
                                Position
 +
          Select the hotkey to display the position.
 +
      --key-position=<string>    Position
 +
          Select the hotkey to display the position.
 +
      --global-key-jump-extrashort=<string>
 +
                                Very short backwards jump
 +
          Select the hotkey to make a very short backwards jump.
 +
      --key-jump-extrashort=<string>
 +
                                Very short backwards jump
 +
          Select the hotkey to make a very short backwards jump.
 +
      --global-key-jump+extrashort=<string>
 +
                                Very short forward jump
 +
          Select the hotkey to make a very short forward jump.
 +
      --key-jump+extrashort=<string>
 +
                                Very short forward jump
 +
          Select the hotkey to make a very short forward jump.
 +
      --global-key-jump-short=<string>
 +
                                Short backwards jump
 +
          Select the hotkey to make a short backwards jump.
 +
      --key-jump-short=<string>  Short backwards jump
 +
          Select the hotkey to make a short backwards jump.
 +
      --global-key-jump+short=<string>
 +
                                Short forward jump
 +
          Select the hotkey to make a short forward jump.
 +
      --key-jump+short=<string>  Short forward jump
 +
          Select the hotkey to make a short forward jump.
 +
      --global-key-jump-medium=<string>
 +
                                Medium backwards jump
 +
          Select the hotkey to make a medium backwards jump.
 +
      --key-jump-medium=<string> Medium backwards jump
 +
          Select the hotkey to make a medium backwards jump.
 +
      --global-key-jump+medium=<string>
 +
                                Medium forward jump
 +
          Select the hotkey to make a medium forward jump.
 +
      --key-jump+medium=<string> Medium forward jump
 +
          Select the hotkey to make a medium forward jump.
 +
      --global-key-jump-long=<string>
 +
                                Long backwards jump
 +
          Select the hotkey to make a long backwards jump.
 +
      --key-jump-long=<string>  Long backwards jump
 +
          Select the hotkey to make a long backwards jump.
 +
      --global-key-jump+long=<string>
 +
                                Long forward jump
 +
          Select the hotkey to make a long forward jump.
 +
      --key-jump+long=<string>  Long forward jump
 +
          Select the hotkey to make a long forward jump.
 +
      --global-key-frame-next=<string>
 +
                                Next frame
 +
          Select the hotkey to got to the next video frame.
 +
      --key-frame-next=<string>  Next frame
 +
          Select the hotkey to got to the next video frame.
 +
      --global-key-nav-activate=<string>
 +
                                Activate
 +
          Select the key to activate selected item in DVD menus.
 +
      --key-nav-activate=<string>
 +
                                Activate
 +
          Select the key to activate selected item in DVD menus.
 +
      --global-key-nav-up=<string>
 +
                                Navigate up
 +
          Select the key to move the selector up in DVD menus / Move viewpoint
 +
          to up (pitch).
 +
      --key-nav-up=<string>      Navigate up
 +
          Select the key to move the selector up in DVD menus / Move viewpoint
 +
          to up (pitch).
 +
      --global-key-nav-down=<string>
 +
                                Navigate down
 +
          Select the key to move the selector down in DVD menus / Move
 +
          viewpoint to down (pitch).
 +
      --key-nav-down=<string>    Navigate down
 +
          Select the key to move the selector down in DVD menus / Move
 +
          viewpoint to down (pitch).
 +
      --global-key-nav-left=<string>
 +
                                Navigate left
 +
          Select the key to move the selector left in DVD menus / Move
 +
          viewpoint to left (yaw).
 +
      --key-nav-left=<string>    Navigate left
 +
          Select the key to move the selector left in DVD menus / Move
 +
          viewpoint to left (yaw).
 +
      --global-key-nav-right=<string>
 +
                                Navigate right
 +
          Select the key to move the selector right in DVD menus / Move
 +
          viewpoint to right (yaw).
 +
      --key-nav-right=<string>  Navigate right
 +
          Select the key to move the selector right in DVD menus / Move
 +
          viewpoint to right (yaw).
 +
      --global-key-disc-menu=<string>
 +
                                Go to the DVD menu
 +
          Select the key to take you to the DVD menu
 +
      --key-disc-menu=<string>  Go to the DVD menu
 +
          Select the key to take you to the DVD menu
 +
      --global-key-title-prev=<string>
 +
                                Select previous DVD title
 +
          Select the key to choose the previous title from the DVD
 +
      --key-title-prev=<string>  Select previous DVD title
 +
          Select the key to choose the previous title from the DVD
 +
      --global-key-title-next=<string>
 +
                                Select next DVD title
 +
          Select the key to choose the next title from the DVD
 +
      --key-title-next=<string>  Select next DVD title
 +
          Select the key to choose the next title from the DVD
 +
      --global-key-chapter-prev=<string>
 +
                                Select prev DVD chapter
 +
          Select the key to choose the previous chapter from the DVD
 +
      --key-chapter-prev=<string>
 +
                                Select prev DVD chapter
 +
          Select the key to choose the previous chapter from the DVD
 +
      --global-key-chapter-next=<string>
 +
                                Select next DVD chapter
 +
          Select the key to choose the next chapter from the DVD
 +
      --key-chapter-next=<string>
 +
                                Select next DVD chapter
 +
          Select the key to choose the next chapter from the DVD
 +
      --global-key-quit=<string> Quit
 +
          Select the hotkey to quit the application.
 +
      --key-quit=<string>        Quit
 +
          Select the hotkey to quit the application.
 +
      --global-key-vol-up=<string>
 +
                                Volume up
 +
          Select the key to increase audio volume.
 +
      --key-vol-up=<string>      Volume up
 +
          Select the key to increase audio volume.
 +
      --global-key-vol-down=<string>
 +
                                Volume down
 +
          Select the key to decrease audio volume.
 +
      --key-vol-down=<string>    Volume down
 +
          Select the key to decrease audio volume.
 +
      --global-key-vol-mute=<string>
 +
                                Mute
 +
          Select the key to mute audio.
 +
      --key-vol-mute=<string>    Mute
 +
          Select the key to mute audio.
 +
      --global-key-subdelay-up=<string>
 +
                                Subtitle delay up
 +
          Select the key to increase the subtitle delay.
 +
      --key-subdelay-up=<string> Subtitle delay up
 +
          Select the key to increase the subtitle delay.
 +
      --global-key-subdelay-down=<string>
 +
                                Subtitle delay down
 +
          Select the key to decrease the subtitle delay.
 +
      --key-subdelay-down=<string>
 +
                                Subtitle delay down
 +
          Select the key to decrease the subtitle delay.
 +
      --global-key-subsync-markaudio=<string>
 +
                                Subtitle sync / bookmark audio timestamp
 +
          Select the key to bookmark audio timestamp when syncing subtitles.
 +
      --key-subsync-markaudio=<string>
 +
                                Subtitle sync / bookmark audio timestamp
 +
          Select the key to bookmark audio timestamp when syncing subtitles.
 +
      --global-key-subsync-marksub=<string>
 +
                                Subtitle sync / bookmark subtitle timestamp
 +
          Select the key to bookmark subtitle timestamp when syncing subtitles.
 +
      --key-subsync-marksub=<string>
 +
                                Subtitle sync / bookmark subtitle timestamp
 +
          Select the key to bookmark subtitle timestamp when syncing subtitles.
 +
      --global-key-subsync-apply=<string>
 +
                                Subtitle sync / synchronize audio & subtitle
 +
                                timestamps
 +
          Select the key to synchronize bookmarked audio & subtitle timestamps.
 +
      --key-subsync-apply=<string>
 +
                                Subtitle sync / synchronize audio & subtitle
 +
                                timestamps
 +
          Select the key to synchronize bookmarked audio & subtitle timestamps.
 +
      --global-key-subsync-reset=<string>
 +
                                Subtitle sync / reset audio & subtitle
 +
                                synchronization
 +
          Select the key to reset synchronization of audio & subtitle
 +
          timestamps.
 +
      --key-subsync-reset=<string>
 +
                                Subtitle sync / reset audio & subtitle
 +
                                synchronization
 +
          Select the key to reset synchronization of audio & subtitle
 +
          timestamps.
 +
      --global-key-subpos-up=<string>
 +
                                Subtitle position up
 +
          Select the key to move subtitles higher.
 +
      --key-subpos-up=<string>  Subtitle position up
 +
          Select the key to move subtitles higher.
 +
      --global-key-subpos-down=<string>
 +
                                Subtitle position down
 +
          Select the key to move subtitles lower.
 +
      --key-subpos-down=<string> Subtitle position down
 +
          Select the key to move subtitles lower.
 +
      --global-key-audiodelay-up=<string>
 +
                                Audio delay up
 +
          Select the key to increase the audio delay.
 +
      --key-audiodelay-up=<string>
 +
                                Audio delay up
 +
          Select the key to increase the audio delay.
 +
      --global-key-audiodelay-down=<string>
 +
                                Audio delay down
 +
          Select the key to decrease the audio delay.
 +
      --key-audiodelay-down=<string>
 +
                                Audio delay down
 +
          Select the key to decrease the audio delay.
 +
      --global-key-audio-track=<string>
 +
                                Cycle audio track
 +
          Cycle through the available audio tracks(languages).
 +
      --key-audio-track=<string> Cycle audio track
 +
          Cycle through the available audio tracks(languages).
 +
      --global-key-audiodevice-cycle=<string>
 +
                                Cycle through audio devices
 +
          Cycle through available audio devices
 +
      --key-audiodevice-cycle=<string>
 +
                                Cycle through audio devices
 +
          Cycle through available audio devices
 +
      --global-key-subtitle-revtrack=<string>
 +
                                Cycle subtitle track in reverse order
 +
          Cycle through the available subtitle tracks in reverse order.
 +
      --key-subtitle-revtrack=<string>
 +
                                Cycle subtitle track in reverse order
 +
          Cycle through the available subtitle tracks in reverse order.
 +
      --global-key-subtitle-track=<string>
 +
                                Cycle subtitle track
 +
          Cycle through the available subtitle tracks.
 +
      --key-subtitle-track=<string>
 +
                                Cycle subtitle track
 +
          Cycle through the available subtitle tracks.
 +
      --global-key-subtitle-toggle=<string>
 +
                                Toggle subtitles
 +
          Toggle subtitle track visibility.
 +
      --key-subtitle-toggle=<string>
 +
                                Toggle subtitles
 +
          Toggle subtitle track visibility.
 +
      --global-key-program-sid-next=<string>
 +
                                Cycle next program Service ID
 +
          Cycle through the available next program Service IDs (SIDs).
 +
      --key-program-sid-next=<string>
 +
                                Cycle next program Service ID
 +
          Cycle through the available next program Service IDs (SIDs).
 +
      --global-key-program-sid-prev=<string>
 +
                                Cycle previous program Service ID
 +
          Cycle through the available previous program Service IDs (SIDs).
 +
      --key-program-sid-prev=<string>
 +
                                Cycle previous program Service ID
 +
          Cycle through the available previous program Service IDs (SIDs).
 +
      --global-key-aspect-ratio=<string>
 +
                                Cycle source aspect ratio
 +
          Cycle through a predefined list of source aspect ratios.
 +
      --key-aspect-ratio=<string>
 +
                                Cycle source aspect ratio
 +
          Cycle through a predefined list of source aspect ratios.
 +
      --global-key-crop=<string> Cycle video crop
 +
          Cycle through a predefined list of crop formats.
 +
      --key-crop=<string>        Cycle video crop
 +
          Cycle through a predefined list of crop formats.
 +
      --global-key-toggle-autoscale=<string>
 +
                                Toggle autoscaling
 +
          Activate or deactivate autoscaling.
 +
      --key-toggle-autoscale=<string>
 +
                                Toggle autoscaling
 +
          Activate or deactivate autoscaling.
 +
      --global-key-incr-scalefactor=<string>
 +
                                Increase scale factor
 +
          Increase scale factor
 +
      --key-incr-scalefactor=<string>
 +
                                Increase scale factor
 +
          Increase scale factor
 +
      --global-key-decr-scalefactor=<string>
 +
                                Decrease scale factor
 +
          Decrease scale factor
 +
      --key-decr-scalefactor=<string>
 +
                                Decrease scale factor
 +
          Decrease scale factor
 +
      --global-key-deinterlace=<string>
 +
                                Toggle deinterlacing
 +
          Activate or deactivate deinterlacing.
 +
      --key-deinterlace=<string> Toggle deinterlacing
 +
          Activate or deactivate deinterlacing.
 +
      --global-key-deinterlace-mode=<string>
 +
                                Cycle deinterlace modes
 +
          Cycle through available deinterlace modes.
 +
      --key-deinterlace-mode=<string>
 +
                                Cycle deinterlace modes
 +
          Cycle through available deinterlace modes.
 +
      --global-key-intf-show=<string>
 +
                                Show controller in fullscreen
 +
          Show controller in fullscreen
 +
      --key-intf-show=<string>  Show controller in fullscreen
 +
          Show controller in fullscreen
 +
      --global-key-intf-boss=<string>
 +
                                Boss key
 +
          Hide the interface and pause playback.
 +
      --key-intf-boss=<string>  Boss key
 +
          Hide the interface and pause playback.
 +
      --global-key-intf-popup-menu=<string>
 +
                                Context menu
 +
          Show the contextual popup menu.
 +
      --key-intf-popup-menu=<string>
 +
                                Context menu
 +
          Show the contextual popup menu.
 +
      --global-key-snapshot=<string>
 +
                                Take video snapshot
 +
          Takes a video snapshot and writes it to disk.
 +
      --key-snapshot=<string>    Take video snapshot
 +
          Takes a video snapshot and writes it to disk.
 +
      --global-key-record=<string>
 +
                                Record
 +
          Record access filter start/stop.
 +
      --key-record=<string>      Record
 +
          Record access filter start/stop.
 +
      --global-key-zoom=<string> Zoom
 +
          Zoom
 +
      --key-zoom=<string>        Zoom
 +
          Zoom
 +
      --global-key-unzoom=<string>
 +
                                Un-Zoom
 +
          Un-Zoom
 +
      --key-unzoom=<string>      Un-Zoom
 +
          Un-Zoom
 +
      --global-key-wallpaper=<string>
 +
                                Toggle wallpaper mode in video output
 +
          Toggle wallpaper mode in video output.
 +
      --key-wallpaper=<string>  Toggle wallpaper mode in video output
 +
          Toggle wallpaper mode in video output.
 +
      --global-key-crop-top=<string>
 +
                                Crop one pixel from the top of the video
 +
          Crop one pixel from the top of the video
 +
      --key-crop-top=<string>    Crop one pixel from the top of the video
 +
          Crop one pixel from the top of the video
 +
      --global-key-uncrop-top=<string>
 +
                                Uncrop one pixel from the top of the video
 +
          Uncrop one pixel from the top of the video
 +
      --key-uncrop-top=<string>  Uncrop one pixel from the top of the video
 +
          Uncrop one pixel from the top of the video
 +
      --global-key-crop-left=<string>
 +
                                Crop one pixel from the left of the video
 +
          Crop one pixel from the left of the video
 +
      --key-crop-left=<string>  Crop one pixel from the left of the video
 +
          Crop one pixel from the left of the video
 +
      --global-key-uncrop-left=<string>
 +
                                Uncrop one pixel from the left of the video
 +
          Uncrop one pixel from the left of the video
 +
      --key-uncrop-left=<string> Uncrop one pixel from the left of the video
 +
          Uncrop one pixel from the left of the video
 +
      --global-key-crop-bottom=<string>
 +
                                Crop one pixel from the bottom of the video
 +
          Crop one pixel from the bottom of the video
 +
      --key-crop-bottom=<string> Crop one pixel from the bottom of the video
 +
          Crop one pixel from the bottom of the video
 +
      --global-key-uncrop-bottom=<string>
 +
                                Uncrop one pixel from the bottom of the video
 +
          Uncrop one pixel from the bottom of the video
 +
      --key-uncrop-bottom=<string>
 +
                                Uncrop one pixel from the bottom of the video
 +
          Uncrop one pixel from the bottom of the video
 +
      --global-key-crop-right=<string>
 +
                                Crop one pixel from the right of the video
 +
          Crop one pixel from the right of the video
 +
      --key-crop-right=<string>  Crop one pixel from the right of the video
 +
          Crop one pixel from the right of the video
 +
      --global-key-uncrop-right=<string>
 +
                                Uncrop one pixel from the right of the video
 +
          Uncrop one pixel from the right of the video
 +
      --key-uncrop-right=<string>
 +
                                Uncrop one pixel from the right of the video
 +
          Uncrop one pixel from the right of the video
 +
      --global-key-random=<string>
 +
                                Random
 +
          Toggle random playlist playback
 +
      --key-random=<string>      Random
 +
          Toggle random playlist playback
 +
      --global-key-loop=<string> Normal/Loop/Repeat
 +
          Toggle Normal/Loop/Repeat playlist modes
 +
      --key-loop=<string>        Normal/Loop/Repeat
 +
          Toggle Normal/Loop/Repeat playlist modes
 +
      --global-key-viewpoint-fov-in=<string>
 +
                                Shrink the viewpoint field of view (360°)
 +
          Shrink the viewpoint field of view (360°)
 +
      --key-viewpoint-fov-in=<string>
 +
                                Shrink the viewpoint field of view (360°)
 +
          Shrink the viewpoint field of view (360°)
 +
      --global-key-viewpoint-fov-out=<string>
 +
                                Expand the viewpoint field of view (360°)
 +
          Expand the viewpoint field of view (360°)
 +
      --key-viewpoint-fov-out=<string>
 +
                                Expand the viewpoint field of view (360°)
 +
          Expand the viewpoint field of view (360°)
 +
      --global-key-viewpoint-roll-clock=<string>
 +
                                Roll the viewpoint clockwise (360°)
 +
          Roll the viewpoint clockwise (360°)
 +
      --key-viewpoint-roll-clock=<string>
 +
                                Roll the viewpoint clockwise (360°)
 +
          Roll the viewpoint clockwise (360°)
 +
      --global-key-viewpoint-roll-anticlock=<string>
 +
                                Roll the viewpoint anti-clockwise (360°)
 +
          Roll the viewpoint anti-clockwise (360°)
 +
      --key-viewpoint-roll-anticlock=<string>
 +
                                Roll the viewpoint anti-clockwise (360°)
 +
          Roll the viewpoint anti-clockwise (360°)
 +
  Zoom:
 +
      --global-key-zoom-quarter=<string>
 +
                                1:4 Quarter
 +
      --key-zoom-quarter=<string>
 +
                                1:4 Quarter
 +
      --global-key-zoom-half=<string>
 +
                                1:2 Half
 +
      --key-zoom-half=<string>  1:2 Half
 +
      --global-key-zoom-original=<string>
 +
                                1:1 Original
 +
      --key-zoom-original=<string>
 +
                                1:1 Original
 +
      --global-key-zoom-double=<string>
 +
                                2:1 Double
 +
      --key-zoom-double=<string> 2:1 Double
 +
  Jump sizes:
 +
      --extrashort-jump-size=<integer>
 +
                                Very short jump length
 +
          Very short jump length, in seconds.
 +
      --short-jump-size=<integer>
 +
                                Short jump length
 +
          Short jump length, in seconds.
 +
      --medium-jump-size=<integer>
 +
                                Medium jump length
 +
          Medium jump length, in seconds.
 +
      --long-jump-size=<integer> Long jump length
 +
          Long jump length, in seconds.
 +
      --global-key-set-bookmark1=<string>
 +
                                Set playlist bookmark 1
 +
          Select the key to set this playlist bookmark.
 +
      --key-set-bookmark1=<string>
 +
                                Set playlist bookmark 1
 +
          Select the key to set this playlist bookmark.
 +
      --global-key-set-bookmark2=<string>
 +
                                Set playlist bookmark 2
 +
          Select the key to set this playlist bookmark.
 +
      --key-set-bookmark2=<string>
 +
                                Set playlist bookmark 2
 +
          Select the key to set this playlist bookmark.
 +
      --global-key-set-bookmark3=<string>
 +
                                Set playlist bookmark 3
 +
          Select the key to set this playlist bookmark.
 +
      --key-set-bookmark3=<string>
 +
                                Set playlist bookmark 3
 +
          Select the key to set this playlist bookmark.
 +
      --global-key-set-bookmark4=<string>
 +
                                Set playlist bookmark 4
 +
          Select the key to set this playlist bookmark.
 +
      --key-set-bookmark4=<string>
 +
                                Set playlist bookmark 4
 +
          Select the key to set this playlist bookmark.
 +
      --global-key-set-bookmark5=<string>
 +
                                Set playlist bookmark 5
 +
          Select the key to set this playlist bookmark.
 +
      --key-set-bookmark5=<string>
 +
                                Set playlist bookmark 5
 +
          Select the key to set this playlist bookmark.
 +
      --global-key-set-bookmark6=<string>
 +
                                Set playlist bookmark 6
 +
          Select the key to set this playlist bookmark.
 +
      --key-set-bookmark6=<string>
 +
                                Set playlist bookmark 6
 +
          Select the key to set this playlist bookmark.
 +
      --global-key-set-bookmark7=<string>
 +
                                Set playlist bookmark 7
 +
          Select the key to set this playlist bookmark.
 +
      --key-set-bookmark7=<string>
 +
                                Set playlist bookmark 7
 +
          Select the key to set this playlist bookmark.
 +
      --global-key-set-bookmark8=<string>
 +
                                Set playlist bookmark 8
 +
          Select the key to set this playlist bookmark.
 +
      --key-set-bookmark8=<string>
 +
                                Set playlist bookmark 8
 +
          Select the key to set this playlist bookmark.
 +
      --global-key-set-bookmark9=<string>
 +
                                Set playlist bookmark 9
 +
          Select the key to set this playlist bookmark.
 +
      --key-set-bookmark9=<string>
 +
                                Set playlist bookmark 9
 +
          Select the key to set this playlist bookmark.
 +
      --global-key-set-bookmark10=<string>
 +
                                Set playlist bookmark 10
 +
          Select the key to set this playlist bookmark.
 +
      --key-set-bookmark10=<string>
 +
                                Set playlist bookmark 10
 +
          Select the key to set this playlist bookmark.
 +
      --global-key-play-bookmark1=<string>
 +
                                Play playlist bookmark 1
 +
          Select the key to play this bookmark.
 +
      --key-play-bookmark1=<string>
 +
                                Play playlist bookmark 1
 +
          Select the key to play this bookmark.
 +
      --global-key-play-bookmark2=<string>
 +
                                Play playlist bookmark 2
 +
          Select the key to play this bookmark.
 +
      --key-play-bookmark2=<string>
 +
                                Play playlist bookmark 2
 +
          Select the key to play this bookmark.
 +
      --global-key-play-bookmark3=<string>
 +
                                Play playlist bookmark 3
 +
          Select the key to play this bookmark.
 +
      --key-play-bookmark3=<string>
 +
                                Play playlist bookmark 3
 +
          Select the key to play this bookmark.
 +
      --global-key-play-bookmark4=<string>
 +
                                Play playlist bookmark 4
 +
          Select the key to play this bookmark.
 +
      --key-play-bookmark4=<string>
 +
                                Play playlist bookmark 4
 +
          Select the key to play this bookmark.
 +
      --global-key-play-bookmark5=<string>
 +
                                Play playlist bookmark 5
 +
          Select the key to play this bookmark.
 +
      --key-play-bookmark5=<string>
 +
                                Play playlist bookmark 5
 +
          Select the key to play this bookmark.
 +
      --global-key-play-bookmark6=<string>
 +
                                Play playlist bookmark 6
 +
          Select the key to play this bookmark.
 +
      --key-play-bookmark6=<string>
 +
                                Play playlist bookmark 6
 +
          Select the key to play this bookmark.
 +
      --global-key-play-bookmark7=<string>
 +
                                Play playlist bookmark 7
 +
          Select the key to play this bookmark.
 +
      --key-play-bookmark7=<string>
 +
                                Play playlist bookmark 7
 +
          Select the key to play this bookmark.
 +
      --global-key-play-bookmark8=<string>
 +
                                Play playlist bookmark 8
 +
          Select the key to play this bookmark.
 +
      --key-play-bookmark8=<string>
 +
                                Play playlist bookmark 8
 +
          Select the key to play this bookmark.
 +
      --global-key-play-bookmark9=<string>
 +
                                Play playlist bookmark 9
 +
          Select the key to play this bookmark.
 +
      --key-play-bookmark9=<string>
 +
                                Play playlist bookmark 9
 +
          Select the key to play this bookmark.
 +
      --global-key-play-bookmark10=<string>
 +
                                Play playlist bookmark 10
 +
          Select the key to play this bookmark.
 +
      --key-play-bookmark10=<string>
 +
                                Play playlist bookmark 10
 +
          Select the key to play this bookmark.
 +
      --global-key-clear-playlist=<string>
 +
                                Clear the playlist
 +
          Select the key to clear the current playlist.
 +
      --key-clear-playlist=<string>
 +
                                Clear the playlist
 +
          Select the key to clear the current playlist.
 +
      --global-key-subtitle-text-scale-normal=<string>
 +
                                Reset subtitles text scale
 +
          Select the key to change subtitles text scaling
 +
      --key-subtitle-text-scale-normal=<string>
 +
                                Reset subtitles text scale
 +
          Select the key to change subtitles text scaling
 +
      --global-key-subtitle-text-scale-up=<string>
 +
                                Scale down subtitles text
 +
          Select the key to change subtitles text scaling
 +
      --key-subtitle-text-scale-up=<string>
 +
                                Scale down subtitles text
 +
          Select the key to change subtitles text scaling
 +
      --global-key-subtitle-text-scale-down=<string>
 +
                                Scale up subtitles text
 +
          Select the key to change subtitles text scaling
 +
      --key-subtitle-text-scale-down=<string>
 +
                                Scale up subtitles text
 +
          Select the key to change subtitles text scaling
 +
      --bookmark1=<string>      Playlist bookmark 1
 +
          This allows you to define playlist bookmarks.
 +
      --bookmark2=<string>      Playlist bookmark 2
 +
          This allows you to define playlist bookmarks.
 +
      --bookmark3=<string>      Playlist bookmark 3
 +
          This allows you to define playlist bookmarks.
 +
      --bookmark4=<string>      Playlist bookmark 4
 +
          This allows you to define playlist bookmarks.
 +
      --bookmark5=<string>      Playlist bookmark 5
 +
          This allows you to define playlist bookmarks.
 +
      --bookmark6=<string>      Playlist bookmark 6
 +
          This allows you to define playlist bookmarks.
 +
      --bookmark7=<string>      Playlist bookmark 7
 +
          This allows you to define playlist bookmarks.
 +
      --bookmark8=<string>      Playlist bookmark 8
 +
          This allows you to define playlist bookmarks.
 +
      --bookmark9=<string>      Playlist bookmark 9
 +
          This allows you to define playlist bookmarks.
 +
      --bookmark10=<string>      Playlist bookmark 10
 +
          This allows you to define playlist bookmarks.
 +
  -h, --help, --no-help          print help for VLC (can be combined with
 +
                                --advanced and --help-verbose)
 +
                                (default disabled)
 +
  -H, --full-help, --no-full-help
 +
                                Exhaustive help for VLC and its modules
 +
                                (default disabled)
 +
      --longhelp, --no-longhelp  print help for VLC and all its modules (can be
 +
                                combined with --advanced and --help-verbose)
 +
                                (default disabled)
 +
      --help-verbose, --no-help-verbose
 +
                                ask for extra verbosity when displaying help
 +
                                (default disabled)
 +
  -l, --list, --no-list          print a list of available modules
 +
                                (default disabled)
 +
      --list-verbose, --no-list-verbose
 +
                                print a list of available modules with extra
 +
                                detail
 +
                                (default disabled)
 +
  -p, --module=<string>          print help on a specific module (can be
 +
                                combined with --advanced and --help-verbose).
 +
                                Prefix the module name with = for strict
 +
                                matches.
 +
      --ignore-config, --no-ignore-config
 +
                                no configuration option will be loaded nor
 +
                                saved to config file
 +
                                (default enabled)
 +
      --reset-config, --no-reset-config
 +
                                reset the current config to the default values
 +
                                (default disabled)
 +
      --reset-plugins-cache, --no-reset-plugins-cache
 +
                                resets the current plugins cache
 +
                                (default disabled)
 +
      --version, --no-version    print version information
 +
                                 (default disabled)
 +
       --config=<string>         use alternate config file
  
==See also==
+
Note: 2 modules were not displayed because they only have advanced options.
*[[Mac OS X]] for special notes on using the command line on Mac OS X
 
  
[[Category:Documentation]]
+
</pre></small>

Latest revision as of 04:03, 19 April 2019

VLC command-line help for Windows users about VLC media player
VLC-0-8-6 command-line help, VLC-0-9-x command-line help, VLC-1-0-x command-line help, VLC-1-1-x command-line help, VLC-2-1-x command-line help

Running the command

vlc --help

will create a .TXT file containing all the command-line options.

You can also use this to get more exhaustive list:

vlc -H

If you look for help, on a particular module, you can also use

vlc -p module --advanced --help-verbose

--help-verbose explains things. Omit this option if too much output is generated

To view this without leaving the command-line in Windows, use the following command (assuming you installed it in the default folder):

more "%PROGRAMFILES%\VideoLAN\VLC\vlc-help.txt"

This trick uses the command-line command more to show the file screen-by-screen. Pressing spacebar will advance the output a screen at a time, and pressing enter will advance the output one line at a time.

Undocumented option:

-vv     "Verbose verbose". Verbose output (debug infos can be displayed by selecting "Debug logging" interface under View->Add Interface menu)

Here's the output of vlc -H of vlc-4.0.0-dev under Windows. If the text is too small, pressing Ctrl and + together in most browsers will increase the font size (reset with Ctrl and 0 together).

Usage: vlc [options] [stream] ...
You can specify multiple streams on the commandline.
They will be enqueued in the playlist.
The first item specified will be played first.

Options-styles:
  --option  A global option that is set for the duration of the program.
   -option  A single letter version of a global --option.
   :option  An option that only applies to the stream directly before it
            and that overrides previous settings.

Stream MRL syntax:
  [[access][/demux]://]URL[#[title][:chapter][-[title][:chapter]]]
  [:option=value ...]

  Many of the global --options can also be used as MRL specific :options.
  Multiple :option=value pairs can be specified.

URL syntax:
  file:///path/file              Plain media file
  http://host[:port]/file        HTTP URL
  ftp://host[:port]/file         FTP URL
  mms://host[:port]/file         MMS URL
  screen://                      Screen capture
  dvd://[device]                 DVD device
  vcd://[device]                 VCD device
  cdda://[device]                Audio CD device
  udp://[[<source address>]@[<bind address>][:<bind port>]]
                                 UDP stream sent by a streaming server
  vlc://pause:<seconds>          Pause the playlist for a certain time
  vlc://quit                     Special item to quit VLC


 Visualizer filter (visual)
   General:
      --effect-list=<string>     Effects list
          A list of visual effect, separated by commas. Current effects
          include: dummy, scope, spectrum, spectrometer and vuMeter.
      --effect-width=<integer>   Video width
          The width of the effects video window, in pixels.
      --effect-height=<integer>  Video height
          The height of the effects video window, in pixels.
      --effect-fft-window={none,hann,flattop,blackmanharris,kaiser} 
                                 FFT window
          The type of FFT window to use for spectrum-based visualizations.
      --effect-kaiser-param=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Kaiser window parameter
          The parameter alpha for the Kaiser window. Increasing alpha increases
          the main-lobe width and decreases the side-lobe amplitude.
   Spectrum analyser:
      --visual-80-bands, --no-visual-80-bands 
                                 Show 80 bands instead of 20
                                 (default enabled)
          Show 80 bands instead of 20
      --visual-peaks, --no-visual-peaks 
                                 Draw peaks in the analyzer
                                 (default enabled)
          Draw peaks in the analyzer
   Spectrometer:
      --spect-show-original, --no-spect-show-original 
                                 Enable original graphic spectrum
                                 (default disabled)
          Enable the "flat" spectrum analyzer in the spectrometer.
      --spect-show-base, --no-spect-show-base 
                                 Draw the base of the bands
                                 (default enabled)
          Draw the base of the bands
      --spect-radius=<integer>   Base pixel radius
          Defines radius size in pixels, of base of bands(beginning).
      --spect-sections=<integer [1 .. 2147483647]> 
                                 Spectral sections
          Determines how many sections of spectrum will exist.
      --spect-color=<integer>    V-plane color
          YUV-Color cube shifting across the V-plane ( 0 - 127 ).
      --spect-show-bands, --no-spect-show-bands 
                                 Draw bands in the spectrometer
                                 (default enabled)
          Draw bands in the spectrometer
      --spect-80-bands, --no-spect-80-bands 
                                 Show 80 bands instead of 20
                                 (default enabled)
          Show 80 bands instead of 20
      --spect-separ=<integer>    Number of blank pixels between bands.
          Number of blank pixels between bands.
      --spect-amp=<integer>      Amplification
          This is a coefficient that modifies the height of the bands.
      --spect-show-peaks, --no-spect-show-peaks 
                                 Draw peaks in the analyzer
                                 (default enabled)
          Draw peaks in the analyzer
      --spect-peak-width=<integer> 
                                 Peak extra width
          Additions or subtractions of pixels on the peak width.
      --spect-peak-height=<integer> 
                                 Peak height
          Total pixel height of the peak items.

 libprojectM effect (projectm)
      --projectm-preset-path=<string> 
                                 projectM preset path
          Path to the projectM preset directory
      --projectm-title-font=<string> 
                                 Title font
          Font used for the titles
      --projectm-menu-font=<string> 
                                 Font menu
          Font used for the menus
      --projectm-width=<integer> Video width
          The width of the video window, in pixels.
      --projectm-height=<integer> 
                                 Video height
          The height of the video window, in pixels.
      --projectm-meshx=<integer> Mesh width
          The width of the mesh, in pixels.
      --projectm-meshy=<integer> Mesh height
          The height of the mesh, in pixels.
      --projectm-texture-size=<integer> 
                                 Texture size
          The size of the texture, in pixels.

 Goom effect (goom)
      --goom-width=<integer>     Goom display width
          This allows you to set the resolution of the Goom display (bigger
          resolution will be prettier but more CPU intensive).
      --goom-height=<integer>    Goom display height
          This allows you to set the resolution of the Goom display (bigger
          resolution will be prettier but more CPU intensive).
      --goom-speed=<integer [1 .. 10]> 
                                 Goom animation speed
          This allows you to set the animation speed (between 1 and 10,
          defaults to 6).

 3D OpenGL spectrum visualization (glspectrum)
      --glspectrum-width=<integer> 
                                 Video width
          The width of the visualization window, in pixels.
      --glspectrum-height=<integer> 
                                 Video height
          The height of the visualization window, in pixels.

 Wall video filter (wall)
      --wall-cols=<integer [1 .. 15]> 
                                 Number of columns
          Number of horizontal windows in which to split the video.
      --wall-rows=<integer [1 .. 15]> 
                                 Number of rows
          Number of vertical windows in which to split the video.
      --wall-active=<string>     Active windows
          Comma-separated list of active windows, defaults to all
      --wall-element-aspect=<string> 
                                 Element aspect ratio
          Aspect ratio of the individual displays building the wall.

 Panoramix: wall with overlap video filter (panoramix)
 Split the video in multiple windows to display on a wall of screens
      --panoramix-cols=<integer [-1 .. 15]> 
                                 Number of columns
          Select the number of horizontal video windows in which to split the
          video
      --panoramix-rows=<integer [-1 .. 15]> 
                                 Number of rows
          Select the number of vertical video windows in which to split the
          video
      --panoramix-bz-length=<integer [0 .. 100]> 
                                 length of the overlapping area (in %)
          Select in percent the length of the blended zone
      --panoramix-bz-height=<integer [0 .. 100]> 
                                 height of the overlapping area (in %)
          Select in percent the height of the blended zone (case of 2x2 wall)
      --panoramix-attenuate, --no-panoramix-attenuate 
                                 Attenuation
                                 (default enabled)
          Check this option if you want attenuate blended zone by this plug-in
          (if option is unchecked, attenuate is made by opengl)
      --panoramix-bz-begin=<integer [0 .. 100]> 
                                 Attenuation, begin (in %)
          Select in percent the Lagrange coefficient of the beginning blended
          zone
      --panoramix-bz-middle=<integer [0 .. 100]> 
                                 Attenuation, middle (in %)
          Select in percent the Lagrange coefficient of the middle of blended
          zone
      --panoramix-bz-end=<integer [0 .. 100]> 
                                 Attenuation, end (in %)
          Select in percent the Lagrange coefficient of the end of blended zone
      --panoramix-bz-middle-pos=<integer [1 .. 99]> 
                                 middle position (in %)
          Select in percent (50 is center) the position of the middle point
          (Lagrange) of blended zone
      --panoramix-bz-gamma-red=<float [0.000000 .. 5.000000]> 
                                 Gamma (Red) correction
          Select the gamma for the correction of blended zone (Red or Y
          component)
      --panoramix-bz-gamma-green=<float [0.000000 .. 5.000000]> 
                                 Gamma (Green) correction
          Select the gamma for the correction of blended zone (Green or U
          component)
      --panoramix-bz-gamma-blue=<float [0.000000 .. 5.000000]> 
                                 Gamma (Blue) correction
          Select the gamma for the correction of blended zone (Blue or V
          component)
      --panoramix-bz-blackcrush-red=<integer [0 .. 255]> 
                                 Black Crush for Red
          Select the Black Crush of blended zone (Red or Y component)
      --panoramix-bz-blackcrush-green=<integer [0 .. 255]> 
                                 Black Crush for Green
          Select the Black Crush of blended zone (Green or U component)
      --panoramix-bz-blackcrush-blue=<integer [0 .. 255]> 
                                 Black Crush for Blue
          Select the Black Crush of blended zone (Blue or V component)
      --panoramix-bz-whitecrush-red=<integer [0 .. 255]> 
                                 White Crush for Red
          Select the White Crush of blended zone (Red or Y component)
      --panoramix-bz-whitecrush-green=<integer [0 .. 255]> 
                                 White Crush for Green
          Select the White Crush of blended zone (Green or U component)
      --panoramix-bz-whitecrush-blue=<integer [0 .. 255]> 
                                 White Crush for Blue
          Select the White Crush of blended zone (Blue or V component)
      --panoramix-bz-blacklevel-red=<integer [0 .. 255]> 
                                 Black Level for Red
          Select the Black Level of blended zone (Red or Y component)
      --panoramix-bz-blacklevel-green=<integer [0 .. 255]> 
                                 Black Level for Green
          Select the Black Level of blended zone (Green or U component)
      --panoramix-bz-blacklevel-blue=<integer [0 .. 255]> 
                                 Black Level for Blue
          Select the Black Level of blended zone (Blue or V component)
      --panoramix-bz-whitelevel-red=<integer [0 .. 255]> 
                                 White Level for Red
          Select the White Level of blended zone (Red or Y component)
      --panoramix-bz-whitelevel-green=<integer [0 .. 255]> 
                                 White Level for Green
          Select the White Level of blended zone (Green or U component)
      --panoramix-bz-whitelevel-blue=<integer [0 .. 255]> 
                                 White Level for Blue
          Select the White Level of blended zone (Blue or V component)
      --panoramix-active=<string> 
                                 Active windows
          Comma-separated list of active windows, defaults to all

 Clone video filter (clone)
 Duplicate your video to multiple windows and/or video output modules
      --clone-count=<integer>    Number of clones
          Number of video windows in which to clone the video.
      --clone-vout-list=<string> Video output modules
          You can use specific video output modules for the clones. Use a
          comma-separated list of modules.

 YUV video output (yuv)
      --yuv-file=<string>        device, fifo or filename
          device, fifo or filename to write yuv frames too.
      --yuv-chroma=<string>      Chroma used
          Force use of a specific chroma for output.
      --yuv-yuv4mpeg2, --no-yuv-yuv4mpeg2 
                                 Add a YUV4MPEG2 header
                                 (default disabled)
          The YUV4MPEG2 header is compatible with mplayer yuv video output and
          requires YV12/I420 fourcc.

 WGL extension for OpenGL (wgl)
      --gpu-affinity=<integer>   GPU affinity
          GPU affinity

 Video memory output (vmem)
      --vmem-width=<integer>     Width
          Video memory buffer width.
      --vmem-height=<integer>    Height
          Video memory buffer height.
      --vmem-pitch=<integer>     Pitch
          Video memory buffer pitch in bytes.
      --vmem-chroma=<string>     Chroma
          Output chroma for the memory image as a 4-character string, eg.
          "RV32".

 Dummy video output (vdummy)
      --dummy-chroma=<string>    Dummy image chroma format
          Force the dummy video output to create images using a specific chroma
          format instead of trying to improve performances by using the most
          efficient one.

 OpenGL video output (gl)
      --gl={any,wgl,none}        OpenGL extension
          Extension through which to use the Open Graphics Library (OpenGL).
      --glconv={any,direct3d9,none} 
                                 Open GL/GLES hardware converter
          Force a "glconv" module.
   Colorspace conversion:
      --rendering-intent={0 (Perceptual), 1 (Relative colorimetric), 2 (Absolute colorimetric), 3 (Saturation)} 
                                 Rendering intent for color conversion
          The algorithm used to convert between color spaces
      --target-prim={0 (Unknown primaries), 1 (ITU-R Rec. BT.601 (525-line = NTSC, SMPTE-C)), 2 (ITU-R Rec. BT.601 (625-line = PAL, SECAM)), 3 (ITU-R Rec. BT.709 (HD), also sRGB), 4 (ITU-R Rec. BT.470 M), 5 (ITU-R Rec. BT.2020 (UltraHD)), 6 (Apple RGB), 7 (Adobe RGB (1998)), 8 (ProPhoto RGB (ROMM)), 9 (CIE 1931 RGB primaries), 10 (DCI-P3 (Digital Cinema)), 11 (Panasonic V-Gamut (VARICAM)), 12 (Sony S-Gamut)} 
                                 Display primaries
          The primaries associated with the output display
      --target-trc={0 (Unknown gamma), 1 (ITU-R Rec. BT.1886 (CRT emulation + OOTF)), 2 (IEC 61966-2-4 sRGB (CRT emulation)), 3 (Linear light content), 4 (Pure power gamma 1.8), 5 (Pure power gamma 2.2), 6 (Pure power gamma 2.8), 7 (ProPhoto RGB (ROMM)), 8 (ITU-R BT.2100 PQ (perceptual quantizer), aka SMPTE ST2048), 9 (ITU-R BT.2100 HLG (hybrid log-gamma), aka ARIB STD-B67), 10 (Panasonic V-Log (VARICAM)), 11 (Sony S-Log1), 12 (Sony S-Log2)} 
                                 Display gamma / transfer function
          The gamma/transfer function associated with the output display
   Tone mapping:
      --tone-mapping={3 (Hable (filmic mapping, recommended)), 1 (Mobius (linear + knee)), 2 (Reinhard (simple non-linear)), 4 (Gamma-Power law), 5 (Linear stretch (peak to peak)), 0 (Hard clip out-of-gamut)} 
                                 Tone-mapping algorithm
          Algorithm to use when converting from wide gamut to standard gamut,
          or from HDR to SDR
      --tone-mapping-param=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Tone-mapping parameter
          This parameter can be used to tune the tone-mapping curve. Specifics
          depend on the curve used.
      --tone-mapping-desat=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Tone-mapping desaturation coefficient
          How strongly to desaturate overbright colors towards white. 0.0
          disables this behavior.
      --tone-mapping-warn, --no-tone-mapping-warn 
                                 Highlight clipped pixels
                                 (default disabled)
          Debugging tool to indicate which pixels were clipped as part of the
          tone mapping process.
   Dithering:
      --dither-algo={-1 (Disabled), 0 (Blue noise), 3 (White noise), 1 (Bayer matrix (ordered dither))} 
                                 Dithering algorithm
          The algorithm to use when dithering to a lower bit depth (degrades
          performance on some platforms).
      --dither-depth=<integer [0 .. 16]> 
                                 Dither depth override (0 = framebuffer depth)
          Overrides the detected framebuffer depth. Useful to dither to lower
          bit depths than otherwise required.

 OpenGL video output for Windows (glwin32)
      --glconv={any,direct3d9,none} 
                                 Open GL/GLES hardware converter
          Force a "glconv" module.
   Colorspace conversion:
      --rendering-intent={0 (Perceptual), 1 (Relative colorimetric), 2 (Absolute colorimetric), 3 (Saturation)} 
                                 Rendering intent for color conversion
          The algorithm used to convert between color spaces
      --target-prim={0 (Unknown primaries), 1 (ITU-R Rec. BT.601 (525-line = NTSC, SMPTE-C)), 2 (ITU-R Rec. BT.601 (625-line = PAL, SECAM)), 3 (ITU-R Rec. BT.709 (HD), also sRGB), 4 (ITU-R Rec. BT.470 M), 5 (ITU-R Rec. BT.2020 (UltraHD)), 6 (Apple RGB), 7 (Adobe RGB (1998)), 8 (ProPhoto RGB (ROMM)), 9 (CIE 1931 RGB primaries), 10 (DCI-P3 (Digital Cinema)), 11 (Panasonic V-Gamut (VARICAM)), 12 (Sony S-Gamut)} 
                                 Display primaries
          The primaries associated with the output display
      --target-trc={0 (Unknown gamma), 1 (ITU-R Rec. BT.1886 (CRT emulation + OOTF)), 2 (IEC 61966-2-4 sRGB (CRT emulation)), 3 (Linear light content), 4 (Pure power gamma 1.8), 5 (Pure power gamma 2.2), 6 (Pure power gamma 2.8), 7 (ProPhoto RGB (ROMM)), 8 (ITU-R BT.2100 PQ (perceptual quantizer), aka SMPTE ST2048), 9 (ITU-R BT.2100 HLG (hybrid log-gamma), aka ARIB STD-B67), 10 (Panasonic V-Log (VARICAM)), 11 (Sony S-Log1), 12 (Sony S-Log2)} 
                                 Display gamma / transfer function
          The gamma/transfer function associated with the output display
   Tone mapping:
      --tone-mapping={3 (Hable (filmic mapping, recommended)), 1 (Mobius (linear + knee)), 2 (Reinhard (simple non-linear)), 4 (Gamma-Power law), 5 (Linear stretch (peak to peak)), 0 (Hard clip out-of-gamut)} 
                                 Tone-mapping algorithm
          Algorithm to use when converting from wide gamut to standard gamut,
          or from HDR to SDR
      --tone-mapping-param=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Tone-mapping parameter
          This parameter can be used to tune the tone-mapping curve. Specifics
          depend on the curve used.
      --tone-mapping-desat=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Tone-mapping desaturation coefficient
          How strongly to desaturate overbright colors towards white. 0.0
          disables this behavior.
      --tone-mapping-warn, --no-tone-mapping-warn 
                                 Highlight clipped pixels
                                 (default disabled)
          Debugging tool to indicate which pixels were clipped as part of the
          tone mapping process.
   Dithering:
      --dither-algo={-1 (Disabled), 0 (Blue noise), 3 (White noise), 1 (Bayer matrix (ordered dither))} 
                                 Dithering algorithm
          The algorithm to use when dithering to a lower bit depth (degrades
          performance on some platforms).
      --dither-depth=<integer [0 .. 16]> 
                                 Dither depth override (0 = framebuffer depth)
          Overrides the detected framebuffer depth. Useful to dither to lower
          bit depths than otherwise required.

 Flaschen-Taschen video output (flaschen)
      --flaschen-display=<string> 
                                 Flaschen-Taschen display address
          IP address or hostname of the Flaschen-Taschen display. Something
          like ft.noise or ftkleine.noise
      --flaschen-width=<integer> Width
          Video width
      --flaschen-height=<integer> 
                                 Height
          Video height

 Embedded window video (drawable)
      --drawable-hwnd=<integer>  Window handle (HWND)
          Video will be embedded in this pre-existing window. If zero, a new
          window will be created.

 DirectX (DirectDraw) video output (directdraw)
 Recommended video output for Windows XP. Incompatible with Vista's Aero interface
      --directx-hw-yuv, --no-directx-hw-yuv 
                                 Use hardware YUV->RGB conversions
                                 (default enabled)
          Try to use hardware acceleration for YUV->RGB conversions. This
          option doesn't have any effect when using overlays.
      --directx-overlay, --no-directx-overlay 
                                 Overlay video output
                                 (default enabled)
          Overlay is the hardware acceleration capability of your video card
          (ability to render video directly). VLC will try to use it by
          default.
      --directx-use-sysmem, --no-directx-use-sysmem 
                                 Use video buffers in system memory
                                 (default disabled)
          Create video buffers in system memory instead of video memory. This
          isn't recommended as usually using video memory allows benefiting
          from more hardware acceleration (like rescaling or YUV->RGB
          conversions). This option doesn't have any effect when using
          overlays.
      --directx-3buffering, --no-directx-3buffering 
                                 Use triple buffering for overlays
                                 (default enabled)
          Try to use triple buffering when using YUV overlays. That results in
          much better video quality (no flickering).
      --directx-device={,display,\\.\DISPLAY1} 
                                 Name of desired display device
          In a multiple monitor configuration, you can specify the Windows
          device name of the display that you want the video window to open on.
          For example, "\\.\DISPLAY1" or "\\.\DISPLAY2".

 Direct3D9 video output (direct3d9)
 Recommended video output for Windows Vista and later versions
      --direct3d9-hw-blending, --no-direct3d9-hw-blending 
                                 Use hardware blending support
                                 (default enabled)
          Try to use hardware acceleration for subtitle/OSD blending.
      --direct3d9-shader={Disabled,Invert,Grayscale,Convert601to709,GammaCorrection18,GammaCorrection22,GammaCorrectionBT709,WidenColorSpace,HLSL File} 
                                 Pixel Shader
          Choose a pixel shader to apply.
      --direct3d9-shader-file=<string> 
                                 Path to HLSL file
          Path to an HLSL file containing a single pixel shader.

 Direct3D11 video output (direct3d11)
 Recommended video output for Windows 8 and later versions
      --direct3d11-hw-blending, --no-direct3d11-hw-blending 
                                 Use hardware blending support
                                 (default enabled)
          Try to use hardware acceleration for subtitle/OSD blending.

 Video transformation filter (transform)
 Rotate or flip the video
      --transform-type={90,180,270,hflip,vflip,transpose,antitranspose} 
                                 Transform type
          Transform type

 Sharpen video filter (sharpen)
 Augment contrast between contours.
      --sharpen-sigma=<float [0.000000 .. 2.000000]> 
                                 Sharpen strength (0-2)
          Set the Sharpen strength, between 0 and 2. Defaults to 0.05.

 Sepia video filter (sepia)
 Gives video a warmer tone by applying sepia effect
      --sepia-intensity=<integer [0 .. 255]> 
                                 Sepia intensity
          Intensity of sepia effect

 Scene video filter (scene)
 Send your video to picture files
      --scene-format=<string>    Image format
          Format of the output images (png, jpeg, ...).
      --scene-width=<integer>    Image width
          You can enforce the image width. By default (-1) VLC will adapt to
          the video characteristics.
      --scene-height=<integer>   Image height
          You can enforce the image height. By default (-1) VLC will adapt to
          the video characteristics.
      --scene-prefix=<string>    Filename prefix
          Prefix of the output images filenames. Output filenames will have the
          "prefixNUMBER.format" form if replace is not true.
      --scene-path=<string>      Directory path prefix
          Directory path where images files should be saved. If not set, then
          images will be automatically saved in users homedir.
      --scene-replace, --no-scene-replace 
                                 Always write to the same file
                                 (default disabled)
          Always write to the same file instead of creating one file per image.
          In this case, the number is not appended to the filename.
      --scene-ratio=<integer [1 .. 2147483647]> 
                                 Recording ratio
          Ratio of images to record. 3 means that one image out of three is
          recorded.

 Rotate video filter (rotate)
      --rotate-angle=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Angle in degrees
          Angle in degrees (0 to 359)
      --rotate-use-motion, --no-rotate-use-motion 
                                 Use motion sensors
                                 (default disabled)
          Use HDAPS, AMS, APPLESMC or UNIMOTION motion sensors to rotate the
          video

 Puzzle interactive game video filter (puzzle)
      --puzzle-rows=<integer [2 .. 42]> 
                                 Number of puzzle rows
          Number of puzzle rows
      --puzzle-cols=<integer [2 .. 42]> 
                                 Number of puzzle columns
          Number of puzzle columns
      --puzzle-border=<integer [0 .. 40]> 
                                 Border
          Unshuffled Border width.
      --puzzle-preview, --no-puzzle-preview 
                                 Small preview
                                 (default disabled)
          Show small preview.
      --puzzle-preview-size=<integer [0 .. 100]> 
                                 Small preview size
          Show small preview size (percent of source).
      --puzzle-shape-size=<integer [0 .. 100]> 
                                 Piece edge shape size
          Size of the curve along the piece's edge
      --puzzle-auto-shuffle=<integer [0 .. 30000]> 
                                 Auto shuffle
          Auto shuffle delay during game
      --puzzle-auto-solve=<integer [0 .. 30000]> 
                                 Auto solve
          Auto solve delay during game
      --puzzle-rotation={0 (0), 1 (0/180), 2 (0/90/180/270), 3 (0/90/180/270/mirror)} 
                                 Rotation
          Rotation parameter: none;180;90-270;mirror
      --puzzle-mode={0 (jigsaw puzzle), 1 (sliding puzzle), 2 (swap puzzle), 3 (exchange puzzle)} 
                                 Game mode
          Select game mode variation from jigsaw puzzle to sliding puzzle.

 Video post processing filter (postproc)
      --postproc-q=<integer [0 .. 6]> 
                                 Post processing quality
          Quality of post processing. Valid range is 0 (disabled) to 6
          (highest) Higher levels require more CPU power, but produce higher
          quality pictures. With default filter chain, the values map to the
          following filters: 1: hb, 2-4: hb+vb, 5-6: hb+vb+dr
      --postproc-name=<string>   FFmpeg post processing filter chains
          FFmpeg post processing filter chains

 Posterize video filter (posterize)
 Posterize video by lowering the number of colors
      --posterize-level=<integer [2 .. 256]> 
                                 Posterize level
          Posterize level (number of colors is cube of this value)

 Motion blur filter (motionblur)
      --blur-factor=<integer [1 .. 127]> 
                                 Blur factor (1-127)
          The degree of blurring from 1 to 127.

 Mirror video filter (mirror)
 Splits video in two same parts, like in a mirror
      --mirror-split={0 (Vertical), 1 (Horizontal)} 
                                 Mirror orientation
          Defines orientation of the mirror splitting. Can be vertical or
          horizontal.
      --mirror-direction={0 (Left to right/Top to bottom), 1 (Right to left/Bottom to top)} 
                                 Direction
          Direction of the mirroring.

 High Quality 3D Denoiser filter (hqdn3d)
      --hqdn3d-luma-spat=<float [0.000000 .. 254.000000]> 
                                 Spatial luma strength (0-254)
          Spatial luma strength (0-254)
      --hqdn3d-chroma-spat=<float [0.000000 .. 254.000000]> 
                                 Spatial chroma strength (0-254)
          Spatial chroma strength (0-254)
      --hqdn3d-luma-temp=<float [0.000000 .. 254.000000]> 
                                 Temporal luma strength (0-254)
          Temporal luma strength (0-254)
      --hqdn3d-chroma-temp=<float [0.000000 .. 254.000000]> 
                                 Temporal chroma strength (0-254)
          Temporal chroma strength (0-254)

 Grain video filter (grain)
 Adds filtered gaussian noise
      --grain-variance=<float [0.000000 .. 10.000000]> 
                                 Variance
          Variance of the gaussian noise
      --grain-period-min=<integer [1 .. 64]> 
                                 Minimal period
          Minimal period of the noise grain in pixel
      --grain-period-max=<integer [1 .. 64]> 
                                 Maximal period
          Maximal period of the noise grain in pixel

 Gradient video filter (gradient)
 Apply color gradient or edge detection effects
      --gradient-mode={gradient,edge,hough} 
                                 Distort mode
          Distort mode, one of "gradient", "edge" and "hough".
      --gradient-type=<integer [0 .. 1]> 
                                 Gradient image type
          Gradient image type (0 or 1). 0 will turn the image to white while 1
          will keep colors.
      --gradient-cartoon, --no-gradient-cartoon 
                                 Apply cartoon effect
                                 (default enabled)
          Apply cartoon effect. It is only used by "gradient" and "edge".

 Gradfun video filter (gradfun)
 Debanding algorithm
      --gradfun-radius=<integer [4 .. 32]> 
                                 Radius
          Radius in pixels
      --gradfun-strength=<float [0.510000 .. 255.000000]> 
                                 Strength
          Strength used to modify the value of a pixel

 Gaussian blur video filter (gaussianblur)
 Add a blurring effect
      --gaussianblur-sigma=<float [0.010000 .. 4096.000000]> 
                                 Gaussian's std deviation
          Gaussian's standard deviation. The blurring will take into account
          pixels up to 3*sigma away in any direction.

 FPS conversion video filter (fps)
      --fps-fps=<string>         Frame rate
          Frame rate

 Extract RGB component video filter (extract)
      --extract-component={16711680 (Red), 65280 (Green), 255 (Blue)} 
                                 RGB component to extract
          RGB component to extract. 0 for Red, 1 for Green and 2 for Blue.

 Erase video filter (erase)
 Remove zones of the video using a picture as mask
      --erase-mask=<string>      Image mask
          Image mask. Pixels with an alpha value greater than 50% will be
          erased.
      --erase-x=<integer>        X coordinate
          X coordinate of the mask.
      --erase-y=<integer>        Y coordinate
          Y coordinate of the mask.

 Deinterlacing video filter (deinterlace)
      --sout-deinterlace-mode={discard,blend,mean,bob,linear,x,yadif,yadif2x,phosphor,ivtc} 
                                 Streaming deinterlace mode
          Deinterlace method to use for streaming.
      --sout-deinterlace-phosphor-chroma={1 (Latest), 2 (AltLine), 3 (Blend), 4 (Upconvert)} 
                                 Phosphor chroma mode for 4:2:0 input
          Choose handling for colours in those output frames that fall across
          input frame boundaries.   Latest: take chroma from new (bright) field
          only. Good for interlaced input, such as videos from a camcorder.  
          AltLine: take chroma line 1 from top field, line 2 from bottom field,
          etc.  Default, good for NTSC telecined input (anime DVDs, etc.).  
          Blend: average input field chromas. May distort the colours of the
          new (bright) field, too.   Upconvert: output in 4:2:2 format
          (independent chroma for each field). Best simulation, but requires
          more CPU and memory bandwidth.
      --sout-deinterlace-phosphor-dimmer={1 (Off), 2 (Low), 3 (Medium), 4 (High)} 
                                 Phosphor old field dimmer strength
          This controls the strength of the darkening filter that simulates CRT
          TV phosphor light decay for the old field in the Phosphor framerate
          doubler. Default: Low.

 Video cropping filter (croppadd)
   Crop:
      --croppadd-croptop=<integer [0 .. 2147483647]> 
                                 Pixels to crop from top
          Number of pixels to crop from the top of the image.
      --croppadd-cropbottom=<integer [0 .. 2147483647]> 
                                 Pixels to crop from bottom
          Number of pixels to crop from the bottom of the image.
      --croppadd-cropleft=<integer [0 .. 2147483647]> 
                                 Pixels to crop from left
          Number of pixels to crop from the left of the image.
      --croppadd-cropright=<integer [0 .. 2147483647]> 
                                 Pixels to crop from right
          Number of pixels to crop from the right of the image.
   Padd:
      --croppadd-paddtop=<integer [0 .. 2147483647]> 
                                 Pixels to padd to top
          Number of pixels to padd to the top of the image after cropping.
      --croppadd-paddbottom=<integer [0 .. 2147483647]> 
                                 Pixels to padd to bottom
          Number of pixels to padd to the bottom of the image after cropping.
      --croppadd-paddleft=<integer [0 .. 2147483647]> 
                                 Pixels to padd to left
          Number of pixels to padd to the left of the image after cropping.
      --croppadd-paddright=<integer [0 .. 2147483647]> 
                                 Pixels to padd to right
          Number of pixels to padd to the right of the image after cropping.

 Color threshold filter (colorthres)
 Select one color in the video
      --colorthres-color={16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 65280 (Lime), 255 (Blue), 65535 (Aqua)} 
                                 Color
          Colors similar to this will be kept, others will be grayscaled. This
          must be an hexadecimal (like HTML colors). The first two chars are
          for red, then green, then blue. #000000 = black, #FF0000 = red,
          #00FF00 = green, #FFFF00 = yellow (red + green), #FFFFFF = white
      --colorthres-saturationthres=<integer> 
                                 Saturation threshold
      --colorthres-similaritythres=<integer> 
                                 Similarity threshold

 Canvas video filter (canvas)
 Automatically resize and pad a video
      --canvas-width=<integer [0 .. 2147483647]> 
                                 Output width
          Output (canvas) image width
      --canvas-height=<integer [0 .. 2147483647]> 
                                 Output height
          Output (canvas) image height
      --canvas-aspect=<string>   Output picture aspect ratio
          Set the canvas' picture aspect ratio. If omitted, the canvas is
          assumed to have the same SAR as the input.
      --canvas-padd, --no-canvas-padd 
                                 Pad video
                                 (default enabled)
          If enabled, video will be padded to fit in canvas after scaling.
          Otherwise, video will be cropped to fix in canvas after scaling.

 Bluescreen video filter (bluescreen)
 This effect, also known as "greenscreen" or "chroma key" blends the "blue parts" of the foreground image of the mosaic on the background (like weather forecasts). You can choose the "key" color for blending (blue by default).
      --bluescreen-u=<integer [0 .. 255]> 
                                 Bluescreen U value
          "U" value for the bluescreen key color (in YUV values). From 0 to
          255. Defaults to 120 for blue.
      --bluescreen-v=<integer [0 .. 255]> 
                                 Bluescreen V value
          "V" value for the bluescreen key color (in YUV values). From 0 to
          255. Defaults to 90 for blue.
      --bluescreen-ut=<integer [0 .. 255]> 
                                 Bluescreen U tolerance
          Tolerance of the bluescreen blender on color variations for the U
          plane. A value between 10 and 20 seems sensible.
      --bluescreen-vt=<integer [0 .. 255]> 
                                 Bluescreen V tolerance
          Tolerance of the bluescreen blender on color variations for the V
          plane. A value between 10 and 20 seems sensible.

 Blending benchmark filter (blendbench)
   Benchmarking:
      --blendbench-loops=<integer> 
                                 Number of time to blend
          The number of time the blend will be performed
      --blendbench-alpha=<integer [0 .. 255]> 
                                 Alpha of the blended image
          Alpha with which the blend image is blended
   Base image:
      --blendbench-base-image=<string> 
                                 Image to be blended onto
          The image which will be used to blend onto
      --blendbench-base-chroma=<string> 
                                 Chroma for the base image
          Chroma which the base image will be loaded in
   Blend image:
      --blendbench-blend-image=<string> 
                                 Image which will be blended
          The image blended onto the base image
      --blendbench-blend-chroma=<string> 
                                 Chroma for the blend image
          Chroma which the blend image will be loaded in

 Ball video filter (ball)
 Augmented reality ball game
      --ball-color={red,green,blue,white} 
                                 Ball color
          Ball color
      --ball-speed=<integer [1 .. 15]> 
                                 Ball speed
          Set ball speed, the displacement value                               
           in number of pixels by frame.
      --ball-size=<integer [5 .. 30]> 
                                 Ball size
          Set ball size giving its radius in number                            
              of pixels
      --ball-gradient-threshold=<integer [1 .. 200]> 
                                 Gradient threshold
          Set gradient threshold for edge computation.
      --ball-edge-visible, --no-ball-edge-visible 
                                 Edge visible
                                 (default enabled)
          Set edge visibility.

 Antiflicker video filter (antiflicker)
      --antiflicker-window-size=<integer [0 .. 100]> 
                                 Window size
          Number of frames (0 to 100)
      --antiflicker-softening-size=<integer [0 .. 31]> 
                                 Softening value
          Number of frames consider for smoothening (0 to 30)

 Convert 3D picture to anaglyph image video filter (anaglyph)
      --anaglyph-scheme={red-green,red-blue,red-cyan,trioscopic,magenta-cyan} 
                                 Color scheme
          Define the glasses' color scheme

 Alpha mask video filter (alphamask)
 Use an image's alpha channel as a transparency mask.
      --alphamask-mask=<string>  Transparency mask
          Alpha blending transparency mask. Uses a png alpha channel.

 Image properties filter (adjust)
      --contrast=<float [0.000000 .. 2.000000]> 
                                 Image contrast (0-2)
          Set the image contrast, between 0 and 2. Defaults to 1.
      --brightness=<float [0.000000 .. 2.000000]> 
                                 Image brightness (0-2)
          Set the image brightness, between 0 and 2. Defaults to 1.
      --hue=<float [-180.000000 .. 180.000000]> 
                                 Image hue (-180..180)
          Set the image hue, between -180 and 180. Defaults to 0.
      --saturation=<float [0.000000 .. 3.000000]> 
                                 Image saturation (0-3)
          Set the image saturation, between 0 and 3. Defaults to 1.
      --gamma=<float [0.010000 .. 10.000000]> 
                                 Image gamma (0-10)
          Set the image gamma, between 0.01 and 10. Defaults to 1.
      --brightness-threshold, --no-brightness-threshold 
                                 Brightness threshold
                                 (default disabled)
          When this mode is enabled, pixels will be shown as black or white.
          The threshold value will be the brightness defined below.

 Video scaling filter (swscale)
      --swscale-mode={0 (Fast bilinear), 1 (Bilinear), 2 (Bicubic (good quality)), 3 (Experimental), 4 (Nearest neighbour (bad quality)), 5 (Area), 6 (Luma bicubic / chroma bilinear), 7 (Gauss), 8 (SincR), 9 (Lanczos), 10 (Bicubic spline)} 
                                 Scaling mode
          Scaling mode to use.

 Speech synthesis for Windows (sapi)
      --sapi-voice=<integer>     Voice Index
          Voice index

 Freetype2 font renderer (freetype)
      --freetype-font=<string>   Font
          Font family for the font you want to use
      --freetype-monofont=<string> 
                                 Monospace Font
          Font family for the font you want to use
      --freetype-opacity=<integer [0 .. 255]> 
                                 Text opacity
          The opacity (inverse of transparency) of the text that will be
          rendered on the video. 0 = transparent, 255 = totally opaque.
      --freetype-color={0 (Black), 8421504 (Gray), 12632256 (Silver), 16777215 (White), 8388608 (Maroon), 16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 8421376 (Olive), 32768 (Green), 32896 (Teal), 65280 (Lime), 8388736 (Purple), 128 (Navy), 255 (Blue), 65535 (Aqua)} 
                                 Text default color
          The color of the text that will be rendered on the video. This must
          be an hexadecimal (like HTML colors). The first two chars are for
          red, then green, then blue. #000000 = black, #FF0000 = red, #00FF00 =
          green, #FFFF00 = yellow (red + green), #FFFFFF = white
      --freetype-bold, --no-freetype-bold 
                                 Force bold
                                 (default disabled)
      --freetype-background-opacity=<integer [0 .. 255]> 
                                 Background opacity
      --freetype-background-color={0 (Black), 8421504 (Gray), 12632256 (Silver), 16777215 (White), 8388608 (Maroon), 16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 8421376 (Olive), 32768 (Green), 32896 (Teal), 65280 (Lime), 8388736 (Purple), 128 (Navy), 255 (Blue), 65535 (Aqua)} 
                                 Background color
      --freetype-outline-opacity=<integer [0 .. 255]> 
                                 Outline opacity
      --freetype-outline-color={0 (Black), 8421504 (Gray), 12632256 (Silver), 16777215 (White), 8388608 (Maroon), 16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 8421376 (Olive), 32768 (Green), 32896 (Teal), 65280 (Lime), 8388736 (Purple), 128 (Navy), 255 (Blue), 65535 (Aqua)} 
                                 Outline color
      --freetype-outline-thickness={0 (None), 2 (Thin), 4 (Normal), 6 (Thick)} 
                                 Outline thickness
      --freetype-shadow-opacity=<integer [0 .. 255]> 
                                 Shadow opacity
      --freetype-shadow-color={0 (Black), 8421504 (Gray), 12632256 (Silver), 16777215 (White), 8388608 (Maroon), 16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 8421376 (Olive), 32768 (Green), 32896 (Teal), 65280 (Lime), 8388736 (Purple), 128 (Navy), 255 (Blue), 65535 (Aqua)} 
                                 Shadow color
      --freetype-shadow-angle=<float [-360.000000 .. 360.000000]> 
                                 Shadow angle
      --freetype-shadow-distance=<float [0.000000 .. 1.000000]> 
                                 Shadow distance
      --freetype-yuvp, --no-freetype-yuvp 
                                 Use YUVP renderer
                                 (default disabled)
          This renders the font using "paletized YUV". This option is only
          needed if you want to encode into DVB subtitles
      --freetype-text-direction={0 (Left to right), 1 (Right to left), 2 (Auto)} 
                                 Text direction
          Paragraph base direction for the Unicode bi-directional algorithm.

 Transcode stream output (stream_out_transcode)
   Video:
      --sout-transcode-venc={any,jpeg,png,x264,x265,opus,g711,araw,theora,vorbis,twolame,schroedinger,substx3g,webvtt,speex,flac,t140,avcodec,lpcm,dvbsub,vpx,rtpvideo,dmo,edummy,stats,qsv,none} 
                                 Video encoder
          This is the video encoder module that will be used (and its
          associated options).
      --sout-transcode-vcodec=<string> 
                                 Destination video codec
          This is the video codec that will be used.
      --sout-transcode-vb=<integer> 
                                 Video bitrate
          Target bitrate of the transcoded video stream.
      --sout-transcode-scale=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Video scaling
          Scale factor to apply to the video while transcoding (eg: 0.25)
      --sout-transcode-fps=<string> 
                                 Video frame-rate
          Target output frame rate for the video stream.
      --sout-transcode-deinterlace, --no-sout-transcode-deinterlace 
                                 Deinterlace video
                                 (default disabled)
          Deinterlace the video before encoding.
      --sout-transcode-deinterlace-module={deinterlace,ffmpeg-deinterlace} 
                                 Deinterlace module
          Specify the deinterlace module to use.
      --sout-transcode-width=<integer> 
                                 Video width
          Output video width.
      --sout-transcode-height=<integer> 
                                 Video height
          Output video height.
      --sout-transcode-maxwidth=<integer> 
                                 Maximum video width
          Maximum output video width.
      --sout-transcode-maxheight=<integer> 
                                 Maximum video height
          Maximum output video height.
      --sout-transcode-vfilter=<string> 
                                 Video filter
          Video filters will be applied to the video streams (after overlays
          are applied). You can enter a colon-separated list of filters.
   Audio:
      --sout-transcode-aenc={any,jpeg,png,x264,x265,opus,g711,araw,theora,vorbis,twolame,schroedinger,substx3g,webvtt,speex,flac,t140,avcodec,lpcm,dvbsub,vpx,rtpvideo,dmo,edummy,stats,qsv,none} 
                                 Audio encoder
          This is the audio encoder module that will be used (and its
          associated options).
      --sout-transcode-acodec=<string> 
                                 Destination audio codec
          This is the audio codec that will be used.
      --sout-transcode-ab=<integer> 
                                 Audio bitrate
          Target bitrate of the transcoded audio stream.
      --sout-transcode-alang=<string> 
                                 Audio language
          This is the language of the audio stream.
      --sout-transcode-channels=<integer [0 .. 9]> 
                                 Audio channels
          Number of audio channels in the transcoded streams.
      --sout-transcode-samplerate=<integer [0 .. 48000]> 
                                 Audio sample rate
          Sample rate of the transcoded audio stream (11250, 22500, 44100 or
          48000).
      --sout-transcode-afilter=<string> 
                                 Audio filter
          Audio filters will be applied to the audio streams (after conversion
          filters are applied). You can enter a colon-separated list of
          filters.
   Overlays/Subtitles:
      --sout-transcode-senc={any,jpeg,png,x264,x265,opus,g711,araw,theora,vorbis,twolame,schroedinger,substx3g,webvtt,speex,flac,t140,avcodec,lpcm,dvbsub,vpx,rtpvideo,dmo,edummy,stats,qsv,none} 
                                 Subtitle encoder
          This is the subtitle encoder module that will be used (and its
          associated options).
      --sout-transcode-scodec=<string> 
                                 Destination subtitle codec
          This is the subtitle codec that will be used.
      --sout-transcode-soverlay, --no-sout-transcode-soverlay 
                                 Destination subtitle codec
                                 (default disabled)
          This is the subtitle codec that will be used.
      --sout-transcode-sfilter=<string> 
                                 Overlays
          This allows you to add overlays (also known as "subpictures") on the
          transcoded video stream. The subpictures produced by the filters will
          be overlayed directly onto the video. You can specify a
          colon-separated list of subpicture modules.
   Miscellaneous:
      --sout-transcode-threads=<integer> 
                                 Number of threads
          Number of threads used for the transcoding.
      --sout-transcode-pool-size=<integer [1 .. 1000]> 
                                 Picture pool size
          Defines how many pictures we allow to be in pool between
          decoder/encoder threads when threads > 0
      --sout-transcode-high-priority, --no-sout-transcode-high-priority 
                                 High priority
                                 (default disabled)
          Runs the optional encoder thread at the OUTPUT priority instead of
          VIDEO.

 Writes statistic info about stream (stats)
      --sout-stats-output=<string> 
                                 Output file
          Writes stats to file instead of stdout
      --sout-stats-prefix=<string> 
                                 Prefix to show on output line
          Prefix to show on output line

 Standard stream output (stream_out_standard)
      --sout-standard-access=<string> 
                                 Output access method
          Output method to use for the stream.
      --sout-standard-mux=<string> 
                                 Output muxer
          Muxer to use for the stream.
      --sout-standard-dst=<string> 
                                 Output destination
          Destination (URL) to use for the stream. Overrides path and bind
          parameters
      --sout-standard-bind=<string> 
                                 Address to bind to (helper setting for dst)
          address:port to bind vlc to listening incoming streams. Helper
          setting for dst, dst=bind+'/'+path. dst-parameter overrides this.
      --sout-standard-path=<string> 
                                 Filename for stream (helper setting for dst)
          Filename for stream. Helper setting for dst, dst=bind+'/'+path.
          dst-parameter overrides this.
      --sout-standard-sap, --no-sout-standard-sap 
                                 SAP announcing
                                 (default disabled)
          Announce this session with SAP.
      --sout-standard-name=<string> 
                                 Session name
          This is the name of the session that will be announced in the SDP
          (Session Descriptor).
      --sout-standard-description=<string> 
                                 Session description
          This allows you to give a short description with details about the
          stream, that will be announced in the SDP (Session Descriptor).
      --sout-standard-url=<string> 
                                 Session URL
          This allows you to give a URL with more details about the stream
          (often the website of the streaming organization), that will be
          announced in the SDP (Session Descriptor).
      --sout-standard-email=<string> 
                                 Session email
          This allows you to give a contact mail address for the stream, that
          will be announced in the SDP (Session Descriptor).

 Stream output to memory buffer (smem)
      --sout-smem-video-prerender-callback=<string> 
                                 Video prerender callback
          Address of the video prerender callback function. This function will
          set the buffer where render will be done.
      --sout-smem-audio-prerender-callback=<string> 
                                 Audio prerender callback
          Address of the audio prerender callback function. This function will
          set the buffer where render will be done.
      --sout-smem-video-postrender-callback=<string> 
                                 Video postrender callback
          Address of the video postrender callback function. This function will
          be called when the render is into the buffer.
      --sout-smem-audio-postrender-callback=<string> 
                                 Audio postrender callback
          Address of the audio postrender callback function. This function will
          be called when the render is into the buffer.
      --sout-smem-video-data=<string> 
                                 Video Callback data
          Data for the video callback function.
      --sout-smem-audio-data=<string> 
                                 Audio callback data
          Data for the video callback function.
      --sout-smem-time-sync, --no-sout-smem-time-sync 
                                 Time Synchronized output
                                 (default enabled)
          Time Synchronisation option for output. If true, stream will render
          as usual, else it will be rendered as fast as possible.

 Change the id of an elementary stream (setid)
   Set ES id:
      --sout-setid-id=<integer>  Elementary Stream ID
          Specify an identifier integer for this elementary stream
      --sout-setid-new-id=<integer> 
                                 New ES ID
          Specify an new identifier integer for this elementary stream
   Set ES Lang:
      --sout-setlang-id=<integer> 
                                 Elementary Stream ID
          Specify an identifier integer for this elementary stream
      --sout-setlang-lang=<string> 
                                 Language
          Specify an ISO-639 code (three characters) for this elementary stream

 RTP stream output (stream_out_rtp)
      --sout-rtp-dst=<string>    Destination
          This is the output URL that will be used.
      --sout-rtp-sdp=<string>    SDP
          This allows you to specify how the SDP (Session Descriptor) for this
          RTP session will be made available. You must use a url:
          http://location to access the SDP via HTTP, rtsp://location for RTSP
          access, and sap:// for the SDP to be announced via SAP.
      --sout-rtp-mux=<string>    Muxer
          This allows you to specify the muxer used for the streaming output.
          Default is to use no muxer (standard RTP stream).
      --sout-rtp-sap, --no-sout-rtp-sap 
                                 SAP announcing
                                 (default disabled)
          Announce this session with SAP.
      --sout-rtp-name=<string>   Session name
          This is the name of the session that will be announced in the SDP
          (Session Descriptor).
      --sout-rtp-cat=<string>    Session category
          This allows you to specify a category for the session, that will be
          announced if you choose to use SAP.
      --sout-rtp-description=<string> 
                                 Session description
          This allows you to give a short description with details about the
          stream, that will be announced in the SDP (Session Descriptor).
      --sout-rtp-url=<string>    Session URL
          This allows you to give a URL with more details about the stream
          (often the website of the streaming organization), that will be
          announced in the SDP (Session Descriptor).
      --sout-rtp-email=<string>  Session email
          This allows you to give a contact mail address for the stream, that
          will be announced in the SDP (Session Descriptor).
      --sout-rtp-proto={dccp,sctp,tcp,udp,udplite} 
                                 Transport protocol
          This selects which transport protocol to use for RTP.
      --sout-rtp-port=<integer>  Port
          This allows you to specify the base port for the RTP streaming.
      --sout-rtp-port-audio=<integer> 
                                 Audio port
          This allows you to specify the default audio port for the RTP
          streaming.
      --sout-rtp-port-video=<integer> 
                                 Video port
          This allows you to specify the default video port for the RTP
          streaming.
      --sout-rtp-ttl=<integer>   Hop limit (TTL)
          This is the hop limit (also known as "Time-To-Live" or TTL) of the
          multicast packets sent by the stream output (-1 = use operating
          system built-in default).
      --sout-rtp-rtcp-mux, --no-sout-rtp-rtcp-mux 
                                 RTP/RTCP multiplexing
                                 (default disabled)
          This sends and receives RTCP packet multiplexed over the same port as
          RTP packets.
      --sout-rtp-caching=<integer> 
                                 Caching value (ms)
          Default caching value for outbound RTP streams. This value should be
          set in milliseconds.
      --sout-rtp-key=<string>    SRTP key (hexadecimal)
          RTP packets will be integrity-protected and ciphered with this Secure
          RTP master shared secret key. This must be a 32-character-long
          hexadecimal string.
      --sout-rtp-salt=<string>   SRTP salt (hexadecimal)
          Secure RTP requires a (non-secret) master salt value. This must be a
          28-character-long hexadecimal string.
      --sout-rtp-mp4a-latm, --no-sout-rtp-mp4a-latm 
                                 MP4A LATM
                                 (default disabled)
          This allows you to stream MPEG4 LATM audio streams (see RFC3016).
      --rtsp-timeout=<integer>   RTSP session timeout (s)
          RTSP sessions will be closed after not receiving any RTSP request for
          this long. Setting it to a negative value or zero disables timeouts.
          The default is 60 (one minute).
      --sout-rtsp-user=<string>  Username
          Username that will be requested to access the stream.
      --sout-rtsp-pwd=<string>   Password
          Password that will be requested to access the stream.

 Record stream output (record)
      --sout-record-dst-prefix=<string> 
                                 Destination prefix
          Prefix of the destination file automatically generated

 Mosaic bridge stream output (mosaic_bridge)
      --sout-mosaic-bridge-id=<string> 
                                 ID
          Specify an identifier string for this subpicture
      --sout-mosaic-bridge-width=<integer> 
                                 Video width
          Output video width.
      --sout-mosaic-bridge-height=<integer> 
                                 Video height
          Output video height.
      --sout-mosaic-bridge-sar=<string> 
                                 Sample aspect ratio
          Sample aspect ratio of the destination (1:1, 3:4, 2:3).
      --sout-mosaic-bridge-chroma=<string> 
                                 Image chroma
          Force the use of a specific chroma. Use YUVA if you're planning to
          use the Alphamask or Bluescreen video filter.
      --sout-mosaic-bridge-vfilter=<string> 
                                 Video filter
          Video filters will be applied to the video stream.
      --sout-mosaic-bridge-alpha=<integer [0 .. 255]> 
                                 Transparency
          Transparency of the mosaic picture.
      --sout-mosaic-bridge-x=<integer> 
                                 X offset
          X coordinate of the upper left corner in the mosaic if non negative.
      --sout-mosaic-bridge-y=<integer> 
                                 Y offset
          Y coordinate of the upper left corner in the mosaic if non negative.

 Elementary stream output (es)
   Generic:
      --sout-es-access=<string>  Output access method
          This is the default output access method that will be used.
      --sout-es-mux=<string>     Output muxer
          This is the default muxer method that will be used.
      --sout-es-dst=<string>     Output URL
          This is the default output URI.
   Audio:
      --sout-es-access-audio=<string> 
                                 Audio output access method
          This is the output access method that will be used for audio.
      --sout-es-mux-audio=<string> 
                                 Audio output muxer
          This is the muxer that will be used for audio.
      --sout-es-dst-audio=<string> 
                                 Audio output URL
          This is the output URI that will be used for audio.
   Video:
      --sout-es-access-video=<string> 
                                 Video output access method
          This is the output access method that will be used for video.
      --sout-es-mux-video=<string> 
                                 Video output muxer
          This is the muxer that will be used for video.
      --sout-es-dst-video=<string> 
                                 Video output URL
          This is the output URI that will be used for video.

 Display stream output (display)
      --sout-display-audio, --no-sout-display-audio 
                                 Enable audio
                                 (default enabled)
          Enable/disable audio rendering.
      --sout-display-video, --no-sout-display-video 
                                 Enable video
                                 (default enabled)
          Enable/disable video rendering.
      --sout-display-delay=<integer> 
                                 Delay (ms)
          Introduces a delay in the display of the stream.

 Delay a stream (delay)
      --sout-delay-id=<integer>  Elementary Stream ID
          Specify an identifier integer for this elementary stream
      --sout-delay-delay=<integer> 
                                 Delay of the ES (ms)
          Specify a delay (in ms) for this elementary stream. Positive means
          delay and negative means advance.

 Chromecast stream output (stream_out_chromecast)
      --sout-chromecast-ip=<string> 
                                 
      --sout-chromecast-port=<integer> 
                                 
      --sout-chromecast-video, --no-sout-chromecast-video 
                                 
                                 (default enabled)
      --sout-chromecast-http-port=<integer> 
                                 HTTP port
          This sets the HTTP port of the local server used to stream the media
          to the Chromecast.
      --sout-chromecast-show-perf-warning=<integer> 
                                 Performance warning
          Display a performance warning when transcoding
      --sout-chromecast-audio-passthrough, --no-sout-chromecast-audio-passthrough 
                                 Enable Audio passthrough
                                 (default disabled)
          Disable if your receiver does not support Dolby®.
      --sout-chromecast-conversion-quality={0 (High (high quality and high bandwidth)), 1 (Medium (medium quality and medium bandwidth)), 2 (Low (low quality and low bandwidth)), 3 (Low CPU (low quality but high bandwidth))} 
                                 Conversion quality
          Change this option to increase conversion speed or quality.

 Chromaprint stream output (stream_out_chromaprint)
      --duration=<integer>       Duration of the fingerprinting
          Default: 90sec

 Bridge stream output (bridge)
   Bridge out:
      --sout-bridge-out-id=<integer> 
                                 ID
          Integer identifier for this elementary stream. This will be used to
          "find" this stream later.
      --sout-bridge-out-in-name=<string> 
                                 Destination bridge-in name
          Name of the destination bridge-in. If you do not need more than one
          bridge-in at a time, you can discard this option.
   Bridge in:
      --sout-bridge-in-delay=<integer> 
                                 Delay
          Pictures coming from the picture video outputs will be delayed
          according to this value (in milliseconds, should be >= 100 ms). For
          high values, you will need to raise caching values.
      --sout-bridge-in-id-offset=<integer> 
                                 ID Offset
          Offset to add to the stream IDs specified in bridge_out to obtain the
          stream IDs bridge_in will register.
      --sout-bridge-in-name=<string> 
                                 Name of current instance
          Name of this bridge-in instance. If you do not need more than one
          bridge-in at a time, you can discard this option.
      --sout-bridge-in-placeholder, --no-sout-bridge-in-placeholder 
                                 Fallback to placeholder stream when out of
                                 data
                                 (default disabled)
          If set to true, the bridge will discard all input elementary streams
          except if it doesn't receive data from another bridge-in. This can be
          used to configure a place holder stream when the real source breaks.
          Source and placeholder streams should have the same format.
      --sout-bridge-in-placeholder-delay=<integer> 
                                 Placeholder delay
          Delay (in ms) before the placeholder kicks in.
      --sout-bridge-in-placeholder-switch-on-iframe, --no-sout-bridge-in-placeholder-switch-on-iframe 
                                 Wait for I frame before toggling placeholder
                                 (default enabled)
          If enabled, switching between the placeholder and the normal stream
          will only occur on I frames. This will remove artifacts on stream
          switching at the expense of a slightly longer delay, depending on the
          frequence of I frames in the streams.

 Stream prefetch filter (prefetch)
      --prefetch-buffer-size=<integer [4 .. 1048576]> 
                                 Buffer size
          Prefetch buffer size (KiB)
      --prefetch-read-size=<integer [1 .. 536870912]> 
                                 Read size
          Prefetch background read size (bytes)
      --prefetch-seek-threshold=<integer [0 .. 1152921504606846976]> 
                                 Seek threshold
          Prefetch forward seek threshold (bytes)

 Subtitle delay (subsdelay)
 Change subtitle delay
      --subsdelay-mode={0 (Absolute delay), 1 (Relative to source delay), 2 (Relative to source content)} 
                                 Delay calculation mode
          Absolute delay - add absolute delay to each subtitle. Relative to
          source delay - multiply subtitle delay. Relative to source content -
          determine subtitle delay from its content (text).
      --subsdelay-factor=<float [0.000000 .. 20.000000]> 
                                 Calculation factor
          Calculation factor. In Absolute delay mode the factor represents
          seconds.
      --subsdelay-overlap=<integer [1 .. 4]> 
                                 Maximum overlapping subtitles
          Maximum number of subtitles allowed at the same time.
      --subsdelay-min-alpha=<integer [0 .. 255]> 
                                 Minimum alpha value
          Alpha value of the earliest subtitle, where 0 is fully transparent
          and 255 is fully opaque.
   Overlap fix:
      --subsdelay-min-stops=<integer> 
                                 Interval between two disappearances
          Minimum time (in milliseconds) that subtitle should stay after its
          predecessor has disappeared (subtitle delay will be extended to meet
          this requirement).
      --subsdelay-min-start-stop=<integer> 
                                 Interval between appearance and disappearance
          Minimum time (in milliseconds) that subtitle should stay after newer
          subtitle has appeared (earlier subtitle delay will be shortened to
          avoid the overlap).
      --subsdelay-min-stop-start=<integer> 
                                 Interval between disappearance and appearance
          Minimum time (in milliseconds) between subtitle disappearance and
          newer subtitle appearance (earlier subtitle delay will be extended to
          fill the gap).

 RSS and Atom feed display (rss)
 Display a RSS or ATOM Feed on your video
      --rss-urls=<string>        Feed URLs
          RSS/Atom feed '|' (pipe) separated URLs.
   Position:
      --rss-x=<integer>          X offset
          X offset, from the left screen edge.
      --rss-y=<integer>          Y offset
          Y offset, down from the top.
      --rss-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)} 
                                 Text position
          You can enforce the text position on the video (0=center, 1=left,
          2=right, 4=top, 8=bottom; you can also use combinations of these
          values, eg 6 = top-right).
   Font:
      --rss-opacity=<integer [0 .. 255]> 
                                 Opacity
          Opacity (inverse of transparency) of overlay text. 0 = transparent,
          255 = totally opaque.
      --rss-color={-268435456 (Default), 0 (Black), 8421504 (Gray), 12632256 (Silver), 16777215 (White), 8388608 (Maroon), 16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 8421376 (Olive), 32768 (Green), 32896 (Teal), 65280 (Lime), 8388736 (Purple), 128 (Navy), 255 (Blue), 65535 (Aqua)} 
                                 Color
          Color of the text that will be rendered on the video. This must be an
          hexadecimal (like HTML colors). The first two chars are for red, then
          green, then blue. #000000 = black, #FF0000 = red, #00FF00 = green,
          #FFFF00 = yellow (red + green), #FFFFFF = white
      --rss-size=<integer [0 .. 4096]> 
                                 Font size, pixels
          Font size, in pixels. Default is 0 (use default font size).
   Misc:
      --rss-speed=<integer>      Speed of feeds
          Speed of the RSS/Atom feeds in microseconds (bigger is slower).
      --rss-length=<integer>     Max length
          Maximum number of characters displayed on the screen.
      --rss-ttl=<integer>        Refresh time
          Number of seconds between each forced refresh of the feeds. 0 means
          that the feeds are never updated.
      --rss-images, --no-rss-images 
                                 Feed images
                                 (default enabled)
          Display feed images if available.
      --rss-title={-1 (Default), 0 (Don't show), 1 (Always visible), 2 (Scroll with feed)} 
                                 Title display mode
          Title display mode. Default is 0 (hidden) if the feed has an image
          and feed images are enabled, 1 otherwise.

 Remote-OSD over VNC (remoteosd)
      --rmtosd-host=<string>     VNC Host
          VNC hostname or IP address.
      --rmtosd-port=<integer [1 .. 65535]> 
                                 VNC Port
          VNC port number.
      --rmtosd-password=<string> VNC Password
          VNC password.
      --rmtosd-update=<integer [200 .. 300]> 
                                 VNC poll interval
          In this interval an update from VNC is requested, default every 300
          ms.
      --rmtosd-vnc-polling, --no-rmtosd-vnc-polling 
                                 VNC polling
                                 (default disabled)
          Activate VNC polling. Do NOT activate for use as VDR ffnetdev client.
      --rmtosd-mouse-events, --no-rmtosd-mouse-events 
                                 Mouse events
                                 (default disabled)
          Send mouse events to VNC host. Not needed for use as VDR ffnetdev
          client.
      --rmtosd-key-events, --no-rmtosd-key-events 
                                 Key events
                                 (default disabled)
          Send key events to VNC host.
      --rmtosd-alpha=<integer [0 .. 255]> 
                                 Alpha transparency value (default 255)
          The transparency of the OSD VNC can be changed by giving a value
          between 0 and 255. A lower value specifies more transparency a higher
          means less transparency. The default is being not transparent (value
          255) the minimum is fully transparent (value 0).

 Mosaic video sub source (mosaic)
      --mosaic-alpha=<integer [0 .. 255]> 
                                 Transparency
          Transparency of the mosaic foreground pictures. 0 means transparent,
          255 opaque (default).
      --mosaic-height=<integer>  Height
          Total height of the mosaic, in pixels.
      --mosaic-width=<integer>   Width
          Total width of the mosaic, in pixels.
      --mosaic-align={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)} 
                                 Mosaic alignment
          You can enforce the mosaic alignment on the video (0=center, 1=left,
          2=right, 4=top, 8=bottom, you can also use combinations of these
          values, eg 6 = top-right).
      --mosaic-xoffset=<integer> Top left corner X coordinate
          X Coordinate of the top-left corner of the mosaic.
      --mosaic-yoffset=<integer> Top left corner Y coordinate
          Y Coordinate of the top-left corner of the mosaic.
      --mosaic-borderw=<integer> Border width
          Width in pixels of the border between miniatures.
      --mosaic-borderh=<integer> Border height
          Height in pixels of the border between miniatures.
      --mosaic-position={0 (auto), 1 (fixed), 2 (offsets)} 
                                 Positioning method
          Positioning method for the mosaic. auto: automatically choose the
          best number of rows and columns. fixed: use the user-defined number
          of rows and columns. offsets: use the user-defined offsets for each
          image.
      --mosaic-rows=<integer>    Number of rows
          Number of image rows in the mosaic (only used if positioning method
          is set to "fixed").
      --mosaic-cols=<integer>    Number of columns
          Number of image columns in the mosaic (only used if positioning
          method is set to "fixed").
      --mosaic-keep-aspect-ratio, --no-mosaic-keep-aspect-ratio 
                                 Keep aspect ratio
                                 (default disabled)
          Keep the original aspect ratio when resizing mosaic elements.
      --mosaic-keep-picture, --no-mosaic-keep-picture 
                                 Keep original size
                                 (default disabled)
          Keep the original size of mosaic elements.
      --mosaic-order=<string>    Elements order
          You can enforce the order of the elements on the mosaic. You must
          give a comma-separated list of picture ID(s). These IDs are assigned
          in the "mosaic-bridge" module.
      --mosaic-offsets=<string>  Offsets in order
          You can enforce the (x,y) offsets of the elements on the mosaic (only
          used if positioning method is set to "offsets"). You must give a
          comma-separated list of coordinates (eg: 10,10,150,10).
      --mosaic-delay=<integer>   Delay
          Pictures coming from the mosaic elements will be delayed according to
          this value (in milliseconds). For high values you will need to raise
          caching at input.

 Marquee display (marq)
 Display text above the video
      --marq-marquee=<string>    Text
          Marquee text to display. (Available format strings: %Y = year, %m =
          month, %d = day, %H = hour, %M = minute, %S = second, ...)
      --marq-file=<string>       Text file
          File to read the marquee text from.
   Position:
      --marq-x=<integer>         X offset
          X offset, from the left screen edge.
      --marq-y=<integer>         Y offset
          Y offset, down from the top.
      --marq-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)} 
                                 Marquee position
          You can enforce the marquee position on the video (0=center, 1=left,
          2=right, 4=top, 8=bottom, you can also use combinations of these
          values, eg 6 = top-right).
   Font:
      --marq-opacity=<integer [0 .. 255]> 
                                 Opacity
          Opacity (inverse of transparency) of overlayed text. 0 = transparent,
          255 = totally opaque.
      --marq-color={-268435456 (Default), 0 (Black), 8421504 (Gray), 12632256 (Silver), 16777215 (White), 8388608 (Maroon), 16711680 (Red), 16711935 (Fuchsia), 16776960 (Yellow), 8421376 (Olive), 32768 (Green), 32896 (Teal), 65280 (Lime), 8388736 (Purple), 128 (Navy), 255 (Blue), 65535 (Aqua)} 
                                 Color
          Color of the text that will be rendered on the video. This must be an
          hexadecimal (like HTML colors). The first two chars are for red, then
          green, then blue. #000000 = black, #FF0000 = red, #00FF00 = green,
          #FFFF00 = yellow (red + green), #FFFFFF = white
      --marq-size=<integer [0 .. 4096]> 
                                 Font size, pixels
          Font size, in pixels. Default is 0 (use default font size).
   Misc:
      --marq-timeout=<integer>   Timeout
          Number of milliseconds the marquee must remain displayed. Default
          value is 0 (remains forever).
      --marq-refresh=<integer>   Refresh period in ms
          Number of milliseconds between string updates. This is mainly useful
          when using meta data or time format string sequences.

 Logo sub source (logo)
 Use a local picture as logo on the video
      --logo-file=<string>       Logo filenames
          Full path of the image files to use. Format is <image>[,<delay in
          ms>[,<alpha>]][;<image>[,<delay>[,<alpha>]]][;...]. If you only have
          one file, simply enter its filename.
      --logo-x=<integer>         X coordinate
          X coordinate of the logo. You can move the logo by left-clicking it.
      --logo-y=<integer>         Y coordinate
          Y coordinate of the logo. You can move the logo by left-clicking it.
      --logo-delay=<integer>     Logo individual image time in ms
          Individual image display time of 0 - 60000 ms.
      --logo-repeat=<integer>    Logo animation # of loops
          Number of loops for the logo animation. -1 = continuous, 0 = disabled
      --logo-opacity=<integer [0 .. 255]> 
                                 Opacity of the logo
          Logo opacity value (from 0 for full transparency to 255 for full
          opacity).
      --logo-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)} 
                                 Logo position
          Enforce the logo position on the video (0=center, 1=left, 2=right,
          4=top, 8=bottom, you can also use combinations of these values, eg 6
          = top-right).

 Audio Bar Graph Video sub source (audiobargraph_v)
      --audiobargraph_v-x=<integer> 
                                 X coordinate
          X coordinate of the bargraph.
      --audiobargraph_v-y=<integer> 
                                 Y coordinate
          Y coordinate of the bargraph.
      --audiobargraph_v-transparency=<integer [0 .. 255]> 
                                 Transparency of the bargraph
          Bargraph transparency value (from 0 for full transparency to 255 for
          full opacity).
      --audiobargraph_v-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)} 
                                 Bargraph position
          Enforce the bargraph position on the video (0=center, 1=left,
          2=right, 4=top, 8=bottom, you can also use combinations of these
          values, eg 6 = top-right).
      --audiobargraph_v-barWidth=<integer> 
                                 Bar width in pixel
          Width in pixel of each bar in the BarGraph to be displayed.
      --audiobargraph_v-barHeight=<integer> 
                                 Bar Height in pixel
          Height in pixel of BarGraph to be displayed.

 Universal Plug'n'Play (upnp)
      --satip-channelist={ASTRA_19_2E,ASTRA_28_2E,ASTRA_23_5E,MasterList,ServerList,CustomList} 
                                 SAT>IP channel list
          SAT>IP channel list
      --satip-channellist-url=<string> 
                                 Custom SAT>IP channel list URL
          Custom SAT>IP channel list URL

 Network streams (SAP) (sap)
      --sap-addr=<string>        SAP multicast address
          The SAP module normally chooses itself the right addresses to listen
          to. However, you can specify a specific address.
      --sap-timeout=<integer>    SAP timeout (seconds)
          Delay after which SAP items get deleted if no new announcement is
          received.
      --sap-parse, --no-sap-parse 
                                 Try to parse the announce
                                 (default enabled)
          This enables actual parsing of the announces by the SAP module.
          Otherwise, all announcements are parsed by the "live555" (RTP/RTSP)
          module.
      --sap-strict, --no-sap-strict 
                                 SAP Strict mode
                                 (default disabled)
          When this is set, the SAP parser will discard some non-compliant
          announcements.

 Podcasts (podcast)
      --podcast-urls=<string>    Podcast URLs list
          Enter the list of podcasts to retrieve, separated by '|' (pipe).

 MPEG-I/II video packetizer (mpegvideo)
      --packetizer-mpegvideo-sync-iframe, --no-packetizer-mpegvideo-sync-iframe 
                                 Sync on Intra Frame
                                 (default disabled)
          Normally the packetizer would sync on the next full frame. This flags
          instructs the packetizer to sync on the first Intra Frame found.

 TS muxer (libdvbpsi) (mux_ts)
      --sout-ts-standard={dvb,atsc} 
                                 Digital TV Standard
      --sout-ts-pid-video=<integer [32 .. 8190]> 
                                 Video PID
          Assign a fixed PID to the video stream. The PCR PID will
          automatically be the video.
      --sout-ts-pid-audio=<integer [32 .. 8190]> 
                                 Audio PID
          Assign a fixed PID to the audio stream.
      --sout-ts-pid-spu=<integer [32 .. 8190]> 
                                 SPU PID
          Assign a fixed PID to the SPU.
      --sout-ts-pid-pmt=<integer [32 .. 8190]> 
                                 PMT PID
          Assign a fixed PID to the PMT
      --sout-ts-tsid=<integer>   TS ID
          Assign a fixed Transport Stream ID.
      --sout-ts-netid=<integer>  NET ID
          Assign a fixed Network ID (for SDT table)
      --sout-ts-program-pmt=<string> 
                                 PMT Program numbers
          Assign a program number to each PMT. This requires "Set PID to ID of
          ES" to be enabled.
      --sout-ts-es-id-pid, --no-sout-ts-es-id-pid 
                                 Set PID to ID of ES
                                 (default disabled)
          Sets PID to the ID if the incoming ES. This is for use with
          --ts-es-id-pid, and allows having the same PIDs in the input and
          output streams.
      --sout-ts-muxpmt=<string>  Mux PMT (requires --sout-ts-es-id-pid)
          Define the pids to add to each pmt. This requires "Set PID to ID of
          ES" to be enabled.
      --sout-ts-sdtdesc=<string> SDT Descriptors (requires --sout-ts-es-id-pid)
          Defines the descriptors of each SDT. This requires "Set PID to ID of
          ES" to be enabled.
      --sout-ts-alignment, --no-sout-ts-alignment 
                                 Data alignment
                                 (default enabled)
          Enforces alignment of all access units on PES boundaries. Disabling
          this might save some bandwidth but introduce incompatibilities.
      --sout-ts-shaping=<integer> 
                                 Shaping delay (ms)
          Cut the stream in slices of the given duration, and ensure a constant
          bitrate between the two boundaries. This avoids having huge bitrate
          peaks, especially for reference frames.
      --sout-ts-use-key-frames, --no-sout-ts-use-key-frames 
                                 Use keyframes
                                 (default disabled)
          If enabled, and shaping is specified, the TS muxer will place the
          boundaries at the end of I pictures. In that case, the shaping
          duration given by the user is a worse case used when no reference
          frame is available. This enhances the efficiency of the shaping
          algorithm, since I frames are usually the biggest frames in the
          stream.
      --sout-ts-pcr=<integer>    PCR interval (ms)
          Set at which interval PCRs (Program Clock Reference) will be sent (in
          milliseconds). This value should be below 100ms. (default is 70ms).
      --sout-ts-bmin=<integer>   Minimum B (deprecated)
          This setting is deprecated and not used anymore
      --sout-ts-bmax=<integer>   Maximum B (deprecated)
          This setting is deprecated and not used anymore
      --sout-ts-dts-delay=<integer> 
                                 DTS delay (ms)
          Delay the DTS (decoding time stamps) and PTS (presentation
          timestamps) of the data in the stream, compared to the PCRs. This
          allows for some buffering inside the client decoder.
      --sout-ts-crypt-audio, --no-sout-ts-crypt-audio 
                                 Crypt audio
                                 (default enabled)
          Crypt audio using CSA
      --sout-ts-crypt-video, --no-sout-ts-crypt-video 
                                 Crypt video
                                 (default enabled)
          Crypt video using CSA
      --sout-ts-csa-ck=<string>  CSA Key
          CSA encryption key. This must be a 16 char string (8 hexadecimal
          bytes).
      --sout-ts-csa2-ck=<string> Second CSA Key
          The even CSA encryption key. This must be a 16 char string (8
          hexadecimal bytes).
      --sout-ts-csa-use=<string> CSA Key in use
          CSA encryption key used. It can be the odd/first/1 (default) or the
          even/second/2 one.
      --sout-ts-csa-pkt=<integer> 
                                 Packet size in bytes to encrypt
          Size of the TS packet to encrypt. The encryption routines subtract
          the TS-header from the value before encrypting.

 PS muxer (ps)
      --sout-ps-dts-delay=<integer> 
                                 DTS delay (ms)
          Delay the DTS (decoding time stamps) and PTS (presentation
          timestamps) of the data in the stream, compared to the SCRs. This
          allows for some buffering inside the client decoder.
      --sout-ps-pes-max-size=<integer> 
                                 PES maximum size
          Set the maximum allowed PES size when producing the MPEG PS streams.

 Ogg/OGM muxer (mux_ogg)
      --sout-ogg-indexintvl=<integer [0 .. 2147483647]> 
                                 Index interval
          Minimal index interval, in microseconds. Set to 0 to disable index
          creation.
      --sout-ogg-indexratio=<float [1.000000 .. 1000.000000]> 
                                 Index size ratio
          Set index size ratio. Alters default (60min content) or estimated
          size.

 MP4/MOV muxer (mp4)
      --sout-mp4-faststart, --no-sout-mp4-faststart 
                                 Create "Fast Start" files
                                 (default enabled)
          Create "Fast Start" files. "Fast Start" files are optimized for
          downloads and allow the user to start previewing the file while it is
          downloading.

 AVI muxer (avi)
      --sout-avi-artist=<string> Artist
      --sout-avi-date=<string>   Date
      --sout-avi-genre=<string>  Genre
      --sout-avi-copyright=<string> 
                                 Copyright
      --sout-avi-comment=<string> 
                                 Comment
      --sout-avi-name=<string>   Name
      --sout-avi-subject=<string> 
                                 Subject
      --sout-avi-encoder=<string> 
                                 Encoder
      --sout-avi-keywords=<string> 
                                 Keywords

 ASF muxer (asf)
      --sout-asf-title=<string>  Title
          Title to put in ASF comments.
      --sout-asf-author=<string> Author
          Author to put in ASF comments.
      --sout-asf-copyright=<string> 
                                 Copyright
          Copyright string to put in ASF comments.
      --sout-asf-comment=<string> 
                                 Comment
          Comment to put in ASF comments.
      --sout-asf-rating=<string> Rating
          "Rating" to put in ASF comments.
      --sout-asf-packet-size=<integer> 
                                 Packet Size
          ASF packet size -- default is 4096 bytes
      --sout-asf-bitrate-override=<integer> 
                                 Bitrate override
          Do not try to guess ASF bitrate. Setting this, allows you to control
          how Windows Media Player will cache streamed content. Set to
          audio+video bitrate in bytes

 Legacy RTSP VoD server (rtsp)
      --rtsp-raw-mux=<string>    MUX for RAW RTSP transport
          MUX for RAW RTSP transport
      --rtsp-throttle-users=<integer> 
                                 Maximum number of connections
          This limits the maximum number of clients that can connect to the
          RTSP VOD. 0 means no limit.
      --rtsp-session-timeout=<integer> 
                                 Sets the timeout option in the RTSP session
                                 string
          Defines what timeout option to add to the RTSP session ID string.
          Setting it to a negative number removes the timeout option entirely.
          This is needed by some IPTV STBs (such as those made by HansunTech)
          which get confused by it. The default is 5.

 GNU TLS transport layer security (gnutls)
      --gnutls-system-trust, --no-gnutls-system-trust 
                                 Use system trust database
                                 (default enabled)
          Trust the root certificates of Certificate Authorities stored in the
          operating system trust database to authenticate TLS sessions.
      --gnutls-dir-trust=<string> 
                                 Trust directory
          Trust directory
      --gnutls-priorities={PERFORMANCE,NORMAL,SECURE128,SECURE256,EXPORT} 
                                 TLS cipher priorities
          Ciphers, key exchange methods, hash functions and compression methods
          can be selected. Refer to GNU TLS documentation for detailed syntax.

 Submission of played songs to last.fm (audioscrobbler)
      --lastfm-username=<string> Username
          The username of your last.fm account
      --lastfm-password=<string> Password
          The password of your last.fm account
      --scrobbler-url=<string>   Scrobbler URL
          The URL set for an alternative scrobbler engine

 Folder meta data (folder)
      --album-art-filename=<string> 
                                 Album art filename
          Filename to look for album art in current directory

 Lua interpreter (lua)
      --lua-intf=<string>        Lua interface
          Lua interface module to load
      --lua-config=<string>      Lua interface configuration
          Lua interface configuration string. Format is: '["<interface module
          name>"] = { <option> = <value>, ...}, ...'.
   Lua HTTP:
      --http-password=<string>   Password
          A single password restricts access to this interface.
      --http-src=<string>        Source directory
          Source directory
      --http-index, --no-http-index 
                                 Directory index
                                 (default disabled)
          Allow to build directory index
   Lua CLI:
      --rc-host=<string>         TCP command input
          Accept commands over a socket rather than stdin. You can set the
          address and port the interface will bind to.
      --cli-host=<string>        CLI input
          Accept commands from this source. The CLI defaults to stdin
          ("*console"), but can also bind to a plain TCP socket
          ("localhost:4212") or use the telnet protocol
          ("telnet://0.0.0.0:4212")
   Lua Telnet:
      --telnet-host=<string>     Host
          This is the host on which the interface will listen. It defaults to
          all network interfaces (0.0.0.0). If you want this interface to be
          available only on the local machine, enter "127.0.0.1".
      --telnet-port=<integer [1 .. 65535]> 
                                 Port
          This is the TCP port on which this interface will listen. It defaults
          to 4212.
      --telnet-password=<string> Password
          A single password restricts access to this interface.
      --lua-sd=<string>          

 File logger (file)
      --file-logging, --no-file-logging 
                                 Log to file
                                 (default disabled)
          Log all VLC messages to a text file.
      --logfile=<string>         Log filename
          Specify the log filename.
      --logmode={text,html}      Log format
          Specify the logging format.
      --log-verbose={-1 (Default), 0 (Info), 1 (Error), 2 (Warning), 3 (Debug)} 
                                 Verbosity
          Select the logging verbosity or default to use the same verbosity
          given by --verbose.

 Console logger (console)
  -q, --quiet, --no-quiet        Be quiet
                                 (default disabled)
          Turn off all messages on the console.

 Secrets are stored on a file without any encryption (file)
      --keystore-file=<string>   

 Skinnable Interface (skins2)
      --skins2-last=<string>     Skin to use
          Path to the skin to use.
      --skins2-config=<string>   Config of last used skin
          Windows configuration of the last skin used. This option is updated
          automatically, do not touch it.
      --skins2-systray, --no-skins2-systray 
                                 Systray icon
                                 (default enabled)
          Show a systray icon for VLC
      --skins2-taskbar, --no-skins2-taskbar 
                                 Show VLC on the taskbar
                                 (default enabled)
          Show VLC on the taskbar
      --skins2-transparency, --no-skins2-transparency 
                                 Enable transparency effects
                                 (default disabled)
          You can disable all transparency effects if you want. This is mainly
          useful when moving windows does not behave correctly.
      --skinned-playlist, --no-skinned-playlist 
                                 Use a skinned playlist
                                 (default enabled)
          Use a skinned playlist
      --skinned-video, --no-skinned-video 
                                 Display video in a skinned window if any
                                 (default enabled)
          When set to 'no', this parameter is intended to give old skins a
          chance to play back video even though no video tag is implemented

 Qt interface (qt)
      --qt-minimal-view, --no-qt-minimal-view 
                                 Start in minimal view (without menus)
                                 (default disabled)
          Start in minimal view (without menus)
      --qt-system-tray, --no-qt-system-tray 
                                 Systray icon
                                 (default enabled)
          Show an icon in the systray allowing you to control VLC media player
          for basic actions.
      --qt-notification={0 (Never), 1 (When minimized), 2 (Always)} 
                                 Show notification popup on track change
          Show a notification popup with the artist and track name when the
          current playlist item changes, when VLC is minimized or hidden.
      --qt-start-minimized, --no-qt-start-minimized 
                                 Start VLC with only a systray icon
                                 (default disabled)
          VLC will start with just an icon in your taskbar.
      --qt-pause-minimized, --no-qt-pause-minimized 
                                 Pause the video playback when minimized
                                 (default disabled)
          With this option enabled, the playback will be automatically paused
          when minimizing the window.
      --qt-opacity=<float [0.100000 .. 1.000000]> 
                                 Windows opacity between 0.1 and 1
          Sets the windows opacity between 0.1 and 1 for main interface,
          playlist and extended panel. This option only works with Windows and
          X11 with composite extensions.
      --qt-fs-opacity=<float [0.100000 .. 1.000000]> 
                                 Fullscreen controller opacity between 0.1 and
                                 1
          Sets the fullscreen controller opacity between 0.1 and 1 for main
          interface, playlist and extended panel. This option only works with
          Windows and X11 with composite extensions.
      --qt-video-autoresize, --no-qt-video-autoresize 
                                 Resize interface to the native video size
                                 (default enabled)
          You have two choices:  - The interface will resize to the native
          video size  - The video will fit to the interface size  By default,
          interface resize to the native video size.
      --qt-name-in-title, --no-qt-name-in-title 
                                 Show playing item name in window title
                                 (default enabled)
          Show the name of the song or video in the controller window title.
      --qt-fs-controller, --no-qt-fs-controller 
                                 Show a controller in fullscreen mode
                                 (default enabled)
          Show a controller in fullscreen mode
      --qt-recentplay, --no-qt-recentplay 
                                 Save the recently played items in the menu
                                 (default enabled)
          Save the recently played items in the menu
      --qt-recentplay-filter=<string> 
                                 List of words separated by | to filter
          Regular expression used to filter the recent items played in the
          player.
      --qt-continue={0 (Never), 1 (Ask), 2 (Always)} 
                                 Continue playback?
          Continue playback?
      --qt-updates-notif, --no-qt-updates-notif 
                                 Activate the updates availability notification
                                 (default enabled)
          Activate the automatic notification of new versions of the software.
          It runs once every two weeks.
      --qt-updates-days=<integer [0 .. 180]> 
                                 Number of days between two update checks
          Number of days between two update checks
      --qt-disable-volume-keys, --no-qt-disable-volume-keys 
                                 Ignore keyboard volume buttons.
                                 (default enabled)
          With this option checked, the volume up, volume down and mute buttons
          on your keyboard will always change your system volume. With this
          option unchecked, the volume buttons will change VLC's volume when
          VLC is selected and change the system volume when VLC is not
          selected.
      --qt-embedded-open, --no-qt-embedded-open 
                                 Embed the file browser in open dialog
                                 (default disabled)
          Embed the file browser in open dialog
      --qt-advanced-pref, --no-qt-advanced-pref 
                                 Show advanced preferences over simple ones
                                 (default disabled)
          Show advanced preferences and not simple preferences when opening the
          preferences dialog.
      --qt-error-dialogs, --no-qt-error-dialogs 
                                 Show unimportant error and warnings dialogs
                                 (default enabled)
          Show unimportant error and warnings dialogs
      --qt-slider-colours=<string> 
                                 Define the colors of the volume slider
          Define the colors of the volume slider By specifying the 12 numbers
          separated by a ';' Default is
          '255;255;255;20;226;20;255;176;15;235;30;20' An alternative can be
          '30;30;50;40;40;100;50;50;160;150;150;255'
      --qt-privacy-ask, --no-qt-privacy-ask 
                                 Ask for network policy at start
                                 (default disabled)
          Ask for network policy at start
      --qt-fullscreen-screennumber=<integer> 
                                 Define which screen fullscreen goes
          Screennumber of fullscreen, instead of same screen where interface
          is.
      --qt-autoload-extensions, --no-qt-autoload-extensions 
                                 Load extensions on startup
                                 (default enabled)
          Automatically load the extensions module on startup.
      --qt-bgcone, --no-qt-bgcone 
                                 Display background cone or art
                                 (default enabled)
          Display background cone or current album art when not playing. Can be
          disabled to prevent burning screen.
      --qt-bgcone-expands, --no-qt-bgcone-expands 
                                 Expanding background cone or art
                                 (default disabled)
          Background art fits window's size.
      --qt-icon-change, --no-qt-icon-change 
                                 Allow automatic icon changes
                                 (default enabled)
          This option allows the interface to change its icon on various
          occasions.
      --qt-max-volume=<integer [60 .. 300]> 
                                 Maximum Volume displayed
          Maximum Volume displayed
      --qt-fs-sensitivity=<integer [0 .. 4000]> 
                                 Fullscreen controller mouse sensitivity
          Fullscreen controller mouse sensitivity
      --qt-auto-raise={0 (Never), 1 (Video), 2 (Audio), 3 (Audio/Video)} 
                                 When to raise the interface
          This option allows the interface to be raised automatically when a
          video/audio playback starts, or never.

 VC1 video demuxer (vc1)
      --vc1-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Frames per Second
          Desired frame rate for the VC-1 stream.

 MPEG Transport Stream demuxer (ts)
      --ts-standard={auto,mpeg,dvb,arib,atsc,tdmb} 
                                 Digital TV Standard
          Selects mode for digital TV standard. This feature affects EPG
          information and subtitles.
      --ts-extra-pmt=<string>    Extra PMT
          Allows a user to specify an extra pmt
          (pmt_pid=pid:stream_type[,...]).
      --ts-trust-pcr, --no-ts-trust-pcr 
                                 Trust in-stream PCR
                                 (default enabled)
          Use the stream PCR as a reference.
      --ts-es-id-pid, --no-ts-es-id-pid 
                                 Set id of ES to PID
                                 (default enabled)
          Set the internal ID of each elementary stream handled by VLC to the
          same value as the PID in the TS stream, instead of 1, 2, 3, etc.
          Useful to do '#duplicate{..., select="es=<pid>"}'.
      --ts-csa-ck=<string>       CSA Key
          CSA encryption key. This must be a 16 char string (8 hexadecimal
          bytes).
      --ts-csa2-ck=<string>      Second CSA Key
          The even CSA encryption key. This must be a 16 char string (8
          hexadecimal bytes).
      --ts-csa-pkt=<integer>     Packet size in bytes to decrypt
          Specify the size of the TS packet to decrypt. The decryption routines
          subtract the TS-header from the value before decrypting.
      --ts-split-es, --no-ts-split-es 
                                 Separate sub-streams
                                 (default enabled)
          Separate teletex/dvbs pages into independent ES. It can be useful to
          turn off this option when using stream output.
      --ts-seek-percent, --no-ts-seek-percent 
                                 Seek based on percent not time
                                 (default disabled)
          Seek and position based on a percent byte position, not a PCR
          generated time position. If seeking doesn't work property, turn on
          this option.
      --ts-cc-check, --no-ts-cc-check 
                                 Check packets continuity counter
                                 (default enabled)
          Detect discontinuities and drop packet duplicates. (bluRay sources
          are known broken and have false positives). 

 Text subtitle parser (subtitle)
      --sub-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Frames per Second
          Override the normal frames per second settings. This will only work
          with MicroDVD and SubRIP (SRT) subtitles.
      --sub-delay=<integer>      Subtitle delay
          Apply a delay to all subtitles (in 1/10s, eg 100 means 10s).
      --sub-type={auto,microdvd,subrip,subviewer,ssa1,ssa2-4,ass,vplayer,sami,dvdsubtitle,mpl2,aqt,pjs,mpsub,jacosub,psb,realtext,dks,subviewer1,sbv} 
                                 Subtitle format
          Force the subtiles format. Selecting "auto" means autodetection and
          should always work.
      --sub-description=<string> Subtitle description
          Override the default track description.

 Raw video demuxer (rawvid)
      --rawvid-fps=<string>      Frames per Second
          This is the desired frame rate when playing raw video streams. In the
          form 30000/1001 or 29.97
      --rawvid-width=<integer>   Width
          This specifies the width in pixels of the raw video stream.
      --rawvid-height=<integer>  Height
          This specifies the height in pixels of the raw video stream.
      --rawvid-chroma=<string>   Force chroma (Use carefully)
          Force chroma. This is a four character string.
      --rawvid-aspect-ratio=<string> 
                                 Aspect ratio
          Aspect ratio (4:3, 16:9). Default assumes square pixels.

 DV (Digital Video) demuxer (rawdv)
      --rawdv-hurry-up, --no-rawdv-hurry-up 
                                 Hurry up
                                 (default disabled)
          The demuxer will advance timestamps if the input can't keep up with
          the rate.

 Raw audio demuxer (rawaud)
      --rawaud-channels=<integer> 
                                 Audio channels
          Audio channels in input stream. Numeric value >0. Default is 2.
      --rawaud-samplerate=<integer> 
                                 Audio samplerate (Hz)
          Audio sample rate in Hertz. Default is 48000 Hz.
      --rawaud-fourcc=<string>   FOURCC code of raw input format
          FOURCC code of the raw input format. This is a four character string.
      --rawaud-lang=<string>     Forces the audio language
          Forces the audio language for the output mux. Three letter ISO639
          code. Default is 'eng'.

 MPEG-PS demuxer (ps)
      --ps-trust-timestamps, --no-ps-trust-timestamps 
                                 Trust MPEG timestamps
                                 (default enabled)
          Normally we use the timestamps of the MPEG files to calculate
          position and duration. However sometimes this might not be usable.
          Disable this option to calculate from the bitrate instead.

 Playlist (playlist)
      --playlist-skip-ads, --no-playlist-skip-ads 
                                 Skip ads
                                 (default enabled)
          Use playlist options usually used to prevent ads skipping to detect
          ads and prevent adding them to the playlist.
      --shoutcast-show-adult, --no-shoutcast-show-adult 
                                 Show shoutcast adult content
                                 (default disabled)
          Show NC17 rated video streams when using shoutcast video playlists.

 MP4 stream demuxer (mp4)

 Hacks
      --mp4-m4a-audioonly, --no-mp4-m4a-audioonly 
                                 M4A audio only
                                 (default disabled)
          Ignore non audio tracks from iTunes audio files

 MOD demuxer (libmodplug) (mod)
      --mod-noisereduction, --no-mod-noisereduction 
                                 Noise reduction
                                 (default enabled)
          Enable noise reduction algorithm.
      --mod-reverb, --no-mod-reverb 
                                 Reverb
                                 (default disabled)
          Enable reverberation
      --mod-reverb-level=<integer [0 .. 100]> 
                                 Reverberation level
          Reverberation level (from 0 to 100, default value is 0).
      --mod-reverb-delay=<integer [0 .. 1000]> 
                                 Reverberation delay
          Reverberation delay, in ms. Usual values are from 40 to 200ms.
      --mod-megabass, --no-mod-megabass 
                                 Mega bass
                                 (default disabled)
          Enable megabass mode
      --mod-megabass-level=<integer [0 .. 100]> 
                                 Mega bass level
          Megabass mode level (from 0 to 100, default value is 0).
      --mod-megabass-range=<integer [10 .. 100]> 
                                 Mega bass cutoff
          Megabass mode cutoff frequency, in Hz. This is the maximum frequency
          for which the megabass effect applies. Valid values are from 10 to
          100 Hz.
      --mod-surround, --no-mod-surround 
                                 Surround
                                 (default disabled)
          Surround
      --mod-surround-level=<integer [0 .. 100]> 
                                 Surround level
          Surround effect level (from 0 to 100, default value is 0).
      --mod-surround-delay=<integer [0 .. 1000]> 
                                 Surround delay (ms)
          Surround delay, in ms. Usual values are from 5 to 40 ms.

 Matroska stream demuxer (mkv)
      --mkv-use-ordered-chapters, --no-mkv-use-ordered-chapters 
                                 Respect ordered chapters
                                 (default enabled)
          Play chapters in the order specified in the segment.
      --mkv-use-chapter-codec, --no-mkv-use-chapter-codec 
                                 Chapter codecs
                                 (default enabled)
          Use chapter codecs found in the segment.
      --mkv-preload-local-dir, --no-mkv-preload-local-dir 
                                 Preload MKV files in the same directory
                                 (default enabled)
          Preload matroska files in the same directory to find linked segments
          (not good for broken files).
      --mkv-seek-percent, --no-mkv-seek-percent 
                                 Seek based on percent not time
                                 (default disabled)
          Seek based on percent not time.
      --mkv-use-dummy, --no-mkv-use-dummy 
                                 Dummy Elements
                                 (default disabled)
          Read and discard unknown EBML elements (not good for broken files).
      --mkv-preload-clusters, --no-mkv-preload-clusters 
                                 Preload clusters
                                 (default disabled)
          Find all cluster positions by jumping cluster-to-cluster before
          playback

 M-JPEG camera demuxer (mjpeg)
      --mjpeg-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Frames per Second
          This is the desired frame rate when playing MJPEG from a file. Use 0
          (this is the default value) for a live stream (from a camera).

 Image demuxer (image)
      --image-id=<integer>       ES ID
          Set the ID of the elementary stream
      --image-group=<integer>    Group
          Set the group of the elementary stream
      --image-decode, --no-image-decode 
                                 Decode
                                 (default enabled)
          Decode at the demuxer stage
      --image-chroma=<string>    Forced chroma
          If non empty and image-decode is true, the image will be converted to
          the specified chroma.
      --image-duration=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Duration in seconds
          Duration in seconds before simulating an end of file. A negative
          value means an unlimited play time.
      --image-fps=<string>       Frame rate
          Frame rate of the elementary stream produced.
      --image-realtime, --no-image-realtime 
                                 Real-time
                                 (default disabled)
          Use real-time mode suitable for being used as a master input and
          real-time input slaves.

 H264 video demuxer (h26x)
      --h264-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Frames per Second
          Desired frame rate for the stream.
      --hevc-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Frames per Second
          Desired frame rate for the stream.

 MPEG-I/II/4 / A52 / DTS / MLP audio (es)
      --es-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Frames per Second
          This is the frame rate used as a fallback when playing MPEG video
          elementary streams.

 File dumper (demuxdump)
      --demuxdump-access={any,file,dummy,ftp,http,access_output_livehttp,access_output_shout,udp,stream_out_chromecast,avcodec,none} 
                                 Dump module
          Dump module
      --demuxdump-file=<string>  Dump filename
          Name of the file to which the raw stream will be dumped.
      --demuxdump-append, --no-demuxdump-append 
                                 Append to existing file
                                 (default disabled)
          If the file already exists, it will not be overwritten.

 AVI demuxer (avi)
      --avi-interleaved, --no-avi-interleaved 
                                 Force interleaved method
                                 (default disabled)
          Force interleaved method
      --avi-index={0 (Ask for action), 1 (Always fix), 2 (Never fix), 3 (Fix when necessary)} 
                                 Force index creation
          Recreate a index for the AVI file. Use this if your AVI file is
          damaged or incomplete (not seekable).

 Unified adaptive streaming for DASH/HLS (adaptive)
      --adaptive-logic={,predictive,nearoptimal,rate,fixedrate,lowest,highest} 
                                 Adaptive Logic
      --adaptive-maxwidth=<integer> 
                                 Maximum device width
          Maximum device width
      --adaptive-maxheight=<integer> 
                                 Maximum device height
          Maximum device height
      --adaptive-bw=<integer>    Fixed Bandwidth in KiB/s
          Preferred bandwidth for non adaptive streams
      --adaptive-use-access, --no-adaptive-use-access 
                                 Use regular HTTP modules
                                 (default disabled)
          Connect using HTTP access instead of custom HTTP code

 Direct3D9 adjust filter (d3d9_filters)
      --contrast=<float [0.000000 .. 2.000000]> 
                                 Image contrast (0-2)
          Set the image contrast, between 0 and 2. Defaults to 1.
      --brightness=<float [0.000000 .. 2.000000]> 
                                 Image brightness (0-2)
          Set the image brightness, between 0 and 2. Defaults to 1.
      --hue=<float [-180.000000 .. 180.000000]> 
                                 Image hue (0-360)
          Set the image hue, between 0 and 360. Defaults to 0.
      --saturation=<float [0.000000 .. 3.000000]> 
                                 Image saturation (0-3)
          Set the image saturation, between 0 and 3. Defaults to 1.
      --gamma=<float [0.010000 .. 10.000000]> 
                                 Image gamma (0-10)
          Set the image gamma, between 0.01 and 10. Defaults to 1.
      --brightness-threshold, --no-brightness-threshold 
                                 Brightness threshold
                                 (default disabled)
          When this mode is enabled, pixels will be shown as black or white.
          The threshold value will be the brightness defined below.

 Direct3D11 adjust filter (d3d11_filters)
      --contrast=<float [0.000000 .. 2.000000]> 
                                 Image contrast (0-2)
          Set the image contrast, between 0 and 2. Defaults to 1.
      --brightness=<float [0.000000 .. 2.000000]> 
                                 Image brightness (0-2)
          Set the image brightness, between 0 and 2. Defaults to 1.
      --hue=<float [-180.000000 .. 180.000000]> 
                                 Image hue (0-360)
          Set the image hue, between 0 and 360. Defaults to 0.
      --saturation=<float [0.000000 .. 3.000000]> 
                                 Image saturation (0-3)
          Set the image saturation, between 0 and 3. Defaults to 1.
      --gamma=<float [0.010000 .. 10.000000]> 
                                 Image gamma (0-10)
          Set the image gamma, between 0.01 and 10. Defaults to 1.
      --brightness-threshold, --no-brightness-threshold 
                                 Brightness threshold
                                 (default disabled)
          When this mode is enabled, pixels will be shown as black or white.
          The threshold value will be the brightness defined below.

 Remote control interface (oldrc)
      --rc-show-pos, --no-rc-show-pos 
                                 Show stream position
                                 (default disabled)
          Show the current position in seconds within the stream from time to
          time.
      --rc-quiet, --no-rc-quiet  Do not open a DOS command box interface
                                 (default disabled)
          By default the rc interface plugin will start a DOS command box.
          Enabling the quiet mode will not bring this command box but can also
          be pretty annoying when you want to stop VLC and no video window is
          open.
      --rc-host=<string>         TCP command input
          Accept commands over a socket rather than stdin. You can set the
          address and port the interface will bind to.

 Windows Service interface (ntservice)
      --ntservice-install, --no-ntservice-install 
                                 Install Windows Service
                                 (default disabled)
          Install the Service and exit.
      --ntservice-uninstall, --no-ntservice-uninstall 
                                 Uninstall Windows Service
                                 (default disabled)
          Uninstall the Service and exit.
      --ntservice-name=<string>  Display name of the Service
          Change the display name of the Service.
      --ntservice-options=<string> 
                                 Configuration options
          Configuration options that will be used by the Service (eg. --foo=bar
          --no-foobar). It should be specified at install time so the Service
          is properly configured.
      --ntservice-extraintf=<string> 
                                 Extra interface modules
          Additional interfaces spawned by the Service. It should be specified
          at install time so the Service is properly configured. Use a comma
          separated list of interface modules. (common values are: logger, sap,
          rc, http)

 Network synchronization (netsync)
      --netsync-master, --no-netsync-master 
                                 Network master clock
                                 (default disabled)
          When set, this VLC instance will act as the master clock for
          synchronization for clients listening
      --netsync-master-ip=<string> 
                                 Master server IP address
          The IP address of the network master clock to use for clock
          synchronization.
      --netsync-timeout=<integer> 
                                 UDP timeout (in ms)
          Length of time (in ms) until aborting data reception.

 Mouse gestures control interface (gestures)
      --gestures-threshold=<integer> 
                                 Motion threshold (10-100)
          Amount of movement required for a mouse gesture to be recorded.
      --gestures-button={left,middle,right} 
                                 Trigger button
          Trigger button for mouse gestures.

 Dummy interface (dummy)
      --dummy-quiet, --no-dummy-quiet 
                                 Do not open a DOS command box interface
                                 (default disabled)
          By default the dummy interface plugin will start a DOS command box.
          Enabling the quiet mode will not bring this command box but can also
          be pretty annoying when you want to stop VLC and no video window is
          open.

 VBI and Teletext decoder (zvbi)
      --vbi-page=<integer [0 .. 7995392]> 
                                 Teletext page
          Open the indicated Teletext page. Default page is index 100.
      --vbi-opaque, --no-vbi-opaque 
                                 Opacity
                                 (default disabled)
          Setting to true makes the text to be boxed and maybe easier to read.
      --vbi-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)} 
                                 Teletext alignment
          You can enforce the teletext position on the video (0=center, 1=left,
          2=right, 4=top, 8=bottom, you can also use combinations of these
          values, eg. 6 = top-right).
      --vbi-text, --no-vbi-text  Teletext text subtitles
                                 (default disabled)
          Output teletext subtitles as text instead of as RGBA.
      --vbi-level={0 (1), 1 (1.5), 2 (2.5), 3 (3.5)} 
                                 Presentation Level

 H.264/MPEG-4 Part 10/AVC encoder (x264) (x264)
      --sout-x264-keyint=<integer> 
                                 Maximum GOP size
          Sets maximum interval between IDR-frames. Larger values save bits,
          thus improving quality for a given bitrate at the cost of seeking
          precision. Use -1 for infinite.
      --sout-x264-min-keyint=<integer> 
                                 Minimum GOP size
          Sets minimum interval between IDR-frames. In H.264, I-frames do not
          necessarily bound a closed GOP because it is allowable for a P-frame
          to be predicted from more frames than just the one frame before it
          (also see reference frame option). Therefore, I-frames are not
          necessarily seekable. IDR-frames restrict subsequent P-frames from
          referring to any frame prior to the IDR-frame.  If scenecuts appear
          within this interval, they are still encoded as I-frames, but do not
          start a new GOP.
      --sout-x264-opengop, --no-sout-x264-opengop 
                                 Use recovery points to close GOPs
                                 (default disabled)
          use open GOP, for bluray compatibility use also bluray-compat option
      --sout-x264-bluray-compat, --no-sout-x264-bluray-compat 
                                 Enable compatibility hacks for Blu-ray support
                                 (default disabled)
          Enable hacks for Blu-ray support, this doesn't enforce every aspect
          of Blu-ray compatibility e.g. resolution, framerate, level
      --sout-x264-scenecut=<integer [-1 .. 100]> 
                                 Extra I-frames aggressivity
          Scene-cut detection. Controls how aggressively to insert extra
          I-frames. With small values of scenecut, the codec often has to force
          an I-frame when it would exceed keyint. Good values of scenecut may
          find a better location for the I-frame. Large values use more
          I-frames than necessary, thus wasting bits. -1 disables scene-cut
          detection, so I-frames are inserted only every other keyint frames,
          which probably leads to ugly encoding artifacts. Range 1 to 100.
      --sout-x264-bframes=<integer [0 .. 16]> 
                                 B-frames between I and P
          Number of consecutive B-frames between I and P-frames. Range 1 to 16.
      --sout-x264-b-adapt=<integer [0 .. 2]> 
                                 Adaptive B-frame decision
          Force the specified number of consecutive B-frames to be used, except
          possibly before an I-frame. Range 0 to 2.
      --sout-x264-b-bias=<integer [-100 .. 100]> 
                                 Influence (bias) B-frames usage
          Bias the choice to use B-frames. Positive values cause more B-frames,
          negative values cause less B-frames.
      --sout-x264-bpyramid={none,strict,normal} 
                                 Keep some B-frames as references
          Allows B-frames to be used as references for predicting other frames.
          Keeps the middle of 2+ consecutive B-frames as a reference, and
          reorders frame appropriately.  - none: Disabled  - strict: Strictly
          hierarchical pyramid  - normal: Non-strict (not Blu-ray compatible) 
      --sout-x264-cabac, --no-sout-x264-cabac 
                                 CABAC
                                 (default enabled)
          CABAC (Context-Adaptive Binary Arithmetic Coding). Slightly slows
          down encoding and decoding, but should save 10 to 15% bitrate.
      --sout-x264-fullrange, --no-sout-x264-fullrange 
                                 Use fullrange instead of TV colorrange
                                 (default disabled)
          TV-range is usually used colorrange, defining this to true will
          enable libx264 to use full colorrange on encoding
      --sout-x264-ref=<integer [1 .. 16]> 
                                 Number of reference frames
          Number of previous frames used as predictors. This is effective in
          Anime, but seems to make little difference in live-action source
          material. Some decoders are unable to deal with large frameref
          values. Range 1 to 16.
      --sout-x264-nf, --no-sout-x264-nf 
                                 Skip loop filter
                                 (default disabled)
          Deactivate the deblocking loop filter (decreases quality).
      --sout-x264-deblock=<string> 
                                 Loop filter AlphaC0 and Beta parameters
                                 alpha:beta
          Loop filter AlphaC0 and Beta parameters. Range -6 to 6 for both alpha
          and beta parameters. -6 means light filter, 6 means strong.
      --sout-x264-psy-rd=<string> 
                                 Strength of psychovisual optimization, default
                                 is "1.0:0.0"
          First parameter controls if RD is on (subme>=6) or off. Second
          parameter controls if Trellis is used on psychovisual optimization,
          default off
      --sout-x264-psy, --no-sout-x264-psy 
                                 Use Psy-optimizations
                                 (default enabled)
          Use all visual optimizations that can worsen both PSNR and SSIM
      --sout-x264-level=<string> H.264 level
          Specify H.264 level (as defined by Annex A of the standard). Levels
          are not enforced; it's up to the user to select a level compatible
          with the rest of the encoding options. Range 1 to 5.1 (10 to 51 is
          also allowed). Set to 0 for letting x264 set level.
      --sout-x264-profile={baseline,main,high,high10,high422,high444} 
                                 H.264 profile
          Specify H.264 profile which limits are enforced over other settings
      --sout-x264-interlaced, --no-sout-x264-interlaced 
                                 Interlaced mode
                                 (default disabled)
          Pure-interlaced mode.
      --sout-x264-frame-packing={-1 (), 0 (checkerboard), 1 (column alternation), 2 (row alternation), 3 (side by side), 4 (top bottom), 5 (frame alternation), 6 (2D)} 
                                 Frame packing
          For stereoscopic videos define frame arrangement:  0: checkerboard -
          pixels are alternatively from L and R  1: column alternation - L and
          R are interlaced by column  2: row alternation - L and R are
          interlaced by row  3: side by side - L is on the left, R on the right
           4: top bottom - L is on top, R on bottom  5: frame alternation - one
          view per frame
      --sout-x264-slices=<integer> 
                                 Force number of slices per frame
          Force rectangular slices and is overridden by other slicing options
      --sout-x264-slice-max-size=<integer> 
                                 Limit the size of each slice in bytes
          Sets a maximum slice size in bytes, Includes NAL overhead in size
      --sout-x264-slice-max-mbs=<integer> 
                                 Limit the size of each slice in macroblocks
          Sets a maximum number of macroblocks per slice
      --sout-x264-hrd={none,vbr,cbr} 
                                 HRD-timing information
          HRD-timing information
      --sout-x264-qp=<integer [-1 .. 51]> 
                                 Set QP
          This selects the quantizer to use. Lower values result in better
          fidelity, but higher bitrates. 26 is a good default value. Range 0
          (lossless) to 51.
      --sout-x264-crf=<integer [0 .. 51]> 
                                 Quality-based VBR
          1-pass Quality-based VBR. Range 0 to 51.
      --sout-x264-qpmin=<integer [0 .. 51]> 
                                 Min QP
          Minimum quantizer parameter. 15 to 35 seems to be a useful range.
      --sout-x264-qpmax=<integer [0 .. 51]> 
                                 Max QP
          Maximum quantizer parameter.
      --sout-x264-qpstep=<integer [0 .. 51]> 
                                 Max QP step
          Max QP step between frames.
      --sout-x264-ratetol=<float [0.000000 .. 100.000000]> 
                                 Average bitrate tolerance
          Allowed variance in average bitrate (in kbits/s).
      --sout-x264-vbv-maxrate=<integer> 
                                 Max local bitrate
          Sets a maximum local bitrate (in kbits/s).
      --sout-x264-vbv-bufsize=<integer> 
                                 VBV buffer
          Averaging period for the maximum local bitrate (in kbits).
      --sout-x264-vbv-init=<float [0.000000 .. 1.000000]> 
                                 Initial VBV buffer occupancy
          Sets the initial buffer occupancy as a fraction of the buffer size.
          Range 0.0 to 1.0.
      --sout-x264-ipratio=<float [1.000000 .. 2.000000]> 
                                 QP factor between I and P
          QP factor between I and P. Range 1.0 to 2.0.
      --sout-x264-pbratio=<float [1.000000 .. 2.000000]> 
                                 QP factor between P and B
          QP factor between P and B. Range 1.0 to 2.0.
      --sout-x264-chroma-qp-offset=<integer> 
                                 QP difference between chroma and luma
          QP difference between chroma and luma.
      --sout-x264-pass=<integer [0 .. 3]> 
                                 Multipass ratecontrol
          Multipass ratecontrol:  - 1: First pass, creates stats file  - 2:
          Last pass, does not overwrite stats file  - 3: Nth pass, overwrites
          stats file 
      --sout-x264-qcomp=<float [0.000000 .. 1.000000]> 
                                 QP curve compression
          QP curve compression. Range 0.0 (CBR) to 1.0 (QCP).
      --sout-x264-cplxblur=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Reduce fluctuations in QP
          This reduces the fluctuations in QP before curve compression.
          Temporally blurs complexity.
      --sout-x264-qblur=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Reduce fluctuations in QP
          This reduces the fluctuations in QP after curve compression.
          Temporally blurs quants.
      --sout-x264-aq-mode=<integer [0 .. 2]> 
                                 How AQ distributes bits
          Defines bitdistribution mode for AQ, default 1  - 0: Disabled  - 1:
          Current x264 default mode  - 2: uses log(var)^2 instead of log(var)
          and attempts to adapt strength per frame
      --sout-x264-aq-strength=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Strength of AQ
          Strength to reduce blocking and blurring in flat and textured areas,
          default 1.0 recommended to be between 0..2  - 0.5: weak AQ  - 1.5:
          strong AQ
      --sout-x264-partitions={none,fast,normal,slow,all} 
                                 Partitions to consider
          Partitions to consider in analyse mode:  - none  :   - fast  : i4x4 
          - normal: i4x4,p8x8,(i8x8)  - slow  : i4x4,p8x8,(i8x8),b8x8  - all  
          : i4x4,p8x8,(i8x8),b8x8,p4x4 (p4x4 requires p8x8. i8x8 requires
          8x8dct).
      --sout-x264-direct={none,spatial,temporal,auto} 
                                 Direct MV prediction mode
          Direct MV prediction mode
      --sout-x264-direct-8x8=<integer [-1 .. 1]> 
                                 Direct prediction size
          Direct prediction size:  -  0: 4x4  -  1: 8x8  - -1: smallest
          possible according to level 
      --sout-x264-weightb, --no-sout-x264-weightb 
                                 Weighted prediction for B-frames
                                 (default enabled)
          Weighted prediction for B-frames.
      --sout-x264-weightp=<integer [0 .. 2]> 
                                 Weighted prediction for P-frames
          Weighted prediction for P-frames:  - 0: Disabled  - 1: Blind offset 
          - 2: Smart analysis 
      --sout-x264-me={dia,hex,umh,esa,tesa} 
                                 Integer pixel motion estimation method
          Selects the motion estimation algorithm:  - dia: diamond search,
          radius 1 (fast)  - hex: hexagonal search, radius 2  - umh: uneven
          multi-hexagon search (better but slower)  - esa: exhaustive search
          (extremely slow, primarily for testing)  - tesa: hadamard exhaustive
          search (extremely slow, primarily for testing) 
      --sout-x264-merange=<integer [1 .. 64]> 
                                 Maximum motion vector search range
          Maximum distance to search for motion estimation, measured from
          predicted position(s). Default of 16 is good for most footage, high
          motion sequences may benefit from settings between 24 and 32. Range 0
          to 64.
      --sout-x264-mvrange=<integer> 
                                 Maximum motion vector length
          Maximum motion vector length in pixels. -1 is automatic, based on
          level.
      --sout-x264-mvrange-thread=<integer> 
                                 Minimum buffer space between threads
          Minimum buffer space between threads. -1 is automatic, based on
          number of threads.
      --sout-x264-subme=<integer> 
                                 Subpixel motion estimation and partition
                                 decision quality
          This parameter controls quality versus speed tradeoffs involved in
          the motion estimation decision process (lower = quicker and higher =
          better quality). Range 1 to 9.
      --sout-x264-mixed-refs, --no-sout-x264-mixed-refs 
                                 Decide references on a per partition basis
                                 (default enabled)
          Allows each 8x8 or 16x8 partition to independently select a reference
          frame, as opposed to only one ref per macroblock.
      --sout-x264-chroma-me, --no-sout-x264-chroma-me 
                                 Chroma in motion estimation
                                 (default enabled)
          Chroma ME for subpel and mode decision in P-frames.
      --sout-x264-8x8dct, --no-sout-x264-8x8dct 
                                 Adaptive spatial transform size
                                 (default enabled)
          SATD-based decision for 8x8 transform in inter-MBs.
      --sout-x264-trellis=<integer [0 .. 2]> 
                                 Trellis RD quantization
          Trellis RD quantization:  - 0: disabled  - 1: enabled only on the
          final encode of a MB  - 2: enabled on all mode decisions This
          requires CABAC.
      --sout-x264-lookahead=<integer [0 .. 60]> 
                                 Framecount to use on frametype lookahead
          Framecount to use on frametype lookahead. Currently default can cause
          sync-issues on unmuxable output, like rtsp-output without ts-mux
      --sout-x264-intra-refresh, --no-sout-x264-intra-refresh 
                                 Use Periodic Intra Refresh
                                 (default disabled)
          Use Periodic Intra Refresh instead of IDR frames
      --sout-x264-mbtree, --no-sout-x264-mbtree 
                                 Use mb-tree ratecontrol
                                 (default enabled)
          You can disable use of Macroblock-tree on ratecontrol
      --sout-x264-fast-pskip, --no-sout-x264-fast-pskip 
                                 Early SKIP detection on P-frames
                                 (default enabled)
          Early SKIP detection on P-frames.
      --sout-x264-dct-decimate, --no-sout-x264-dct-decimate 
                                 Coefficient thresholding on P-frames
                                 (default enabled)
          Coefficient thresholding on P-frames. Eliminate dct blocks containing
          only a small single coefficient.
      --sout-x264-nr=<integer [0 .. 1000]> 
                                 Noise reduction
          Dct-domain noise reduction. Adaptive pseudo-deadzone. 10 to 1000
          seems to be a useful range.
      --sout-x264-deadzone-inter=<integer [0 .. 32]> 
                                 Inter luma quantization deadzone
          Set the size of the intra luma quantization deadzone. Range 0 to 32.
      --sout-x264-deadzone-intra=<integer [0 .. 32]> 
                                 Intra luma quantization deadzone
          Set the size of the intra luma quantization deadzone. Range 0 to 32.
      --sout-x264-non-deterministic, --no-sout-x264-non-deterministic 
                                 Non-deterministic optimizations when threaded
                                 (default disabled)
          Slightly improve quality of SMP, at the cost of repeatability.
      --sout-x264-asm, --no-sout-x264-asm 
                                 CPU optimizations
                                 (default enabled)
          Use assembler CPU optimizations.
      --sout-x264-psnr, --no-sout-x264-psnr 
                                 PSNR computation
                                 (default disabled)
          Compute and print PSNR stats. This has no effect on the actual
          encoding quality.
      --sout-x264-ssim, --no-sout-x264-ssim 
                                 SSIM computation
                                 (default disabled)
          Compute and print SSIM stats. This has no effect on the actual
          encoding quality.
      --sout-x264-quiet, --no-sout-x264-quiet 
                                 Quiet mode
                                 (default disabled)
          Quiet mode
      --sout-x264-sps-id=<integer> 
                                 SPS and PPS id numbers
          Set SPS and PPS id numbers to allow concatenating streams with
          different settings.
      --sout-x264-aud, --no-sout-x264-aud 
                                 Access unit delimiters
                                 (default disabled)
          Generate access unit delimiter NAL units.
      --sout-x264-verbose, --no-sout-x264-verbose 
                                 Statistics
                                 (default disabled)
          Print stats for each frame.
      --sout-x264-stats=<string> Filename for 2 pass stats file
          Filename for 2 pass stats file for multi-pass encoding.
      --sout-x264-preset={ultrafast,superfast,veryfast,faster,fast,medium,slow,slower,veryslow,placebo} 
                                 Default preset setting used
          Default preset setting used
      --sout-x264-tune={film,animation,grain,stillimage,psnr,ssim,fastdecode,zerolatency} 
                                 Default tune setting used
          Default tune setting used
      --sout-x264-options=<string> 
                                 x264 advanced options
          x264 advanced options, in the form {opt=val,op2=val2}.

 WebM video decoder (vpx)
      --sout-vpx-quality-mode=<integer [0 .. 2]> 
                                 Quality mode
          Quality setting which will determine max encoding time  - 0: Good
          quality  - 1: Realtime  - 2: Best quality

 Vorbis audio decoder (vorbis)
      --sout-vorbis-quality=<integer [0 .. 10]> 
                                 Encoding quality
          Enforce a quality between 1 (low) and 10 (high), instead of
          specifying a particular bitrate. This will produce a VBR stream.
      --sout-vorbis-max-bitrate=<integer> 
                                 Maximum encoding bitrate
          Maximum bitrate in kbps. This is useful for streaming applications.
      --sout-vorbis-min-bitrate=<integer> 
                                 Minimum encoding bitrate
          Minimum bitrate in kbps. This is useful for encoding for a fixed-size
          channel.
      --sout-vorbis-cbr, --no-sout-vorbis-cbr 
                                 CBR encoding
                                 (default disabled)
          Force a constant bitrate encoding (CBR).

 Libtwolame audio encoder (twolame)
      --sout-twolame-quality=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Encoding quality
          Force a specific encoding quality between 0.0 (high) and 50.0 (low),
          instead of specifying a particular bitrate. This will produce a VBR
          stream.
      --sout-twolame-mode={0 (Stereo), 1 (Dual mono), 2 (Joint stereo)} 
                                 Stereo mode
          Handling mode for stereo streams
      --sout-twolame-vbr, --no-sout-twolame-vbr 
                                 VBR mode
                                 (default disabled)
          Use Variable BitRate. Default is to use Constant BitRate (CBR).
      --sout-twolame-psy=<integer> 
                                 Psycho-acoustic model
          Integer from -1 (no model) to 4.

 TTML subtitles decoder (ttml)
      --ttml-align=<integer>     Subtitle justification
          Set the justification of subtitles

 Theora video decoder (theora)
      --theora-postproc=<integer> 
                                 Post processing quality
      --sout-theora-quality=<integer> 
                                 Encoding quality
          Enforce a quality between 1 (low) and 10 (high), instead of
          specifying a particular bitrate. This will produce a VBR stream.

 USF subtitles decoder (subsusf)
      --subsdec-formatted, --no-subsdec-formatted 
                                 Formatted Subtitles
                                 (default enabled)
          Some subtitle formats allow for text formatting. VLC partly
          implements this, but you can choose to disable all formatting.

 Text subtitle decoder (subsdec)
      --subsdec-align={0 (Center), 1 (Left), 2 (Right)} 
                                 Subtitle justification
          Set the justification of subtitles
      --subsdec-encoding={,system,UTF-8,UTF-16,UTF-16BE,UTF-16LE,GB18030,ISO-8859-15,Windows-1252,IBM850,ISO-8859-2,Windows-1250,ISO-8859-3,ISO-8859-10,Windows-1251,KOI8-R,KOI8-U,ISO-8859-6,Windows-1256,ISO-8859-7,Windows-1253,ISO-8859-8,Windows-1255,ISO-8859-9,Windows-1254,ISO-8859-11,Windows-874,ISO-8859-13,Windows-1257,ISO-8859-14,ISO-8859-16,ISO-2022-CN-EXT,EUC-CN,ISO-2022-JP-2,EUC-JP,Shift_JIS,CP949,ISO-2022-KR,Big5,ISO-2022-TW,Big5-HKSCS,VISCII,Windows-1258} 
                                 Subtitle text encoding
          Set the encoding used in text subtitles
      --subsdec-autodetect-utf8, --no-subsdec-autodetect-utf8 
                                 UTF-8 subtitle autodetection
                                 (default enabled)
          This enables automatic detection of UTF-8 encoding within subtitle
          files.

 DVD subtitles decoder (spudec)
      --dvdsub-transparency, --no-dvdsub-transparency 
                                 Disable DVD subtitle transparency
                                 (default disabled)
          Removes all transparency effects used in DVD subtitles.

 Speex audio decoder (speex)
      --sout-speex-mode={0 (Narrow-band (8kHz)), 1 (Wide-band (16kHz)), 2 (Ultra-wideband (32kHz))} 
                                 Mode
          Enforce the mode of the encoder.
      --sout-speex-complexity=<integer [1 .. 10]> 
                                 Encoding complexity
          Enforce the complexity of the encoder.
      --sout-speex-cbr, --no-sout-speex-cbr 
                                 CBR encoding
                                 (default disabled)
          Enforce a constant bitrate encoding (CBR) instead of default variable
          bitrate encoding (VBR).
      --sout-speex-quality=<float [0.000000 .. 10.000000]> 
                                 Encoding quality
          Enforce a quality between 0 (low) and 10 (high).
      --sout-speex-max-bitrate=<integer> 
                                 Maximal bitrate
          Enforce the maximal VBR bitrate
      --sout-speex-vad, --no-sout-speex-vad 
                                 Voice activity detection
                                 (default enabled)
          Enable voice activity detection (VAD). It is automatically activated
          in VBR mode.
      --sout-speex-dtx, --no-sout-speex-dtx 
                                 Discontinuous Transmission
                                 (default disabled)
          Enable discontinuous transmission (DTX).

 Dirac video decoder using libschroedinger (schroedinger)
   Encoding:
      --sout-schro-rate-control={constant_noise_threshold,constant_bitrate,low_delay,lossless,constant_lambda,constant_error,constant_quality} 
                                 Rate control method
          Method used to encode the video sequence
      --sout-schro-quality=<float [-1.000000 .. 10.000000]> 
                                 Constant quality factor
          Quality factor to use in constant quality mode
      --sout-schro-noise-threshold=<float [-1.000000 .. 100.000000]> 
                                 Noise Threshold
          Noise threshold to use in constant noise threshold mode
      --sout-schro-bitrate=<integer [-1 .. 2147483647]> 
                                 CBR bitrate (kbps)
          Target bitrate in kbps when encoding in constant bitrate mode
      --sout-schro-max-bitrate=<integer [-1 .. 2147483647]> 
                                 Maximum bitrate (kbps)
          Maximum bitrate in kbps when encoding in constant bitrate mode
      --sout-schro-min-bitrate=<integer [-1 .. 2147483647]> 
                                 Minimum bitrate (kbps)
          Minimum bitrate in kbps when encoding in constant bitrate mode
      --sout-schro-gop-structure={adaptive,intra_only,backref,chained_backref,biref,chained_biref} 
                                 GOP structure
          GOP structure used to encode the video sequence
      --sout-schro-gop-length=<integer [-1 .. 2147483647]> 
                                 GOP length
          Number of pictures between successive sequence headers i.e. length of
          the group of pictures
      --sout-schro-chroma-fmt={420,422,444} 
                                 Chroma format
          Picking chroma format will force a conversion of the video into that
          format
      --sout-schro-coding-mode={auto,progressive,field} 
                                 Picture coding mode
          Field coding is where interlaced fields are coded separately as
          opposed to a pseudo-progressive frame
      --sout-schro-mv-precision={1,1/2,1/4,1/8} 
                                 Motion Vector precision
          Motion Vector precision in pels
      --sout-schro-motion-block-size={automatic,small,medium,large} 
                                 Size of motion compensation blocks
          Size of motion compensation blocks
      --sout-schro-motion-block-overlap={automatic,none,partial,full} 
                                 Overlap of motion compensation blocks
          Overlap of motion compensation blocks
      --sout-schro-me-combined=<integer [-1 .. 1]> 
                                 Three component motion estimation
          Use chroma as part of the motion estimation process
      --sout-schro-enable-hierarchical-me=<integer [-1 .. 1]> 
                                 Enable hierarchical Motion Estimation
          Enable hierarchical Motion Estimation
      --sout-schro-downsample-levels=<integer [-1 .. 8]> 
                                 Number of levels of downsampling
          Number of levels of downsampling in hierarchical motion estimation
          mode
      --sout-schro-enable-global-me=<integer [-1 .. 1]> 
                                 Enable Global Motion Estimation
          Enable Global Motion Estimation
      --sout-schro-enable-phasecorr-me=<integer [-1 .. 1]> 
                                 Enable Phase Correlation Estimation
          Enable Phase Correlation Estimation
      --sout-schro-intra-wavelet={desl_dubuc_9_7,le_gall_5_3,desl_dubuc_13_7,haar_0,haar_1,fidelity,daub_9_7} 
                                 Intra picture DWT filter
          Intra picture DWT filter
      --sout-schro-inter-wavelet={desl_dubuc_9_7,le_gall_5_3,desl_dubuc_13_7,haar_0,haar_1,fidelity,daub_9_7} 
                                 Inter picture DWT filter
          Inter picture DWT filter
      --sout-schro-transform-depth=<integer [-1 .. 6]> 
                                 Number of DWT iterations
          Also known as DWT levels
      --sout-schro-enable-multiquant=<integer [-1 .. 1]> 
                                 Enable multiple quantizers
          Enable multiple quantizers per subband (one per codeblock)
      --sout-schro-codeblock-size={automatic,small,medium,large,full} 
                                 Size of code blocks in each subband
          Size of code blocks in each subband
      --sout-schro-filtering={none,center_weighted_median,gaussian,add_noise,adaptive_gaussian,lowpass} 
                                 Prefilter
          Enable adaptive prefiltering
      --sout-schro-filter-value=<float [-1.000000 .. 100.000000]> 
                                 Amount of prefiltering
          Higher value implies more prefiltering
      --sout-schro-enable-scd=<integer [-1 .. 1]> 
                                 Enable Scene Change Detection
          Enable Scene Change Detection
      --sout-schro-perceptual-weighting={none,ccir959,moo,manos_sakrison} 
                                 perceptual weighting method
          perceptual weighting method
      --sout-schro-perceptual-distance=<float [-1.000000 .. 100.000000]> 
                                 perceptual distance
          perceptual distance to calculate perceptual weight
      --sout-schro-enable-noarith=<integer [-1 .. 1]> 
                                 Disable arithmetic coding
          Use variable length codes instead, useful for very high bitrates
      --sout-schro-horiz-slices=<integer [-1 .. 2147483647]> 
                                 Horizontal slices per frame
          Number of horizontal slices per frame in low delay mode
      --sout-schro-vert-slices=<integer [-1 .. 2147483647]> 
                                 Vertical slices per frame
          Number of vertical slices per frame in low delay mode
      --sout-schro-force-profile={auto,vc2_low_delay,vc2_simple,vc2_main,main} 
                                 Force Profile
          Force Profile

 Intel QuickSync Video encoder for MPEG4-Part10/MPEG2 (aka H.264/H.262) (qsv)
      --sout-qsv-software, --no-sout-qsv-software 
                                 Enable software mode
                                 (default disabled)
          Allow the use of the Intel Media SDK software implementation of the
          codecs if no QuickSync Video hardware acceleration is present on the
          system.
      --sout-qsv-h264-profile={decide,baseline,main,extended,high} 
                                 Codec Profile
          Specify the codec profile explicitly. If you don't, the codec will
          determine the correct profile from other sources, such as resolution
          and bitrate. E.g. 'high'
      --sout-qsv-h264-level={decide,1,1.1b,1.2,1.3,2,2.1,2.2,3,3.1,3.2,4,4.1,4.2,5,5.1,5.2} 
                                 Codec Level
          Specify the codec level explicitly. If you don't, the codec will
          determine the correct profile from other sources, such as resolution
          and bitrate. E.g. '4.2' for mpeg4-part10 or 'low' for mpeg2
      --sout-qsv-mpeg2-profile={decide,simple,main,high} 
                                 Codec Profile
          Specify the codec profile explicitly. If you don't, the codec will
          determine the correct profile from other sources, such as resolution
          and bitrate. E.g. 'high'
      --sout-qsv-mpeg2-level={decide,low,main,high,high1440} 
                                 Codec Level
          Specify the codec level explicitly. If you don't, the codec will
          determine the correct profile from other sources, such as resolution
          and bitrate. E.g. '4.2' for mpeg4-part10 or 'low' for mpeg2
      --sout-qsv-gop-size=<integer> 
                                 Group of Picture size
          Number of pictures within the current GOP (Group of Pictures); if
          GopPicSize=0, then the GOP size is unspecified. If GopPicSize=1, only
          I-frames are used.
      --sout-qsv-gop-refdist=<integer> 
                                 Group of Picture Reference Distance
          Distance between I- or P- key frames; if it is zero, the GOP
          structure is unspecified. Note: If GopRefDist = 1, there are no
          B-frames used.
      --sout-qsv-idr-interval=<integer> 
                                 IDR interval
          For H.264, IdrInterval specifies IDR-frame interval in terms of
          I-frames; if IdrInterval=0, then every I-frame is an IDR-frame. If
          IdrInterval=1, then every other I-frame is an IDR-frame, etc. For
          MPEG2, IdrInterval defines sequence header interval in terms of
          I-frames. If IdrInterval=N, SDK inserts the sequence header before
          every Nth I-frame. If IdrInterval=0 (default), SDK inserts the
          sequence header once at the beginning of the stream.
      --sout-qsv-target-usage={decide,quality,balanced,speed} 
                                 Target Usage
          The target usage allow to choose between different trade-offs between
          quality and speed. Allowed values are: 'speed', 'balanced' and
          'quality'.
      --sout-qsv-rc-method={cbr,vbr,qp,avbr} 
                                 Rate Control Method
          The rate control method to use when encoding. Can be one of 'cbr',
          'vbr', 'qp', 'avbr'. 'qp' mode isn't supported for mpeg2.
      --sout-qsv-qp=<integer [0 .. 51]> 
                                 Quantization parameter
          Quantization parameter for all types of frames. This parameters sets
          qpi, qpp and qpb. It has less precedence than the forementionned
          parameters. Used only if rc_method is 'qp'.
      --sout-qsv-qpi=<integer [0 .. 51]> 
                                 Quantization parameter for I-frames
          Quantization parameter for I-frames. This parameter overrides any qp
          set globally. Used only if rc_method is 'qp'.
      --sout-qsv-qpp=<integer [0 .. 51]> 
                                 Quantization parameter for P-frames
          Quantization parameter for P-frames. This parameter overrides any qp
          set globally. Used only if rc_method is 'qp'.
      --sout-qsv-qpb=<integer [0 .. 51]> 
                                 Quantization parameter for B-frames
          Quantization parameter for B-frames. This parameter overrides any qp
          set globally. Used only if rc_method is 'qp'.
      --sout-qsv-bitrate-max=<integer> 
                                 Maximum Bitrate
          Defines the maximum bitrate in kbps (1000 bits/s) for VBR rate
          control method. If not set, this parameter is computed from other
          sources such as bitrate, profile, level, etc.
      --sout-qsv-accuracy=<integer [0 .. 100]> 
                                 Accuracy of RateControl
          Tolerance in percentage of the 'avbr'  (Average Variable BitRate)
          method. (e.g. 10 with a bitrate of 800  kbps means the encoder tries
          not to  go above 880 kbps and under  730 kbps. The targeted accuracy
          is only reached after a certained  convergence period. See the
          convergence parameter
      --sout-qsv-convergence=<integer> 
                                 Convergence time of 'avbr' RateControl
          Number of 100 frames before the 'avbr' rate control method reaches
          the requested bitrate with the requested accuracy. See the accuracy
          parameter.
      --sout-qsv-num-slice=<integer> 
                                 Number of slices per frame
          Number of slices in each video frame; each slice contains one or more
          macro-block rows. If numslice is not set, the encoder may choose any
          slice partitioning allowed by the codec standard.
      --sout-qsv-num-ref-frame=<integer> 
                                 Number of reference frames
          Number of reference frames
      --sout-qsv-async-depth=<integer [1 .. 32]> 
                                 Number of parallel operations
          Defines the number of parallel encoding operations before we
          synchronise the result. Higher numbers may result on better
          throughput depending on hardware. MPEG2 needs at least 1 here.

 Kate overlay decoder (kate)
 Kate is a codec for text and image based overlays.
The Tiger rendering library is needed to render complex Kate streams, but VLC can still render static text and image based subtitles if it is not available.
Note that changing settings below will not take effect until a new stream is played. This will hopefully be fixed soon.
      --kate-formatted, --no-kate-formatted 
                                 Formatted Subtitles
                                 (default enabled)
          Kate streams allow for text formatting. VLC partly implements this,
          but you can choose to disable all formatting. Note that this has no
          effect is rendering via Tiger is enabled.

 JPEG image decoder (jpeg)
   Encoding:
      --sout-jpeg-quality=<integer [0 .. 100]> 
                                 Quality level
          Quality level for encoding (this can enlarge or reduce output image
          size).

 FluidSynth MIDI synthesizer (fluidsynth)
      --soundfont=<string>       SoundFont file
          SoundFont file to use for software synthesis.
      --synth-chorus, --no-synth-chorus 
                                 Chorus
                                 (default enabled)
          Chorus
      --synth-gain=<float [0.000000 .. 10.000000]> 
                                 Synthesis gain
          This gain is applied to synthesis output. High values may cause
          saturation when many notes are played at a time.
      --synth-polyphony=<integer [1 .. 65535]> 
                                 Polyphony
          The polyphony defines how many voices can be played at a time. Larger
          values require more processing power.
      --synth-reverb, --no-synth-reverb 
                                 Reverb
                                 (default enabled)
          Reverb
      --synth-sample-rate=<integer [22050 .. 96000]> 
                                 Sample rate
          Sample rate

 DVB subtitles decoder (dvbsub)
      --dvbsub-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)} 
                                 Subpicture position
          You can enforce the subpicture position on the video (0=center,
          1=left, 2=right, 4=top, 8=bottom, you can also use combinations of
          these values, e.g. 6=top-right).
      --dvbsub-x=<integer>       Decoding X coordinate
          X coordinate of the rendered subtitle
      --dvbsub-y=<integer>       Decoding Y coordinate
          Y coordinate of the rendered subtitle
      --sout-dvbsub-x=<integer>  Encoding X coordinate
          X coordinate of the encoded subtitle
      --sout-dvbsub-y=<integer>  Encoding Y coordinate
          Y coordinate of the encoded subtitle

 Dummy decoder (ddummy)
      --dummy-save-es, --no-dummy-save-es 
                                 Save raw codec data
                                 (default disabled)
          Save the raw codec data if you have selected/forced the dummy decoder
          in the main options.

 DTS Coherent Acoustics audio decoder (dca)
      --dts-dynrng, --no-dts-dynrng 
                                 DTS dynamic range compression
                                 (default enabled)
          Dynamic range compression makes the loud sounds softer, and the soft
          sounds louder, so you can more easily listen to the stream in a noisy
          environment without disturbing anyone. If you disable the dynamic
          range compression the playback will be more adapted to a movie
          theater or a listening room.

 Closed Captions decoder (cc)
      --cc-opaque, --no-cc-opaque 
                                 Opacity
                                 (default enabled)
          Setting to true makes the text to be boxed and maybe easier to read.

 FFmpeg audio/video decoder (avcodec)
 Various audio and video decoders/encoders delivered by the FFmpeg library. This includes (MS)MPEG4, DivX, SV1,H261, H263, H264, WMV, WMA, AAC, AMR, DV, MJPEG and other codecs
   Decoding:
      --avcodec-dr, --no-avcodec-dr 
                                 Direct rendering
                                 (default enabled)
          Direct rendering
      --avcodec-corrupted, --no-avcodec-corrupted 
                                 Show corrupted frames
                                 (default enabled)
          Prefer visual artifacts instead of missing frames
      --avcodec-error-resilience=<integer> 
                                 Error resilience
          libavcodec can do error resilience. However, with a buggy encoder
          (such as the ISO MPEG-4 encoder from M$) this can produce a lot of
          errors. Valid values range from 0 to 4 (0 disables all errors
          resilience).
      --avcodec-workaround-bugs=<integer> 
                                 Workaround bugs
          Try to fix some bugs: 1  autodetect 2  old msmpeg4 4  xvid interlaced
          8  ump4  16 no padding 32 ac vlc 64 Qpel chroma. This must be the sum
          of the values. For example, to fix "ac vlc" and "ump4", enter 40.
      --avcodec-hurry-up, --no-avcodec-hurry-up 
                                 Hurry up
                                 (default enabled)
          The decoder can partially decode or skip frame(s) when there is not
          enough time. It's useful with low CPU power but it can produce
          distorted pictures.
      --avcodec-skip-frame={-1 (None), 0 (Default), 1 (Non-ref), 2 (Bidir), 3 (Non-key), 4 (All)} 
                                 Skip frame (default=0)
          Force skipping of frames to speed up decoding (-1=None, 0=Default,
          1=B-frames, 2=P-frames, 3=B+P frames, 4=all frames).
      --avcodec-skip-idct=<integer [-1 .. 4]> 
                                 Skip idct (default=0)
          Force skipping of idct to speed up decoding for frame types (-1=None,
          0=Default, 1=B-frames, 2=P-frames, 3=B+P frames, 4=all frames).
      --avcodec-fast, --no-avcodec-fast 
                                 Allow speed tricks
                                 (default disabled)
          Allow non specification compliant speedup tricks. Faster but
          error-prone.
      --avcodec-skiploopfilter={0 (None), 1 (Non-ref), 2 (Bidir), 3 (Non-key), 4 (All)} 
                                 Skip the loop filter for H.264 decoding
          Skipping the loop filter (aka deblocking) usually has a detrimental
          effect on quality. However it provides a big speedup for high
          definition streams.
      --avcodec-debug=<integer>  Debug mask
          Set FFmpeg debug mask
      --avcodec-codec=<string>   Codec name
          Internal libavcodec codec name
      --avcodec-hw={any,d3d11va,dxva2,none} 
                                 Hardware decoding
          This allows hardware decoding when available.
      --avcodec-threads=<integer> 
                                 Threads
          Number of threads used for decoding, 0 meaning auto
      --avcodec-options=<string> Advanced options
          Advanced options, in the form {opt=val,opt2=val2}.
   Encoding:
      --sout-avcodec-codec=<string> 
                                 Codec name
          Internal libavcodec codec name
      --sout-avcodec-hq={rd,bits,simple} 
                                 Quality level
          Quality level for the encoding of motions vectors (this can slow down
          the encoding very much).
      --sout-avcodec-keyint=<integer> 
                                 Ratio of key frames
          Number of frames that will be coded for one key frame.
      --sout-avcodec-bframes=<integer> 
                                 Ratio of B frames
          Number of B frames that will be coded between two reference frames.
      --sout-avcodec-hurry-up, --no-sout-avcodec-hurry-up 
                                 Hurry up
                                 (default disabled)
          The encoder can make on-the-fly quality tradeoffs if your CPU can't
          keep up with the encoding rate. It will disable trellis quantization,
          then the rate distortion of motion vectors (hq), and raise the noise
          reduction threshold to ease the encoder's task.
      --sout-avcodec-interlace, --no-sout-avcodec-interlace 
                                 Interlaced encoding
                                 (default disabled)
          Enable dedicated algorithms for interlaced frames.
      --sout-avcodec-interlace-me, --no-sout-avcodec-interlace-me 
                                 Interlaced motion estimation
                                 (default enabled)
          Enable interlaced motion estimation algorithms. This requires more
          CPU.
      --sout-avcodec-vt=<integer> 
                                 Video bitrate tolerance
          Video bitrate tolerance in kbit/s.
      --sout-avcodec-pre-me, --no-sout-avcodec-pre-me 
                                 Pre-motion estimation
                                 (default disabled)
          Enable the pre-motion estimation algorithm.
      --sout-avcodec-rc-buffer-size=<integer> 
                                 Rate control buffer size
          Rate control buffer size (in kbytes). A bigger buffer will allow for
          better rate control, but will cause a delay in the stream.
      --sout-avcodec-rc-buffer-aggressivity=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Rate control buffer aggressiveness
          Rate control buffer aggressiveness.
      --sout-avcodec-i-quant-factor=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 I quantization factor
          Quantization factor of I frames, compared with P frames (for instance
          1.0 => same qscale for I and P frames).
      --sout-avcodec-noise-reduction=<integer> 
                                 Noise reduction
          Enable a simple noise reduction algorithm to lower the encoding
          length and bitrate, at the expense of lower quality frames.
      --sout-avcodec-mpeg4-matrix, --no-sout-avcodec-mpeg4-matrix 
                                 MPEG4 quantization matrix
                                 (default disabled)
          Use the MPEG4 quantization matrix for MPEG2 encoding. This generally
          yields a better looking picture, while still retaining the
          compatibility with standard MPEG2 decoders.
      --sout-avcodec-qmin=<integer> 
                                 Minimum video quantizer scale
          Minimum video quantizer scale.
      --sout-avcodec-qmax=<integer> 
                                 Maximum video quantizer scale
          Maximum video quantizer scale.
      --sout-avcodec-trellis, --no-sout-avcodec-trellis 
                                 Trellis quantization
                                 (default disabled)
          Enable trellis quantization (rate distortion for block coefficients).
      --sout-avcodec-qscale=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Fixed quantizer scale
          A fixed video quantizer scale for VBR encoding (accepted values: 0.01
          to 255.0).
      --sout-avcodec-strict=<integer [-2 .. 2]> 
                                 Strict standard compliance
          Force a strict standard compliance when encoding (accepted values: -2
          to 2).
      --sout-avcodec-lumi-masking=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Luminance masking
          Raise the quantizer for very bright macroblocks (default: 0.0).
      --sout-avcodec-dark-masking=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Darkness masking
          Raise the quantizer for very dark macroblocks (default: 0.0).
      --sout-avcodec-p-masking=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Motion masking
          Raise the quantizer for macroblocks with a high temporal complexity
          (default: 0.0).
      --sout-avcodec-border-masking=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Border masking
          Raise the quantizer for macroblocks at the border of the frame
          (default: 0.0).
      --sout-avcodec-luma-elim-threshold=<integer> 
                                 Luminance elimination
          Eliminates luminance blocks when the PSNR isn't much changed
          (default: 0.0). The H264 specification recommends -4.
      --sout-avcodec-chroma-elim-threshold=<integer> 
                                 Chrominance elimination
          Eliminates chrominance blocks when the PSNR isn't much changed
          (default: 0.0). The H264 specification recommends 7.
      --sout-avcodec-aac-profile=<string> 
                                 Specify AAC audio profile to use
          Specify the AAC audio profile to use for encoding the audio
          bitstream. It takes the following options: main, low, ssr (not
          supported),ltp, hev1, hev2 (default: low). hev1 and hev2 are
          currently supported only with libfdk-aac enabled libavcodec
      --sout-avcodec-options=<string> 
                                 Advanced options
          Advanced options, in the form {opt=val,opt2=val2}.
   Demuxer:
      --avformat-format=<string> Format name
          Internal libavcodec format name
      --avformat-options=<string> 
                                 Advanced options
          Advanced options, in the form {opt=val,opt2=val2}.
   Muxer:
      --sout-avformat-mux=<string> 
                                 Avformat mux
          Force use of a specific avformat muxer.
      --sout-avformat-options=<string> 
                                 Advanced options
          Advanced options, in the form {opt=val,opt2=val2}.
   Input:
      --avio-options=<string>    Advanced options
          Advanced options, in the form {opt=val,opt2=val2}.
   Stream output:
      --sout-avio-options=<string> 
                                 Advanced options
          Advanced options, in the form {opt=val,opt2=val2}.

 ARIB subtitles decoder (aribsub)
      --aribsub-ignore-ruby, --no-aribsub-ignore-ruby 
                                 Ignore ruby (furigana)
                                 (default disabled)
          Ignore ruby (furigana) in the subtitle.
      --aribsub-use-coretext, --no-aribsub-use-coretext 
                                 Use Core Text renderer
                                 (default disabled)
          Use Core Text renderer in the subtitle.

 ATSC A/52 (AC-3) audio decoder (a52)
      --a52-dynrng, --no-a52-dynrng 
                                 A/52 dynamic range compression
                                 (default enabled)
          Dynamic range compression makes the loud sounds softer, and the soft
          sounds louder, so you can more easily listen to the stream in a noisy
          environment without disturbing anyone. If you disable the dynamic
          range compression the playback will be more adapted to a movie
          theater or a listening room.

 WaveOut audio output (waveout)
      --waveout-audio-device={wavemapper,Speakers (ASUS Xonar DG Audio D ($1,$64),S/PDIF Pass-through Device (ASU ($1,$64),CABLE Input (VB-Audio Virtual C ($1,$64)} 
                                 Select Audio Device
          Select special Audio device, or let windows decide (default), change
          needs VLC restart to apply.
      --waveout-volume=<float [0.000000 .. 2.000000]> 
                                 Audio volume
      --waveout-float32, --no-waveout-float32 
                                 Use float32 output
                                 (default enabled)
          The option allows you to enable or disable the high-quality float32
          audio output mode (which is not well supported by some soundcards).
      --waveout-audio-channels=<integer [1 .. 9]> 
                                 Audio output channels
          Channels available for audio output. If the input has more channels
          than the output, it will be down-mixed. This parameter is ignored
          when digital pass-through is active.

 Windows Multimedia Device output (mmdevice)
      --mmdevice-backend={any,wasapi,directsound,none} 
                                 Output back-end
          Audio output back-end interface.
      --mmdevice-passthrough={0 (Disabled), 1 (Enabled (without HD codecs)), 2 (Enabled)} 
                                 HDMI/SPDIF audio passthrough
          Change this value if you have issue with HD codecs when using a HDMI
          receiver.
      --mmdevice-audio-device={,{0.0.0.00000000}.{435351ed-7f2a-4588-83d5-d460b7fa5fa7},{0.0.0.00000000}.{4b187877-fc84-4130-b74c-87ece9e3eb5f},{0.0.0.00000000}.{ecb415c9-9835-4a9d-b618-104e7179b206}} 
                                 Output device
          Select your audio output device
      --mmdevice-volume=<float [0.000000 .. 1.250000]> 
                                 Audio volume
          Audio volume in hundredths of decibels (dB).

 DirectX audio output (directsound)
      --directx-audio-device={,{ECB415C9-9835-4A9D-B618-104E7179B206},{435351ED-7F2A-4588-83D5-D460B7FA5FA7},{4B187877-FC84-4130-B74C-87ECE9E3EB5F}} 
                                 Output device
          Select your audio output device
      --directx-audio-float32, --no-directx-audio-float32 
                                 Use float32 output
                                 (default enabled)
          The option allows you to enable or disable the high-quality float32
          audio output mode (which is not well supported by some soundcards).
      --directx-audio-speaker={Windows default,Mono,Stereo,Quad,5.1,7.1} 
                                 Speaker configuration
          Select speaker configuration you want to use. This option doesn't
          upmix! So NO e.g. Stereo -> 5.1 conversion.
      --directx-volume=<float [0.000000 .. 2.000000]> 
                                 Audio volume
          Audio volume in hundredths of decibels (dB).

 Audio memory output (amem)
      --amem-format=<string>     Sample format
          Sample format
      --amem-rate=<integer [1 .. 352800]> 
                                 Sample rate
          Sample rate
      --amem-channels=<integer [1 .. 9]> 
                                 Channels count
          Channels count

 File audio output (afile)
      --audiofile-file=<string>  Output file
          File to which the audio samples will be written to ("-" for stdout).
      --audiofile-format={u8,s16,float32,spdif} 
                                 Output format
          Output format
      --audiofile-channels=<integer [0 .. 6]> 
                                 Number of output channels
          By default (0), all the channels of the incoming will be saved but
          you can restrict the number of channels here.
      --audiofile-wav, --no-audiofile-wav 
                                 Add WAVE header
                                 (default enabled)
          Instead of writing a raw file, you can add a WAV header to the file.

 Simple stereo widening effect (stereo_widen)
 This filter enhances the stereo effect by suppressing mono (signal common to both channels) and by delaying the signal of left into right and vice versa, thereby widening the stereo effect.
      --stereowiden-delay=<float [1.000000 .. 100.000000]> 
                                 Delay time
          Time in ms of the delay of left signal into right and vice versa.
      --stereowiden-feedback=<float [0.000000 .. 0.900000]> 
                                 Feedback gain
          Amount of gain in delayed left signal into right and vice versa.
          Gives a delay effect of left signal in right output and vice versa
          which gives widening effect.
      --stereowiden-crossfeed=<float [0.000000 .. 0.800000]> 
                                 Crossfeed
          Cross feed of left into right with inverted phase. This helps in
          suppressing the mono. If the value is 1 it will cancel all the signal
          common to both channels.
      --stereowiden-dry-mix=<float [0.000000 .. 1.000000]> 
                                 Dry mix
          Level of input signal of original channel.

 Speex resampler (speex_resampler)
      --speex-resampler-quality=<integer [0 .. 10]> 
                                 Resampling quality
          Resampling quality, from worst to best

 Audio Spatializer (spatializer)
      --spatializer-roomsize=<float [0.000000 .. 1.100000]> 
                                 Room size
          Defines the virtual surface of the room emulated by the filter.
      --spatializer-width=<float [0.000000 .. 1.000000]> 
                                 Room width
          Width of the virtual room
      --spatializer-wet=<float [0.000000 .. 1.000000]> 
                                 Wet
      --spatializer-dry=<float [0.000000 .. 1.000000]> 
                                 Dry
      --spatializer-damp=<float [0.000000 .. 1.000000]> 
                                 Damp

 Ambisonics renderer and binauralizer (spatialaudio)
      --spatialaudio-headphones, --no-spatialaudio-headphones 
                                 Headphones mode (binaural)
                                 (default disabled)
          If the output is stereo, render ambisonics with the binaural decoder.
      --hrtf-file=<string>       HRTF file for the binauralization
          Custom HRTF (Head-related transfer function) file in the SOFA format.

 Audio tempo scaler synched with rate (scaletempo)
      --scaletempo-stride=<integer [1 .. 2000]> 
                                 Stride Length
          Length in milliseconds to output each stride
      --scaletempo-overlap=<float [0.000000 .. 1.000000]> 
                                 Overlap Length
          Percentage of stride to overlap
      --scaletempo-search=<integer [0 .. 200]> 
                                 Search Length
          Length in milliseconds to search for best overlap position

 Pitch Shifter (scaletempo_pitch)
      --scaletempo-stride=<integer [1 .. 2000]> 
                                 Stride Length
          Length in milliseconds to output each stride
      --scaletempo-overlap=<float [0.000000 .. 1.000000]> 
                                 Overlap Length
          Percentage of stride to overlap
      --scaletempo-search=<integer [0 .. 200]> 
                                 Search Length
          Length in milliseconds to search for best overlap position
      --pitch-shift=<float [-12.000000 .. 12.000000]> 
                                 Pitch Shift
          Pitch shift in semitones.

 Secret Rabbit Code (libsamplerate) resampler (samplerate)
      --src-converter-type={0 (Sinc function (best quality)), 1 (Sinc function (medium quality)), 2 (Sinc function (fast)), 3 (Zero Order Hold (fastest)), 4 (Linear (fastest))} 
                                 Sample rate converter type
          Different resampling algorithms are supported. The best one is
          slower, while the fast one exhibits low quality.

 Audio channel remapper (remap)
      --aout-remap-channel-left={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)} 
                                 Left
          Left
      --aout-remap-channel-center={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)} 
                                 Center
          Center
      --aout-remap-channel-right={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)} 
                                 Right
          Right
      --aout-remap-channel-rearleft={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)} 
                                 Rear left
          Rear left
      --aout-remap-channel-rearcenter={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)} 
                                 Rear center
          Rear center
      --aout-remap-channel-rearright={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)} 
                                 Rear right
          Rear right
      --aout-remap-channel-middleleft={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)} 
                                 Side left
          Side left
      --aout-remap-channel-middleright={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)} 
                                 Side right
          Side right
      --aout-remap-channel-lfe={0 (Left), 1 (Center), 2 (Right), 3 (Rear left), 4 (Rear center), 5 (Rear right), 6 (Side left), 7 (Side right), 8 (Low-frequency effects)} 
                                 Low-frequency effects
          Low-frequency effects
      --aout-remap-normalize, --no-aout-remap-normalize 
                                 Normalize channels
                                 (default enabled)
          When mapping more than one channel to a single output channel,
          normalize the output accordingly.

 Parametric Equalizer (param_eq)
      --param-eq-lowf=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Low freq (Hz)
      --param-eq-lowgain=<float [-20.000000 .. 20.000000]> 
                                 Low freq gain (dB)
      --param-eq-highf=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 High freq (Hz)
      --param-eq-highgain=<float [-20.000000 .. 20.000000]> 
                                 High freq gain (dB)
      --param-eq-f1=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Freq 1 (Hz)
      --param-eq-gain1=<float [-20.000000 .. 20.000000]> 
                                 Freq 1 gain (dB)
      --param-eq-q1=<float [0.100000 .. 100.000000]> 
                                 Freq 1 Q
      --param-eq-f2=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Freq 2 (Hz)
      --param-eq-gain2=<float [-20.000000 .. 20.000000]> 
                                 Freq 2 gain (dB)
      --param-eq-q2=<float [0.100000 .. 100.000000]> 
                                 Freq 2 Q
      --param-eq-f3=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Freq 3 (Hz)
      --param-eq-gain3=<float [-20.000000 .. 20.000000]> 
                                 Freq 3 gain (dB)
      --param-eq-q3=<float [0.100000 .. 100.000000]> 
                                 Freq 3 Q

 Volume normalizer (normvol)
      --norm-buff-size=<integer> Number of audio buffers
          This is the number of audio buffers on which the power measurement is
          made. A higher number of buffers will increase the response time of
          the filter to a spike but will make it less sensitive to short
          variations.
      --norm-max-level=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Maximal volume level
          If the average power over the last N buffers is higher than this
          value, the volume will be normalized. This value is a positive
          floating point number. A value between 0.5 and 10 seems sensible.

 Stereo to mono downmixer (mono)
      --sout-mono-downmix, --no-sout-mono-downmix 
                                 Use downmix algorithm
                                 (default enabled)
          This option selects a stereo to mono downmix algorithm that is used
          in the headphone channel mixer. It gives the effect of standing in a
          room full of speakers.
      --sout-mono-channel={0 (Left), 1 (Right), 4 (Rear left), 5 (Rear right), 7 (Center), 8 (Low-frequency effects), 2 (Side left), 3 (Side right), 6 (Rear center)} 
                                 Select channel to keep
          This option silences all other channels except the selected channel.

 Headphone virtual spatialization effect (headphone)
 This effect gives you the feeling that you are standing in a room with a complete 7.1 speaker set when using only a headphone, providing a more realistic sound experience. It should also be more comfortable and less tiring when listening to music for long periods of time.
It works with any source format from mono to 7.1.
      --headphone-dim=<integer>  Characteristic dimension
          Distance between front left speaker and listener in meters.
      --headphone-compensate, --no-headphone-compensate 
                                 Compensate delay
                                 (default disabled)
          The delay which is introduced by the physical algorithm may sometimes
          be disturbing for the synchronization between lips-movement and
          speech. In case, turn this on to compensate.
      --headphone-dolby, --no-headphone-dolby 
                                 No decoding of Dolby Surround
                                 (default disabled)
          Dolby Surround encoded streams won't be decoded before being
          processed by this filter. Enabling this setting is not recommended.

 Gain control filter (gain)
      --gain-value=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Gain multiplier
          Increase or decrease the gain (default 1.0)

 Equalizer with 10 bands (equalizer)
      --equalizer-preset={flat,classical,club,dance,fullbass,fullbasstreble,fulltreble,headphones,largehall,live,party,pop,reggae,rock,ska,soft,softrock,techno} 
                                 Equalizer preset
          Preset to use for the equalizer.
      --equalizer-bands=<string> Bands gain
          Don't use presets, but manually specified bands. You need to provide
          10 values between -20dB and 20dB, separated by spaces, e.g. "0 2 4 2
          0 -2 -4 -2 0 2".
      --equalizer-2pass, --no-equalizer-2pass 
                                 Two pass
                                 (default disabled)
          Filter the audio twice. This provides a more intense effect.
      --equalizer-vlcfreqs, --no-equalizer-vlcfreqs 
                                 Use VLC frequency bands
                                 (default enabled)
          Use the VLC frequency bands. Otherwise, use the ISO Standard
          frequency bands.
      --equalizer-preamp=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Global gain
          Set the global gain in dB (-20 ... 20).

 Dynamic range compressor (compressor)
      --compressor-rms-peak=<float [0.000000 .. 1.000000]> 
                                 RMS/peak
          Set the RMS/peak.
      --compressor-attack=<float [1.500000 .. 400.000000]> 
                                 Attack time
          Set the attack time in milliseconds.
      --compressor-release=<float [2.000000 .. 800.000000]> 
                                 Release time
          Set the release time in milliseconds.
      --compressor-threshold=<float [-30.000000 .. 0.000000]> 
                                 Threshold level
          Set the threshold level in dB.
      --compressor-ratio=<float [1.000000 .. 20.000000]> 
                                 Ratio
          Set the ratio (n:1).
      --compressor-knee=<float [1.000000 .. 10.000000]> 
                                 Knee radius
          Set the knee radius in dB.
      --compressor-makeup-gain=<float [0.000000 .. 24.000000]> 
                                 Makeup gain
          Set the makeup gain in dB (0 ... 24).

 Sound Delay (chorus_flanger)
 Add a delay effect to the sound
      --delay-time=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Delay time
          Time in milliseconds of the average delay. Note average
      --sweep-depth=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Sweep Depth
          Time in milliseconds of the maximum sweep depth. Thus, the sweep
          range will be delay-time +/- sweep-depth.
      --sweep-rate=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Sweep Rate
          Rate of change of sweep depth in milliseconds shift per second of
          play
      --feedback-gain=<float [-0.900000 .. 0.900000]> 
                                 Feedback gain
          Gain on Feedback loop
      --wet-mix=<float [-0.999000 .. 0.999000]> 
                                 Wet mix
          Level of delayed signal
      --dry-mix=<float [-0.999000 .. 0.999000]> 
                                 Dry Mix
          Level of input signal

 Audio part of the BarGraph function (audiobargraph_a)
      --audiobargraph_a-bargraph=<integer> 
                                 Defines if BarGraph information should be sent
          Defines if BarGraph information should be sent. 1 if the information
          should be sent, 0 otherwise (default 1).
      --audiobargraph_a-bargraph_repetition=<integer> 
                                 Sends the barGraph information every n audio
                                 packets
          Defines how often the barGraph information should be sent. Sends the
          barGraph information every n audio packets (default 4).
      --audiobargraph_a-silence=<integer> 
                                 Defines if silence alarm information should be
                                 sent
          Defines if silence alarm information should be sent. 1 if the
          information should be sent, 0 otherwise (default 1).
      --audiobargraph_a-time_window=<integer> 
                                 Time window to use in ms
          Time Window during when the audio level is measured in ms for silence
          detection. If the audio level is under the threshold during this
          time, an alarm is sent (default 5000).
      --audiobargraph_a-alarm_threshold=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Minimum Audio level to raise the alarm
          Threshold to be attained to raise an alarm. If the audio level is
          under the threshold during this time, an alarm is sent (default 0.1).
      --audiobargraph_a-repetition_time=<integer> 
                                 Time between two alarm messages in ms
          Time between two alarm messages in ms. This value is used to avoid
          alarm saturation (default 2000).

 UDP stream output (udp)
      --sout-udp-caching=<integer> 
                                 Caching value (ms)
          Default caching value for outbound UDP streams. This value should be
          set in milliseconds.
      --sout-udp-group=<integer> Group packets
          Packets can be sent one by one at the right time or by groups. You
          can choose the number of packets that will be sent at a time. It
          helps reducing the scheduling load on heavily-loaded systems.

 IceCAST output (access_output_shout)
      --sout-shout-name=<string> Stream name
          Name to give to this stream/channel on the shoutcast/icecast server.
      --sout-shout-description=<string> 
                                 Stream description
          Description of the stream content or information about your channel.
      --sout-shout-mp3, --no-sout-shout-mp3 
                                 Stream MP3
                                 (default disabled)
          You normally have to feed the shoutcast module with Ogg streams. It
          is also possible to stream MP3 instead, so you can forward MP3
          streams to the shoutcast/icecast server.
      --sout-shout-genre=<string> 
                                 Genre description
          Genre of the content.
      --sout-shout-url=<string>  URL description
          URL with information about the stream or your channel.
      --sout-shout-bitrate=<string> 
                                 Bitrate
          Bitrate information of the transcoded stream.
      --sout-shout-samplerate=<string> 
                                 Samplerate
          Samplerate information of the transcoded stream.
      --sout-shout-channels=<string> 
                                 Number of channels
          Number of channels information of the transcoded stream.
      --sout-shout-quality=<string> 
                                 Ogg Vorbis Quality
          Ogg Vorbis Quality information of the transcoded stream.
      --sout-shout-public, --no-sout-shout-public 
                                 Stream public
                                 (default disabled)
          Make the server publicly available on the 'Yellow Pages' (directory
          listing of streams) on the icecast/shoutcast website. Requires the
          bitrate information specified for shoutcast. Requires Ogg streaming
          for icecast.

 HTTP Live streaming output (access_output_livehttp)
      --sout-livehttp-seglen=<integer> 
                                 Segment length
          Length of TS stream segments
      --sout-livehttp-numsegs=<integer> 
                                 Number of segments
          Number of segments to include in index
      --sout-livehttp-initial-segment-number=<integer> 
                                 Number of first segment
          The number of the first segment generated
      --sout-livehttp-splitanywhere, --no-sout-livehttp-splitanywhere 
                                 Split segments anywhere
                                 (default disabled)
          Don't require a keyframe before splitting a segment. Needed for audio
          only.
      --sout-livehttp-delsegs, --no-sout-livehttp-delsegs 
                                 Delete segments
                                 (default enabled)
          Delete segments when they are no longer needed
      --sout-livehttp-ratecontrol, --no-sout-livehttp-ratecontrol 
                                 Use muxers rate control mechanism
                                 (default disabled)
          Use muxers rate control mechanism
      --sout-livehttp-caching, --no-sout-livehttp-caching 
                                 Allow cache
                                 (default disabled)
          Add EXT-X-ALLOW-CACHE:NO directive in playlist-file if this is
          disabled
      --sout-livehttp-generate-iv, --no-sout-livehttp-generate-iv 
                                 Use randomized IV for encryption
                                 (default disabled)
          Generate IV instead using segment-number as IV
      --sout-livehttp-index=<string> 
                                 Index file
          Path to the index file to create
      --sout-livehttp-index-url=<string> 
                                 Full URL to put in index file
          Full URL to put in index file. Use #'s to represent segment number
      --sout-livehttp-key-uri=<string> 
                                 AES key URI to place in playlist
          AES key URI to place in playlist
      --sout-livehttp-key-file=<string> 
                                 AES key file
          File containing the 16 bytes encryption key
      --sout-livehttp-key-loadfile=<string> 
                                 File where vlc reads key-uri and
                                 keyfile-location
          File is read when segment starts and is assumed to be in format:
          key-uri\nkey-file. File is read on the segment opening and values are
          used on that segment.

 HTTP stream output (http)
      --sout-http-user=<string>  Username
          Username that will be requested to access the stream.
      --sout-http-pwd=<string>   Password
          Password that will be requested to access the stream.
      --sout-http-mime=<string>  Mime
          MIME returned by the server (autodetected if not specified).
      --sout-http-metacube, --no-sout-http-metacube 
                                 Metacube
                                 (default disabled)
          Use the Metacube protocol. Needed for streaming to the Cubemap
          reflector.

 File stream output (file)
      --sout-file-overwrite, --no-sout-file-overwrite 
                                 Overwrite existing file
                                 (default enabled)
          If the file already exists, it will be overwritten.
      --sout-file-append, --no-sout-file-append 
                                 Append to file
                                 (default disabled)
          Append to file if it exists instead of replacing it.
      --sout-file-format, --no-sout-file-format 
                                 Format time and date
                                 (default disabled)
          Perform ISO C time and date formatting on the file path

 VNC client access (vnc)
      --rfb-user=<string>        Username
          Username
      --rfb-password=<string>    Password
          Password
      --rfb-x509-ca=<string>     X.509 Certificate Authority
          Certificate of the Authority to verify server's against
      --rfb-x509-crl=<string>    X.509 Certificate Revocation List
          List of revoked servers certificates
      --rfb-x509-client-cert=<string> 
                                 X.509 Client certificate
          Certificate for client authentication
      --rfb-x509-client-key=<string> 
                                 X.509 Client private key
          Private key for authentication by certificate
      --rfb-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Frame rate
          How many times the screen content should be refreshed per second.
      --rfb-chroma={RV32,RV24,RV16,RGB8} 
                                 Frame buffer depth
          RGB chroma (RV32, RV24, RV16, RGB2)
      --rfb-compress-level=<integer [0 .. 9]> 
                                 Compression level
          Transfer compression level from 0 (none) to 9 (max)
      --rfb-quality-level=<integer [1 .. 9]> 
                                 Image quality
          Image quality 1 to 9 (max)

 VDR recordings (vdr)
 Support for VDR recordings (http://www.tvdr.de/).
      --vdr-chapter-offset=<integer> 
                                 Chapter offset in ms
          Move all chapters. This value should be set in milliseconds.
      --vdr-fps=<float [1.000000 .. 1000.000000]> 
                                 Frame rate
          Default frame rate for chapter import.

 UDP input (udp)
      --udp-timeout=<integer>    UDP Source timeout (sec)

 Time code subpicture elementary stream generator (timecode)
      --timecode-fps={24/1,25/1,30000/1001,30/1} 
                                 Frame rate
          Frame rate

 SMB input (smb)
 Samba (Windows network shares) input
      --smb-user=<string>        Username
          Username that will be used for the connection, if no username is set
          in the URL.
      --smb-pwd=<string>         Password
          Password that will be used for the connection, if no username or
          password are set in URL.
      --smb-domain=<string>      SMB domain
          Domain/Workgroup that will be used for the connection.

 Shared memory framebuffer (shm)
      --shm-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Frame rate
          How many times the screen content should be refreshed per second.
      --shm-depth={0 (XWD file (autodetect)), 8 (8 bits), 15 (15 bits), 16 (16 bits), 24 (24 bits), 32 (32 bits)} 
                                 Frame buffer depth
          Pixel depth of the frame buffer, or zero for XWD file
      --shm-width=<integer [0 .. 65535]> 
                                 Frame buffer width
          Pixel width of the frame buffer (ignored for XWD file)
      --shm-height=<integer [0 .. 65535]> 
                                 Frame buffer height
          Pixel height of the frame buffer (ignored for XWD file)
      --shm-file=<string>        Frame buffer file
          Path of the memory mapped file of the frame buffer

 SFTP input (sftp)
      --sftp-port=<integer>      SFTP port
          SFTP port number to use on the server
      --sftp-user=<string>       Username
          Username that will be used for the connection, if no username is set
          in the URL.
      --sftp-pwd=<string>        Password
          Password that will be used for the connection, if no username or
          password are set in URL.

 Screen Input (screen)
      --screen-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Frame rate
          Desired frame rate for the capture.
      --screen-top=<integer>     Region top row
          Ordinate of the capture region in pixels.
      --screen-left=<integer>    Region left column
          Abscissa of the capture region in pixels.
      --screen-width=<integer>   Capture region width
          Capture region width
      --screen-height=<integer>  Capture region height
          Capture region height
      --screen-follow-mouse, --no-screen-follow-mouse 
                                 Follow the mouse
                                 (default disabled)
          Follow the mouse when capturing a subscreen.
      --screen-mouse-image=<string> 
                                 Mouse pointer image
          If specified, will use the image to draw the mouse pointer on the
          capture.
      --screen-fragment-size=<integer> 
                                 Capture fragment size
          Optimize the capture by fragmenting the screen in chunks of
          predefined height (16 might be a good value, and 0 means disabled).

 SAT>IP Receiver Plugin (satip)
      --satip-buffer=<integer>   Receive buffer
          UDP receive buffer size (bytes)
      --satip-multicast, --no-satip-multicast 
                                 Request multicast stream
                                 (default disabled)
          Request server to send stream as multicast
      --satip-host=<string>      Host
          Host

 Real-Time Protocol (RTP) input (rtp)
      --rtcp-port=<integer [0 .. 65535]> 
                                 RTCP (local) port
          RTCP packets will be received on this transport protocol port. If
          zero, multiplexed RTP/RTCP is used.
      --srtp-key=<string>        SRTP key (hexadecimal)
          RTP packets will be authenticated and deciphered with this Secure RTP
          master shared secret key. This must be a 32-character-long
          hexadecimal string.
      --srtp-salt=<string>       SRTP salt (hexadecimal)
          Secure RTP requires a (non-secret) master salt value. This must be a
          28-character-long hexadecimal string.
      --rtp-max-src=<integer [1 .. 255]> 
                                 Maximum RTP sources
          How many distinct active RTP sources are allowed at a time.
      --rtp-timeout=<integer>    RTP source timeout (sec)
          How long to wait for any packet before a source is expired.
      --rtp-max-dropout=<integer [0 .. 32767]> 
                                 Maximum RTP sequence number dropout
          RTP packets will be discarded if they are too much ahead (i.e. in the
          future) by this many packets from the last received packet.
      --rtp-max-misorder=<integer [0 .. 32767]> 
                                 Maximum RTP sequence number misordering
          RTP packets will be discarded if they are too far behind (i.e. in the
          past) by this many packets from the last received packet.
      --rtp-dynamic-pt={theora}  RTP payload format assumed for dynamic
                                 payloads
          This payload format will be assumed for dynamic payload types
          (between 96 and 127) if it can't be determined otherwise with
          out-of-band mappings (SDP)

 NFS input (nfs)
      --nfs-auto-guid, --no-nfs-auto-guid 
                                 Set NFS uid/guid automatically
                                 (default enabled)
          If uid/gid are not specified in the url, VLC will automatically set a
          uid/gid.

 RTP/RTSP/SDP demuxer (using Live555) (live555)
      --rtsp-tcp, --no-rtsp-tcp  Use RTP over RTSP (TCP)
                                 (default disabled)
          Use RTP over RTSP (TCP)
      --rtp-client-port=<integer> 
                                 Client port
          Port to use for the RTP source of the session
      --rtsp-mcast, --no-rtsp-mcast 
                                 Force multicast RTP via RTSP
                                 (default disabled)
          Force multicast RTP via RTSP
      --rtsp-http, --no-rtsp-http 
                                 Tunnel RTSP and RTP over HTTP
                                 (default disabled)
          Tunnel RTSP and RTP over HTTP
      --rtsp-http-port=<integer> HTTP tunnel port
          Port to use for tunneling the RTSP/RTP over HTTP.
      --rtsp-kasenna, --no-rtsp-kasenna 
                                 Kasenna RTSP dialect
                                 (default disabled)
          Kasenna servers use an old and nonstandard dialect of RTSP. With this
          parameter VLC will try this dialect, but then it cannot connect to
          normal RTSP servers.
      --rtsp-wmserver, --no-rtsp-wmserver 
                                 WMServer RTSP dialect
                                 (default disabled)
          WMServer uses a nonstandard dialect of RTSP. Selecting this parameter
          will tell VLC to assume some options contrary to RFC 2326 guidelines.
      --rtsp-user=<string>       Username
          Sets the username for the connection, if no username or password are
          set in the url.
      --rtsp-pwd=<string>        Password
          Sets the password for the connection, if no username or password are
          set in the url.
      --rtsp-frame-buffer-size=<integer> 
                                 RTSP frame buffer size
          RTSP start frame buffer size of the video track, can be increased in
          case of broken pictures due to too small buffer.

 Blu-ray Disc support (libbluray) (libbluray)
      --bluray-menu, --no-bluray-menu 
                                 Blu-ray menus
                                 (default enabled)
          Use Blu-ray menus. If disabled, the movie will start directly
      --bluray-region={A,B,C}    Region code
          Blu-Ray player region code. Some discs can be played only with a
          correct region code.

 HTTP input (http)
      --http-reconnect, --no-http-reconnect 
                                 Auto re-connect
                                 (default disabled)
          Automatically try to reconnect to the stream in case of a sudden
          disconnect.

 HTTPS input (access)
      --http-continuous, --no-http-continuous 
                                 Continuous stream
                                 (default disabled)
          Keep reading a resource that keeps being updated.
      --http-forward-cookies, --no-http-forward-cookies 
                                 Cookies forwarding
                                 (default enabled)
          Forward cookies across HTTP redirections.
      --http-referrer=<string>   Referrer
          Provide the referral URL, i.e. HTTP "Referer" (sic).
      --http-user-agent=<string> User agent
          Override the name and version of the application as provided to the
          HTTP server, i.e. the HTTP "User-Agent". Name and version must be
          separated by a forward slash, e.g. "FooBar/1.2.3".

 FTP input (ftp)
      --ftp-user=<string>        Username
          Username that will be used for the connection, if no username is set
          in the URL.
      --ftp-pwd=<string>         Password
          Password that will be used for the connection, if no username or
          password are set in URL.
      --ftp-account=<string>     FTP account
          Account that will be used for the connection.

 File input (filesystem)
   Directory:
      --list-special-files, --no-list-special-files 
                                 List special files
                                 (default disabled)
          Include devices and pipes when listing directories

 DVDRead Input (no menu support) (dvdread)
      --dvdread-angle=<integer>  DVD angle
          Default DVD angle.

 DVDnav Input (dvdnav)
      --dvdnav-angle=<integer>   DVD angle
          Default DVD angle.
      --dvdnav-menu, --no-dvdnav-menu 
                                 Start directly in menu
                                 (default enabled)
          Start the DVD directly in the main menu. This will try to skip all
          the useless warning introductions.

 Digital Television and Radio (dtv)
      --dvb-adapter=<integer>    DVB adapter
          If there is more than one digital broadcasting adapter, the adapter
          number must be selected. Numbering starts from zero.
      --dvb-network-name=<string> 
                                 Network name
          Unique network name in the System Tuning Spaces
      --dvb-create-name=<string> Network name to create
          Create unique name in the System Tuning Spaces
      --dvb-frequency=<integer [0 .. 107999999]> 
                                 Frequency (Hz)
          TV channels are grouped by transponder (a.k.a. multiplex) on a given
          frequency. This is required to tune the receiver.
      --dvb-inversion={-1 (Automatic), 0 (Off), 1 (On)} 
                                 Spectrum inversion
          If the demodulator cannot detect spectral inversion correctly, it
          needs to be configured manually.
   Terrestrial reception parameters:
      --dvb-bandwidth={0 (Automatic), 10 (10 MHz), 8 (8 MHz), 7 (7 MHz), 6 (6 MHz), 5 (5 MHz), 2 (1.712 MHz)} 
                                 Bandwidth (MHz)
          Bandwidth (MHz)
      --dvb-transmission={-1 (Automatic), 1 (1k), 2 (2k), 4 (4k), 8 (8k), 16 (16k), 32 (32k)} 
                                 Transmission mode
          Transmission mode
      --dvb-guard={,1/128,1/32,1/16,19/256,1/8,19/128,1/4} 
                                 Guard interval
          Guard interval
   DVB-T reception parameters:
      --dvb-code-rate-hp={,0,1/2,3/5,2/3,3/4,4/5,5/6,6/7,7/8,8/9,9/10} 
                                 High-priority code rate
          The code rate for Forward Error Correction can be specified.
      --dvb-code-rate-lp={,0,1/2,3/5,2/3,3/4,4/5,5/6,6/7,7/8,8/9,9/10} 
                                 Low-priority code rate
          The code rate for Forward Error Correction can be specified.
      --dvb-hierarchy={-1 (Automatic), 0 (None), 1 (1), 2 (2), 4 (4)} 
                                 Hierarchy mode
          Hierarchy mode
      --dvb-plp-id=<integer [0 .. 255]> 
                                 DVB-T2 Physical Layer Pipe
          DVB-T2 Physical Layer Pipe
   ISDB-T reception parameters:
      --dvb-a-modulation={,QAM,16QAM,32QAM,64QAM,128QAM,256QAM,8VSB,16VSB,QPSK,DQPSK,8PSK,16APSK,32APSK} 
                                 Layer A modulation
          The digital signal can be modulated according with different
          constellations (depending on the delivery system). If the demodulator
          cannot detect the constellation automatically, it needs to be
          configured manually.
      --dvb-a-fec={,0,1/2,3/5,2/3,3/4,4/5,5/6,6/7,7/8,8/9,9/10} 
                                 Layer A code rate
          The code rate for Forward Error Correction can be specified.
      --dvb-a-count=<integer [0 .. 13]> 
                                 Layer A segments count
      --dvb-a-interleaving=<integer [0 .. 3]> 
                                 Layer A time interleaving
      --dvb-b-modulation={,QAM,16QAM,32QAM,64QAM,128QAM,256QAM,8VSB,16VSB,QPSK,DQPSK,8PSK,16APSK,32APSK} 
                                 Layer B modulation
          The digital signal can be modulated according with different
          constellations (depending on the delivery system). If the demodulator
          cannot detect the constellation automatically, it needs to be
          configured manually.
      --dvb-b-fec={,0,1/2,3/5,2/3,3/4,4/5,5/6,6/7,7/8,8/9,9/10} 
                                 Layer B code rate
          The code rate for Forward Error Correction can be specified.
      --dvb-b-count=<integer [0 .. 13]> 
                                 Layer B segments count
      --dvb-b-interleaving=<integer [0 .. 3]> 
                                 Layer B time interleaving
      --dvb-c-modulation={,QAM,16QAM,32QAM,64QAM,128QAM,256QAM,8VSB,16VSB,QPSK,DQPSK,8PSK,16APSK,32APSK} 
                                 Layer C modulation
          The digital signal can be modulated according with different
          constellations (depending on the delivery system). If the demodulator
          cannot detect the constellation automatically, it needs to be
          configured manually.
      --dvb-c-fec={,0,1/2,3/5,2/3,3/4,4/5,5/6,6/7,7/8,8/9,9/10} 
                                 Layer C code rate
          The code rate for Forward Error Correction can be specified.
      --dvb-c-count=<integer [0 .. 13]> 
                                 Layer C segments count
      --dvb-c-interleaving=<integer [0 .. 3]> 
                                 Layer C time interleaving
   Cable and satellite reception parameters:
      --dvb-modulation={,QAM,16QAM,32QAM,64QAM,128QAM,256QAM,8VSB,16VSB,QPSK,DQPSK,8PSK,16APSK,32APSK} 
                                 Modulation / Constellation
          The digital signal can be modulated according with different
          constellations (depending on the delivery system). If the demodulator
          cannot detect the constellation automatically, it needs to be
          configured manually.
      --dvb-srate=<integer [0 .. 4294967295]> 
                                 Symbol rate (bauds)
          The symbol rate must be specified manually for some systems, notably
          DVB-C, DVB-S and DVB-S2.
      --dvb-fec={,0,1/2,3/5,2/3,3/4,4/5,5/6,6/7,7/8,8/9,9/10} 
                                 FEC code rate
          The code rate for Forward Error Correction can be specified.
   DVB-S2 parameters:
      --dvb-stream=<integer [0 .. 255]> 
                                 Stream identifier
          Stream identifier
      --dvb-pilot={-1 (Automatic), 0 (Off), 1 (On)} 
                                 Pilot
          Pilot
      --dvb-rolloff={-1 (Automatic), 35 (0.35 (same as DVB-S)), 20 (0.20), 25 (0.25)} 
                                 Roll-off factor
          Roll-off factor
   ISDB-S parameters:
      --dvb-ts-id=<integer [0 .. 65535]> 
                                 Transport stream ID
          Transport stream ID
   Satellite equipment control:
      --dvb-polarization={,V,H,R,L} 
                                 Polarization (Voltage)
          To select the polarization of the transponder, a different voltage is
          normally applied to the low noise block-downconverter (LNB).
      --dvb-voltage=<integer [0 .. 18]> 
                                 
      --dvb-lnb-low=<integer [0 .. 2147483647]> 
                                 Local oscillator low frequency (kHz)
          The downconverter (LNB) will subtract the local oscillator frequency
          from the satellite transmission frequency. The intermediate frequency
          (IF) on the RF cable is the result.
      --dvb-lnb-high=<integer [0 .. 2147483647]> 
                                 Local oscillator high frequency (kHz)
          The downconverter (LNB) will subtract the local oscillator frequency
          from the satellite transmission frequency. The intermediate frequency
          (IF) on the RF cable is the result.
      --dvb-lnb-switch=<integer [0 .. 2147483647]> 
                                 Universal LNB switch frequency (kHz)
          If the satellite transmission frequency exceeds the switch frequency,
          the oscillator high frequency will be used as reference. Furthermore
          the automatic continuous 22kHz tone will be sent.
      --dvb-network-id=<integer> Network identifier
          Network identifier
      --dvb-azimuth=<integer>    Satellite azimuth
          Satellite azimuth in tenths of degree
      --dvb-elevation=<integer>  Satellite elevation
          Satellite elevation in tenths of degree
      --dvb-longitude=<integer>  Satellite longitude
          Satellite longitude in tenths of degree. West is negative.
      --dvb-range=<string>       Satellite range code
          Satellite range code as defined by manufacturer e.g. DISEqC switch
          code
   ATSC reception parameters:
      --dvb-major-channel=<integer> 
                                 Major channel
      --dvb-minor-channel=<integer> 
                                 ATSC minor channel
      --dvb-physical-channel=<integer> 
                                 Physical channel

 DirectShow input (dshow)
      --dshow-vdev={,none,screen-capture-recorder} 
                                 Video device name
          Name of the video device that will be used by the DirectShow plugin.
          If you don't specify anything, the default device will be used.
      --dshow-adev={,none,Aux (ASUS Xonar DG Audio Device),CABLE Output (VB-Audio Virtual Cable),Line In (ASUS Xonar DG Audio Device),Microphone (ASUS Xonar DG Audio Device),Stereo Mix (ASUS Xonar DG Audio Device),Wave (ASUS Xonar DG Audio Device),virtual-audio-capturer} 
                                 Audio device name
          Name of the audio device that will be used by the DirectShow plugin.
          If you don't specify anything, the default device will be used.
      --dshow-size=<string>      Video size
          Size of the video that will be displayed by the DirectShow plugin. If
          you don't specify anything the default size for your device will be
          used. You can specify a standard size (cif, d1, ...) or
          <width>x<height>.
      --dshow-aspect-ratio=<string> 
                                 Picture aspect-ratio n:m
          Define input picture aspect-ratio to use. Default is 4:3
      --dshow-chroma=<string>    Video input chroma format
          Force the DirectShow video input to use a specific chroma format (eg.
          I420 (default), RV24, etc.)
      --dshow-fps=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Video input frame rate
          Force the DirectShow video input to use a specific frame rate (eg. 0
          means default, 25, 29.97, 50, 59.94, etc.)
      --dshow-config, --no-dshow-config 
                                 Device properties
                                 (default disabled)
          Show the properties dialog of the selected device before starting the
          stream.
      --dshow-tuner, --no-dshow-tuner 
                                 Tuner properties
                                 (default disabled)
          Show the tuner properties [channel selection] page.
      --dshow-tuner-channel=<integer> 
                                 Tuner TV Channel
          Set the TV channel the tuner will set to (0 means default).
      --dshow-tuner-frequency=<integer> 
                                 Tuner Frequency
          This overrides the channel. Measured in Hz.
      --dshow-tuner-country=<integer> 
                                 Tuner country code
          Set the tuner country code that establishes the current
          channel-to-frequency mapping (0 means default).
      --dshow-tuner-standard={0 (Default), 1 (NTSC_M), 2 (NTSC_M_J), 4 (NTSC_443), 16 (PAL_B), 32 (PAL_D), 64 (PAL_G), 128 (PAL_H), 256 (PAL_I), 512 (PAL_M), 1024 (PAL_N), 2048 (PAL_60), 4096 (SECAM_B), 8192 (SECAM_D), 16384 (SECAM_G), 32768 (SECAM_H), 65536 (SECAM_K), 131072 (SECAM_K1), 262144 (SECAM_L), 524288 (SECAM_L1), 1048576 (PAL_N_COMBO)} 
                                 Video standard
          Video standard
      --dshow-tuner-input={0 (Default), 1 (Cable), 2 (Antenna)} 
                                 Tuner input type
          Select the tuner input type (Cable/Antenna).
      --dshow-video-input=<integer> 
                                 Video input pin
          Select the video input source, such as composite, s-video, or tuner.
          Since these settings are hardware-specific, you should find good
          settings in the "Device config" area, and use those numbers here. -1
          means that settings will not be changed.
      --dshow-video-output=<integer> 
                                 Video output pin
          Select the video output type. See the "video input" option.
      --dshow-audio-input=<integer> 
                                 Audio input pin
          Select the audio input source. See the "video input" option.
      --dshow-audio-output=<integer> 
                                 Audio output pin
          Select the audio output type. See the "video input" option.
      --dshow-amtuner-mode={0 (Default), 1 (TV), 2 (FM radio), 4 (AM radio), 8 (DSS)} 
                                 AM Tuner mode
          AM Tuner mode. Can be one of Default (0), TV (1), AM Radio (2), FM
          Radio (3) or DSS (4).
      --dshow-audio-channels=<integer> 
                                 Number of audio channels
          Select audio input format with the given number of audio channels (if
          non 0)
      --dshow-audio-samplerate=<integer> 
                                 Audio sample rate
          Select audio input format with the given sample rate (if non 0)
      --dshow-audio-bitspersample=<integer> 
                                 Audio bits per sample
          Select audio input format with the given bits/sample (if non 0)

 Digital Cinema Package module (dcp)
      --kdm=<string>             KDM file
          Path to Key Delivery Message XML file

 Audio CD input (cdda)
      --cd-audio=<string>        Audio CD device
          This is the default Audio CD drive (or file) to use. Don't forget the
          colon after the drive letter (e.g. D:)

 [cdda:][device][@[track]]
      --cdda-track=<integer>     
      --cdda-first-sector=<integer> 
                                 
      --cdda-last-sector=<integer> 
                                 
      --cddb-server=<string>     CDDB Server
          Address of the CDDB server to use.
      --cddb-port=<integer [1 .. 65535]> 
                                 CDDB port
          CDDB Server port to use.

 Windows Audio Session API input (wasapi)
      --wasapi-loopback, --no-wasapi-loopback 
                                 Loopback mode
                                 (default disabled)
          Record an audio rendering endpoint.

 Microsoft Media Server (MMS) input (access_mms)
      --mms-timeout=<integer>    TCP/UDP timeout (ms)
          Amount of time (in ms) to wait before aborting network reception of
          data. Note that there will be 10 retries before completely giving up.
      --mms-all, --no-mms-all    Force selection of all streams
                                 (default disabled)
          MMS streams can contain several elementary streams, with different
          bitrates. You can choose to select all of them.
      --mms-maxbitrate=<integer> Maximum bitrate
          Select the stream with the maximum bitrate under that limit.

 Memory input (imem)
      --imem-get=<string>        Get function
          Address of the get callback function
      --imem-release=<string>    Release function
          Address of the release callback function
      --imem-cookie=<string>     Callback cookie string
          Text identifier for the callback functions
      --imem-data=<string>       Callback data
          Data for the get and release functions
      --imem-id=<integer>        ID
          Set the ID of the elementary stream
      --imem-group=<integer>     Group
          Set the group of the elementary stream
      --imem-cat={0 (Unknown), 1 (Audio), 2 (Video), 3 (Subtitle), 4 (Data)} 
                                 Category
          Set the category of the elementary stream
      --imem-codec=<string>      Codec
          Set the codec of the elementary stream
      --imem-language=<string>   Language
          Language of the elementary stream as described by ISO639
      --imem-samplerate=<integer> 
                                 Sample rate
          Sample rate of an audio elementary stream
      --imem-channels=<integer>  Channels count
          Channels count of an audio elementary stream
      --imem-width=<integer>     Width
          Width of video or subtitle elementary streams
      --imem-height=<integer>    Height
          Height of video or subtitle elementary streams
      --imem-dar=<string>        Display aspect ratio
          Display aspect ratio of a video elementary stream
      --imem-fps=<string>        Frame rate
          Frame rate of a video elementary stream
      --imem-size=<integer>      Size
          Size of stream in bytes

 Concatenated inputs (concat)
      --concat-list=<string>     Inputs list
          Comma-separated list of input URLs to concatenate.

 core program (core)

 Audio
 These options allow you to modify the behavior of the audio subsystem, and to add audio filters which can be used for post processing or visual effects (spectrum analyzer, etc.). Enable these filters here, and configure them in the "audio filters" modules section.
      --audio, --no-audio        Enable audio
                                 (default enabled)
          You can completely disable the audio output. The audio decoding stage
          will not take place, thus saving some processing power.
      --gain=<float [0.000000 .. 8.000000]> 
                                 Audio gain
          This linear gain will be applied to outputted audio.
      --volume-step=<float [1.000000 .. 256.000000]> 
                                 Audio output volume step
          The step size of the volume is adjustable using this option.
      --volume-save, --no-volume-save 
                                 Remember the audio volume
                                 (default enabled)
          Remember the audio volume
      --spdif, --no-spdif        Force S/PDIF support
                                 (default disabled)
          This option should be used when the audio output can't negotiate
          S/PDIF support.
      --force-dolby-surround={0 (Auto), 1 (On), 2 (Off)} 
                                 Force detection of Dolby Surround
          Use this when you know your stream is (or is not) encoded with Dolby
          Surround but fails to be detected as such. Even if the stream is not
          actually encoded with Dolby Surround, turning on this option might
          enhance your experience, especially when combined with the Headphone
          Channel Mixer.
      --stereo-mode={0 (Unset), 1 (Stereo), 2 (Reverse stereo), 3 (Left), 4 (Right), 5 (Dolby Surround), 6 (Headphones)} 
                                 Stereo audio output mode
          Stereo audio output mode
      --audio-desync=<integer>   Audio desynchronization compensation
          This delays the audio output. The delay must be given in
          milliseconds. This can be handy if you notice a lag between the video
          and the audio.
      --audio-replay-gain-mode={none,track,album} 
                                 Replay gain mode
          Select the replay gain mode
      --audio-replay-gain-preamp=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Replay preamp
          This allows you to change the default target level (89 dB) for stream
          with replay gain information
      --audio-replay-gain-default=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Default replay gain
          This is the gain used for stream without replay gain information
      --audio-replay-gain-peak-protection, --no-audio-replay-gain-peak-protection 
                                 Peak protection
                                 (default enabled)
          Protect against sound clipping
      --audio-time-stretch, --no-audio-time-stretch 
                                 Enable time stretching audio
                                 (default enabled)
          This allows playing audio at lower or higher speed without affecting
          the audio pitch
  -A, --aout={any,mmdevice,directsound,waveout,amem,afile,adummy,none} 
                                 Audio output module
          This is the audio output method used by VLC. The default behavior is
          to automatically select the best method available.
      --role={video,music,communication,game,notification,animation,production,accessibility,test} 
                                 Media role
          Media (player) role for operating system policy.
      --audio-filter=<string>    Audio filters
          This adds audio post processing filters, to modify the sound
          rendering.
      --audio-visual={any,goom,projectm,visual,glspectrum,none} 
                                 Audio visualizations
          This adds visualization modules (spectrum analyzer, etc.).
      --audio-resampler={any,samplerate,ugly,speex_resampler,none} 
                                 Audio resampler
          This selects which plugin to use for audio resampling.

 Video
 These options allow you to modify the behavior of the video output subsystem. You can for example enable video filters (deinterlacing, image adjusting, etc.). Enable these filters here and configure them in the "video filters" modules section. You can also set many miscellaneous video options.
      --video, --no-video        Enable video
                                 (default enabled)
          You can completely disable the video output. The video decoding stage
          will not take place, thus saving some processing power.
      --grayscale, --no-grayscale 
                                 Grayscale video output
                                 (default disabled)
          Output video in grayscale. As the color information aren't decoded,
          this can save some processing power.
  -f, --fullscreen, --no-fullscreen 
                                 Fullscreen video output
                                 (default disabled)
          Start video in fullscreen mode
      --embedded-video, --no-embedded-video 
                                 Embedded video
                                 (default enabled)
          Embed the video output in the main interface.
      --xlib, --no-xlib          
                                 (default enabled)
      --drop-late-frames, --no-drop-late-frames 
                                 Drop late frames
                                 (default enabled)
          This drops frames that are late (arrive to the video output after
          their intended display date).
      --skip-frames, --no-skip-frames 
                                 Skip frames
                                 (default enabled)
          Enables framedropping on MPEG2 stream. Framedropping occurs when your
          computer is not powerful enough
      --quiet-synchro, --no-quiet-synchro 
                                 Quiet synchro
                                 (default disabled)
          This avoids flooding the message log with debug output from the video
          output synchronization mechanism.
      --keyboard-events, --no-keyboard-events 
                                 Key press events
                                 (default enabled)
          This enables VLC hotkeys from the (non-embedded) video window.
      --mouse-events, --no-mouse-events 
                                 Mouse events
                                 (default enabled)
          This enables handling of mouse clicks on the video.
      --video-on-top, --no-video-on-top 
                                 Always on top
                                 (default disabled)
          Always place the video window on top of other windows.
      --video-wallpaper, --no-video-wallpaper 
                                 Enable wallpaper mode
                                 (default disabled)
          The wallpaper mode allows you to display the video as the desktop
          background.
      --disable-screensaver, --no-disable-screensaver 
                                 Disable screensaver
                                 (default enabled)
          Disable the screensaver during video playback.
      --video-title-show, --no-video-title-show 
                                 Show media title on video
                                 (default disabled)
          Display the title of the video on top of the movie.
      --video-title-timeout=<integer> 
                                 Show video title for x milliseconds
          Show the video title for n milliseconds, default is 5000 ms (5 sec.)
      --video-title-position={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)} 
                                 Position of video title
          Place on video where to display the title (default bottom center).
      --mouse-hide-timeout=<integer> 
                                 Hide cursor and fullscreen controller after x
                                 milliseconds
          Hide mouse cursor and fullscreen controller after n milliseconds.
   Snapshot:
      --snapshot-path=<string>   Video snapshot directory (or filename)
          Directory where the video snapshots will be stored.
      --snapshot-prefix=<string> Video snapshot file prefix
          Video snapshot file prefix
      --snapshot-format={png,jpg,tiff} 
                                 Video snapshot format
          Image format which will be used to store the video snapshots
      --snapshot-preview, --no-snapshot-preview 
                                 Display video snapshot preview
                                 (default enabled)
          Display the snapshot preview in the screen's top-left corner.
      --snapshot-sequential, --no-snapshot-sequential 
                                 Use sequential numbers instead of timestamps
                                 (default disabled)
          Use sequential numbers instead of timestamps for snapshot numbering
      --snapshot-width=<integer> Video snapshot width
          You can enforce the width of the video snapshot. By default it will
          keep the original width (-1). Using 0 will scale the width to keep
          the aspect ratio.
      --snapshot-height=<integer> 
                                 Video snapshot height
          You can enforce the height of the video snapshot. By default it will
          keep the original height (-1). Using 0 will scale the height to keep
          the aspect ratio.
   Window properties:
      --width=<integer>          Video width
          You can enforce the video width. By default (-1) VLC will adapt to
          the video characteristics.
      --height=<integer>         Video height
          You can enforce the video height. By default (-1) VLC will adapt to
          the video characteristics.
      --video-x=<integer>        Video X coordinate
          You can enforce the position of the top left corner of the video
          window (X coordinate).
      --video-y=<integer>        Video Y coordinate
          You can enforce the position of the top left corner of the video
          window (Y coordinate).
      --crop=<string>            Video cropping
          This forces the cropping of the source video. Accepted formats are
          x:y (4:3, 16:9, etc.) expressing the global image aspect.
      --custom-crop-ratios=<string> 
                                 Custom crop ratios list
          Comma separated list of crop ratios which will be added in the
          interface's crop ratios list.
      --aspect-ratio=<string>    Source aspect ratio
          This forces the source aspect ratio. For instance, some DVDs claim to
          be 16:9 while they are actually 4:3. This can also be used as a hint
          for VLC when a movie does not have aspect ratio information. Accepted
          formats are x:y (4:3, 16:9, etc.) expressing the global image aspect,
          or a float value (1.25, 1.3333, etc.) expressing pixel squareness.
      --autoscale, --no-autoscale 
                                 Video Auto Scaling
                                 (default enabled)
          Let the video scale to fit a given window or fullscreen.
      --monitor-par=<string>     Monitor pixel aspect ratio
          This forces the monitor aspect ratio. Most monitors have square
          pixels (1:1). If you have a 16:9 screen, you might need to change
          this to 4:3 in order to keep proportions.
      --custom-aspect-ratios=<string> 
                                 Custom aspect ratios list
          Comma separated list of aspect ratios which will be added in the
          interface's aspect ratio list.
      --hdtv-fix, --no-hdtv-fix  Fix HDTV height
                                 (default enabled)
          This allows proper handling of HDTV-1080 video format even if broken
          encoder incorrectly sets height to 1088 lines. You should only
          disable this option if your video has a non-standard format requiring
          all 1088 lines.
      --video-deco, --no-video-deco 
                                 Window decorations
                                 (default enabled)
          VLC can avoid creating window caption, frames, etc... around the
          video, giving a "minimal" window.
      --video-title=<string>     Video title
          Custom title for the video window (in case the video is not embedded
          in the interface).
      --align={0 (Center), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)} 
                                 Video alignment
          Enforce the alignment of the video in its window. By default (0) it
          will be centered (0=center, 1=left, 2=right, 4=top, 8=bottom, you can
          also use combinations of these values, like 6=4+2 meaning top-right).
      --zoom=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Zoom video
          You can zoom the video by the specified factor.
      --deinterlace={0 (Off), -1 (Automatic), 1 (On)} 
                                 Deinterlace
          Deinterlace
      --deinterlace-mode={auto,discard,blend,mean,bob,linear,x,yadif,yadif2x,phosphor,ivtc} 
                                 Deinterlace mode
          Deinterlace method to use for video processing.
  -V, --vout={any,direct3d11,direct3d9,glwin32,gl,directdraw,wingdi,caca,vdummy,vmem,flaschen,yuv,vdummy,none} 
                                 Video output module
          This is the the video output method used by VLC. The default behavior
          is to automatically select the best method available.
      --video-filter=<string>    Video filter module
          This adds post-processing filters to enhance the picture quality, for
          instance deinterlacing, or distort the video.
      --video-splitter=<string>  Video splitter module
          This adds video splitters like clone or wall

 Subpictures
 These options allow you to modify the behavior of the subpictures subsystem. You can for example enable subpictures sources (logo, etc.). Enable these filters here and configure them in the "subsources filters" modules section. You can also set many miscellaneous subpictures options.
   On Screen Display:
      --spu, --no-spu            Enable sub-pictures
                                 (default enabled)
          You can completely disable the sub-picture processing.
      --osd, --no-osd            On Screen Display
                                 (default enabled)
          VLC can display messages on the video. This is called OSD (On Screen
          Display).
      --text-renderer={any,freetype,tdummy,sapi,none} 
                                 Text rendering module
          VLC normally uses Freetype for rendering, but this allows you to use
          svg for instance.
   Subtitles:
      --sub-file=<string>        Use subtitle file
          Load this subtitle file. To be used when autodetect cannot detect
          your subtitle file.
      --sub-autodetect-file, --no-sub-autodetect-file 
                                 Autodetect subtitle files
                                 (default enabled)
          Automatically detect a subtitle file, if no subtitle filename is
          specified (based on the filename of the movie).
      --sub-autodetect-fuzzy=<integer> 
                                 Subtitle autodetection fuzziness
          This determines how fuzzy subtitle and movie filename matching will
          be. Options are: 0 = no subtitles autodetected 1 = any subtitle file
          2 = any subtitle file containing the movie name 3 = subtitle file
          matching the movie name with additional chars 4 = subtitle file
          matching the movie name exactly
      --sub-autodetect-path=<string> 
                                 Subtitle autodetection paths
          Look for a subtitle file in those paths too, if your subtitle file
          was not found in the current directory.
      --sub-margin=<integer>     Force subtitle position
          You can use this option to place the subtitles under the movie,
          instead of over the movie. Try several positions.
      --sub-text-scale=<integer [10 .. 500]> 
                                 Subtitles text scaling factor
          Changes the subtitles size where possible
   Overlays:
      --sub-source=<string>      Subpictures source module
          This adds so-called "subpicture sources". These filters overlay some
          images or text over the video (like a logo, arbitrary text, ...).
      --sub-filter=<string>      Subpictures filter module
          This adds so-called "subpicture filters". These filter subpictures
          created by subtitle decoders or other subpictures sources.
   Track settings:
      --program=<integer>        Program
          Choose the program to select by giving its Service ID. Only use this
          option if you want to read a multi-program stream (like DVB streams
          for example).
      --programs=<string>        Programs
          Choose the programs to select by giving a comma-separated list of
          Service IDs (SIDs). Only use this option if you want to read a
          multi-program stream (like DVB streams for example).
      --audio-track=<integer>    Audio track
          Stream number of the audio track to use (from 0 to n).
      --sub-track=<integer>      Subtitle track
          Stream number of the subtitle track to use (from 0 to n).
      --audio-language=<string>  Audio language
          Language of the audio track you want to use (comma separated, two or
          three letter country code, you may use 'none' to avoid a fallback to
          another language).
      --sub-language=<string>    Subtitle language
          Language of the subtitle track you want to use (comma separated, two
          or three letters country code, you may use 'any' as a fallback).
      --menu-language=<string>   Menu language
          Language of the menus you want to use with DVD/BluRay (comma
          separated, two or three letters country code, you may use 'any' as a
          fallback).
      --audio-track-id=<integer> Audio track ID
          Stream ID of the audio track to use.
      --sub-track-id=<integer>   Subtitle track ID
          Stream ID of the subtitle track to use.
      --captions={608 (EIA/CEA 608), 708 (CEA 708)} 
                                 Preferred Closed Captions decoder
          Preferred Closed Captions decoder
      --preferred-resolution={-1 (Best available), 1080 (Full HD (1080p)), 720 (HD (720p)), 576 (Standard Definition (576 or 480 lines)), 360 (Low Definition (360 lines)), 240 (Very Low Definition (240 lines))} 
                                 Preferred video resolution
          When several video formats are available, select one whose resolution
          is closest to (but not higher than) this setting, in number of lines.
          Use this option if you don't have enough CPU power or network
          bandwidth to play higher resolutions.
   Playback control:
      --input-repeat=<integer [0 .. 65535]> 
                                 Input repetitions
          Number of time the same input will be repeated
      --start-time=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Start time
          The stream will start at this position (in seconds).
      --stop-time=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Stop time
          The stream will stop at this position (in seconds).
      --run-time=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Run time
          The stream will run this duration (in seconds).
      --input-fast-seek, --no-input-fast-seek 
                                 Fast seek
                                 (default disabled)
          Favor speed over precision while seeking
      --rate=<float [-340282346638528859811704183484516925440.000000 .. 340282346638528859811704183484516925440.000000]> 
                                 Playback speed
          This defines the playback speed (nominal speed is 1.0).
      --input-list=<string>      Input list
          You can give a comma-separated list of inputs that will be
          concatenated together after the normal one.
      --input-slave=<string>     Input slave (experimental)
          This allows you to play from several inputs at the same time. This
          feature is experimental, not all formats are supported. Use a '#'
          separated list of inputs.
      --bookmarks=<string>       Bookmarks list for a stream
          You can manually give a list of bookmarks for a stream in the form
          "{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-of
          fset},{...}"
   Default devices:
      --dvd=<string>             DVD device
          This is the default DVD drive (or file) to use. Don't forget the
          colon after the drive letter (e.g. D:)
      --vcd=<string>             VCD device
          This is the default VCD drive (or file) to use. Don't forget the
          colon after the drive letter (e.g. D:)
   Network settings:
      --mtu=<integer>            MTU of the network interface
          This is the maximum application-layer packet size that can be
          transmitted over the network (in bytes).
      --ipv4-timeout=<integer [0 .. 2147483647]> 
                                 TCP connection timeout
          Default TCP connection timeout (in milliseconds).
      --http-host=<string>       HTTP server address
          By default, the server will listen on any local IP address. Specify
          an IP address (e.g. ::1 or 127.0.0.1) or a host name (e.g. localhost)
          to restrict them to a specific network interface.
      --http-port=<integer [1 .. 65535]> 
                                 HTTP server port
          The HTTP server will listen on this TCP port. The standard HTTP port
          number is 80. However allocation of port numbers below 1025 is
          usually restricted by the operating system.
      --https-port=<integer [1 .. 65535]> 
                                 HTTPS server port
          The HTTPS server will listen on this TCP port. The standard HTTPS
          port number is 443. However allocation of port numbers below 1025 is
          usually restricted by the operating system.
      --rtsp-host=<string>       RTSP server address
          This defines the address the RTSP server will listen on, along with
          the base path of the RTSP VOD media. Syntax is address/path. By
          default, the server will listen on any local IP address. Specify an
          IP address (e.g. ::1 or 127.0.0.1) or a host name (e.g. localhost) to
          restrict them to a specific network interface.
      --rtsp-port=<integer [1 .. 65535]> 
                                 RTSP server port
          The RTSP server will listen on this TCP port. The standard RTSP port
          number is 554. However allocation of port numbers below 1025 is
          usually restricted by the operating system.
      --http-cert=<string>       HTTP/TLS server certificate
          This X.509 certicate file (PEM format) is used for server-side TLS.
          On OS X, the string is used as a label to search the certificate in
          the keychain.
      --http-key=<string>        HTTP/TLS server private key
          This private key file (PEM format) is used for server-side TLS.
      --http-proxy=<string>      HTTP proxy
          HTTP proxy to be used It must be of the form
          http://[user@]myproxy.mydomain:myport/ ; if empty, the http_proxy
          environment variable will be tried.
      --http-proxy-pwd=<string>  HTTP proxy password
          If your HTTP proxy requires a password, set it here.
   Socks proxy:
      --socks=<string>           SOCKS server
          SOCKS proxy server to use. This must be of the form address:port. It
          will be used for all TCP connections
      --socks-user=<string>      SOCKS user name
          User name to be used for connection to the SOCKS proxy.
      --socks-pwd=<string>       SOCKS password
          Password to be used for connection to the SOCKS proxy.
   Metadata:
      --meta-title=<string>      Title metadata
          Allows you to specify a "title" metadata for an input.
      --meta-author=<string>     Author metadata
          Allows you to specify an "author" metadata for an input.
      --meta-artist=<string>     Artist metadata
          Allows you to specify an "artist" metadata for an input.
      --meta-genre=<string>      Genre metadata
          Allows you to specify a "genre" metadata for an input.
      --meta-copyright=<string>  Copyright metadata
          Allows you to specify a "copyright" metadata for an input.
      --meta-description=<string> 
                                 Description metadata
          Allows you to specify a "description" metadata for an input.
      --meta-date=<string>       Date metadata
          Allows you to specify a "date" metadata for an input.
      --meta-url=<string>        URL metadata
          Allows you to specify a "url" metadata for an input.
   Advanced:
      --file-caching=<integer [0 .. 60000]> 
                                 File caching (ms)
          Caching value for local files, in milliseconds.
      --live-caching=<integer [0 .. 60000]> 
                                 Live capture caching (ms)
          Caching value for cameras and microphones, in milliseconds.
      --disc-caching=<integer [0 .. 60000]> 
                                 Disc caching (ms)
          Caching value for optical media, in milliseconds.
      --network-caching=<integer [0 .. 60000]> 
                                 Network caching (ms)
          Caching value for network resources, in milliseconds.
      --cr-average=<integer>     Clock reference average counter
          When using the PVR input (or a very irregular source), you should set
          this to 10000.
      --clock-synchro={-1 (Default), 0 (Disable), 1 (Enable)} 
                                 Clock synchronisation
          It is possible to disable the input clock synchronisation for
          real-time sources. Use this if you experience jerky playback of
          network streams.
      --clock-jitter=<integer>   Clock jitter
          This defines the maximum input delay jitter that the synchronization
          algorithms should try to compensate (in milliseconds).
      --network-synchronisation, --no-network-synchronisation 
                                 Network synchronisation
                                 (default disabled)
          This allows you to remotely synchronise clocks for server and client.
          The detailed settings are available in Advanced / Network Sync.
      --input-record-path=<string> 
                                 Record directory
          Directory where the records will be stored
      --input-record-native, --no-input-record-native 
                                 Prefer native stream recording
                                 (default enabled)
          When possible, the input stream will be recorded instead of using the
          stream output module
      --input-timeshift-path=<string> 
                                 Timeshift directory
          Directory used to store the timeshift temporary files.
      --input-timeshift-granularity=<integer> 
                                 Timeshift granularity
          This is the maximum size in bytes of the temporary files that will be
          used to store the timeshifted streams.
      --input-title-format=<string> 
                                 Change title according to current media
          This option allows you to set the title according to what's being
          played<br>$a: Artist<br>$b: Album<br>$c: Copyright<br>$t:
          Title<br>$g: Genre<br>$n: Track num<br>$p: Now playing<br>$A:
          Date<br>$D: Duration<br>$Z: "Now playing" (Fall back on Title -
          Artist)
      --lua, --no-lua            Disable all lua plugins
                                 (default enabled)
          Disable all lua plugins

 Decoders
 This option can be used to alter the way VLC selects its codecs (decompression methods). Only advanced users should alter this option as it can break playback of all your streams.
      --codec=<string>           Preferred decoders list
          List of codecs that VLC will use in priority. For instance,
          'dummy,a52' will try the dummy and a52 codecs before trying the other
          ones. Only advanced users should alter this option as it can break
          playback of all your streams.
      --encoder=<string>         Preferred encoders list
          This allows you to select a list of encoders that VLC will use in
          priority.

 Input
 These options allow you to modify the behavior of the input subsystem, such as the DVD or VCD device, the network interface settings or the subtitle channel.
      --access={any,satip,vdr,filesystem,filesystem,access_realrtsp,access,dtv,dshow,imem,ftp,cdda,attachment,http,imem_access,nfs,concat,sdp,sftp,smb,tcp,udp,vcd,upnp,avcodec,access_mms,none} 
                                 Access module
          This allows you to force an access module. You can use it if the
          correct access is not automatically detected. You should not set this
          as a global option unless you really know what you are doing.
      --demux={any,mp4,avi,asf,es,flacsys,mpc,nuv,tta,wav,caf,sid,sap,ogg,mkv,live555,smf,adaptive,ts,xa,gme,aiff,directory,rawvid,image,pva,voc,mod,au,nsv,ps,ty,h26x,h26x,dvdnav,libbluray,mpgv,mjpeg,rawdv,demux_cdg,nsc,webvtt,ttml,avcodec,ps,vobsub,demux_stl,vc1,es,subtitle,real,demuxdump,stats,rawaud,webvtt,none} 
                                 Demux module
          Demultiplexers are used to separate the "elementary" streams (like
          audio and video streams). You can use it if the correct demuxer is
          not automatically detected. You should not set this as a global
          option unless you really know what you are doing.
      --stream-filter=<string>   Stream filter module
          Stream filters are used to modify the stream that is being read.
      --demux-filter=<string>    Demux filter module
          Demux filters are used to modify/control the stream that is being
          read.

 Stream output
 These options allow you to set default global options for the stream output subsystem.
      --sout=<string>            Default stream output chain
          You can enter here a default stream output chain. Refer to the
          documentation to learn how to build such chains. Warning: this chain
          will be enabled for all streams.
      --sout-display, --no-sout-display 
                                 Display while streaming
                                 (default disabled)
          Play locally the stream while streaming it.
      --sout-keep, --no-sout-keep 
                                 Keep stream output open
                                 (default disabled)
          This allows you to keep an unique stream output instance across
          multiple playlist item (automatically insert the gather stream output
          if not specified)
      --sout-all, --no-sout-all  Enable streaming of all ES
                                 (default enabled)
          Stream all elementary streams (video, audio and subtitles)
      --sout-audio, --no-sout-audio 
                                 Enable audio stream output
                                 (default enabled)
          Choose whether the audio stream should be redirected to the stream
          output facility when this last one is enabled.
      --sout-video, --no-sout-video 
                                 Enable video stream output
                                 (default enabled)
          Choose whether the video stream should be redirected to the stream
          output facility when this last one is enabled.
      --sout-spu, --no-sout-spu  Enable SPU stream output
                                 (default enabled)
          Choose whether the SPU streams should be redirected to the stream
          output facility when this last one is enabled.
      --sout-mux-caching=<integer> 
                                 Stream output muxer caching (ms)
          This allow you to configure the initial caching amount for stream
          output muxer. This value should be set in milliseconds.
   VLM:
      --vlm-conf=<string>        VLM configuration file
          Read a VLM configuration file as soon as VLM is started.
      --sap-interval=<integer>   SAP announcement interval
          When the SAP flow control is disabled, this lets you set the fixed
          interval between SAP announcements.
      --mux={any,mux_ts,ps,mux_ogg,asf,wav,mpjpeg,dummy,mp4,avi,avcodec,mp4,none} 
                                 Mux module
          This is a legacy entry to let you configure mux modules
      --access_output={any,file,dummy,ftp,http,access_output_livehttp,access_output_shout,udp,stream_out_chromecast,avcodec,none} 
                                 Access output module
          This is a legacy entry to let you configure access output modules
      --ttl=<integer>            Hop limit (TTL)
          This is the hop limit (also known as "Time-To-Live" or TTL) of the
          multicast packets sent by the stream output (-1 = use operating
          system built-in default).
      --miface=<string>          Multicast output interface
          Default multicast interface. This overrides the routing table.
      --dscp=<integer>           DiffServ Code Point
          Differentiated Services Code Point for outgoing UDP streams (or IPv4
          Type Of Service, or IPv6 Traffic Class). This is used for network
          Quality of Service.
      --packetizer={any,aes3,theora,speex,lpcm,rawvideo,vorbis,spudec,svcdsub,mpegvideo,cvdsub,mpeg4video,vc1,mpeg4audio,mlp,flac,h264,hevc,avcodec,oggspots,mpegaudio,a52,dts,copy,none} 
                                 Preferred packetizer list
          This allows you to select the order in which VLC will choose its
          packetizers.

 Miscellaneous
 These options allow you to select default modules. Leave these alone unless you really know what you are doing.
   Special modules:
      --vod-server={any,stream_out_rtp,rtsp,none} 
                                 VoD server module
          You can select which VoD server module you want to use. Set this to
          'vod_rtsp' to switch back to the old, legacy module.
   Plugins:
      --plugins-cache, --no-plugins-cache 
                                 Use a plugins cache
                                 (default enabled)
          Use a plugins cache which will greatly improve the startup time of
          VLC.
      --plugins-scan, --no-plugins-scan 
                                 Scan for new plugins
                                 (default enabled)
          Scan plugin directories for new plugins at startup. This increases
          the startup time of VLC.
      --keystore=<string>        Preferred keystore list
          List of keystores that VLC will use in priority.
   Performance options:
      --high-priority, --no-high-priority 
                                 Increase the priority of the process
                                 (default disabled)
          Increasing the priority of the process will very likely improve your
          playing experience as it allows VLC not to be disturbed by other
          applications that could otherwise take too much processor time.
          However be advised that in certain circumstances (bugs) VLC could
          take all the processor time and render the whole system unresponsive
          which might require a reboot of your machine.
      --clock-source={,interrupt,tick,multimedia,perf,wall} 
                                 Clock source
          Clock source

 Playlist
 These options define the behavior of the playlist. Some of them can be overridden in the playlist dialog box.
  -Z, --random, --no-random      Play files randomly forever
                                 (default disabled)
          VLC will randomly play files in the playlist until interrupted.
  -L, --loop, --no-loop          Repeat all
                                 (default disabled)
          VLC will keep playing the playlist indefinitely.
  -R, --repeat, --no-repeat      Repeat current item
                                 (default disabled)
          VLC will keep playing the current playlist item.
      --play-and-exit, --no-play-and-exit 
                                 Play and exit
                                 (default disabled)
          Exit if there are no more items in the playlist.
      --play-and-stop, --no-play-and-stop 
                                 Play and stop
                                 (default disabled)
          Stop the playlist after each played playlist item.
      --play-and-pause, --no-play-and-pause 
                                 Play and pause
                                 (default disabled)
          Pause each item in the playlist on the last frame.
      --start-paused, --no-start-paused 
                                 Start paused
                                 (default disabled)
          Pause each item in the playlist on the first frame.
      --playlist-autostart, --no-playlist-autostart 
                                 Auto start
                                 (default enabled)
          Automatically start playing the playlist content once it's loaded.
      --playlist-cork, --no-playlist-cork 
                                 Pause on audio communication
                                 (default enabled)
          If pending audio communication is detected, playback will be paused
          automatically.
      --one-instance, --no-one-instance 
                                 Allow only one running instance
                                 (default disabled)
          Allowing only one running instance of VLC can sometimes be useful,
          for example if you associated VLC with some media types and you don't
          want a new instance of VLC to be opened each time you open a file in
          your file manager. This option will allow you to play the file with
          the already running instance or enqueue it.
      --started-from-file, --no-started-from-file 
                                 VLC is started from file association
                                 (default disabled)
          Tell VLC that it is being launched due to a file association in the
          OS
      --one-instance-when-started-from-file, --no-one-instance-when-started-from-file 
                                 Use only one instance when started from file
                                 manager
                                 (default enabled)
          Use only one instance when started from file manager
      --playlist-enqueue, --no-playlist-enqueue 
                                 Enqueue items into playlist in one instance
                                 mode
                                 (default disabled)
          When using the one instance only option, enqueue items to playlist
          and keep playing current item.
      --media-library, --no-media-library 
                                 Use media library
                                 (default disabled)
          The media library is automatically saved and reloaded each time you
          start VLC.
      --playlist-tree, --no-playlist-tree 
                                 Display playlist tree
                                 (default disabled)
          The playlist can use a tree to categorize some items, like the
          contents of a directory.
      --open=<string>            Default stream
          This stream will always be opened at VLC startup.
      --auto-preparse, --no-auto-preparse 
                                 Automatically preparse items
                                 (default enabled)
          Automatically preparse items added to the playlist (to retrieve some
          metadata).
      --preparse-timeout=<integer> 
                                 Preparsing timeout
          Maximum time allowed to preparse an item, in milliseconds
      --metadata-network-access, --no-metadata-network-access 
                                 Allow metadata network access
                                 (default enabled)
          Allow metadata network access
      --recursive={none,collapse,expand} 
                                 Subdirectory behavior
          Select whether subdirectories must be expanded. none: subdirectories
          do not appear in the playlist. collapse: subdirectories appear but
          are expanded on first play. expand: all subdirectories are expanded. 
      --ignore-filetypes=<string> 
                                 Ignored extensions
          Files with these extensions will not be added to playlist when
          opening a directory. This is useful if you add directories that
          contain playlist files for instance. Use a comma-separated list of
          extensions.
      --show-hiddenfiles, --no-show-hiddenfiles 
                                 Show hidden files
                                 (default disabled)
          Ignore files starting with '.'
      --extractor-flatten, --no-extractor-flatten 
                                 Flatten files listed by extractors (archive)
                                 (default disabled)
  -S, --services-discovery=<string> 
                                 Services discovery modules
          Specifies the services discovery modules to preload, separated by
          colons. Typical value is "sap".
  -v, --verbose=<integer>        Verbosity (0,1,2)
          This is the verbosity level (0=only errors and standard messages,
          1=warnings, 2=debug).
      --color, --no-color        Color messages
                                 (default enabled)
          This enables colorization of the messages sent to the console. Your
          terminal needs Linux color support for this to work.
      --advanced, --no-advanced  Show advanced options
                                 (default disabled)
          When this is enabled, the preferences and/or interfaces will show all
          available options, including those that most users should never
          touch.
      --interact, --no-interact  Interface interaction
                                 (default enabled)
          When this is enabled, the interface will show a dialog box each time
          some user input is required.
      --stats, --no-stats        Locally collect statistics
                                 (default enabled)
          Collect miscellaneous local statistics about the playing media.
  -I, --intf=<string>            Interface module
          This is the main interface used by VLC. The default behavior is to
          automatically select the best module available.
      --extraintf=<string>       Extra interface modules
          You can select "additional interfaces" for VLC. They will be launched
          in the background in addition to the default interface. Use a colon
          separated list of interface modules. (common values are "rc" (remote
          control), "http", "gestures" ...)
      --control=<string>         Control interfaces
          You can select control interfaces for VLC.

 Hot keys
 These settings are the global VLC key bindings, known as "hotkeys".
      --hotkeys-y-wheel-mode={-1 (Ignore), 0 (Volume control), 2 (Position control), 3 (Position control reversed)} 
                                 Mouse wheel vertical axis control
          The mouse wheel vertical (up/down) axis can control volume, position
          or be ignored.
      --hotkeys-x-wheel-mode={-1 (Ignore), 0 (Volume control), 2 (Position control), 3 (Position control reversed)} 
                                 Mouse wheel horizontal axis control
          The mouse wheel horizontal (left/right) axis can control volume,
          position or be ignored.
      --global-key-toggle-fullscreen=<string> 
                                 Fullscreen
          Select the hotkey to use to swap fullscreen state.
      --key-toggle-fullscreen=<string> 
                                 Fullscreen
          Select the hotkey to use to swap fullscreen state.
      --global-key-leave-fullscreen=<string> 
                                 Exit fullscreen
          Select the hotkey to use to exit fullscreen state.
      --key-leave-fullscreen=<string> 
                                 Exit fullscreen
          Select the hotkey to use to exit fullscreen state.
      --global-key-play-pause=<string> 
                                 Play/Pause
          Select the hotkey to use to swap paused state.
      --key-play-pause=<string>  Play/Pause
          Select the hotkey to use to swap paused state.
      --global-key-pause=<string> 
                                 Pause only
          Select the hotkey to use to pause.
      --key-pause=<string>       Pause only
          Select the hotkey to use to pause.
      --global-key-play=<string> Play only
          Select the hotkey to use to play.
      --key-play=<string>        Play only
          Select the hotkey to use to play.
      --global-key-faster=<string> 
                                 Faster
          Select the hotkey to use for fast forward playback.
      --key-faster=<string>      Faster
          Select the hotkey to use for fast forward playback.
      --global-key-slower=<string> 
                                 Slower
          Select the hotkey to use for slow motion playback.
      --key-slower=<string>      Slower
          Select the hotkey to use for slow motion playback.
      --global-key-rate-normal=<string> 
                                 Normal rate
          Select the hotkey to set the playback rate back to normal.
      --key-rate-normal=<string> Normal rate
          Select the hotkey to set the playback rate back to normal.
      --global-key-rate-faster-fine=<string> 
                                 Faster (fine)
          Select the hotkey to use for fast forward playback.
      --key-rate-faster-fine=<string> 
                                 Faster (fine)
          Select the hotkey to use for fast forward playback.
      --global-key-rate-slower-fine=<string> 
                                 Slower (fine)
          Select the hotkey to use for slow motion playback.
      --key-rate-slower-fine=<string> 
                                 Slower (fine)
          Select the hotkey to use for slow motion playback.
      --global-key-next=<string> Next
          Select the hotkey to use to skip to the next item in the playlist.
      --key-next=<string>        Next
          Select the hotkey to use to skip to the next item in the playlist.
      --global-key-prev=<string> Previous
          Select the hotkey to use to skip to the previous item in the
          playlist.
      --key-prev=<string>        Previous
          Select the hotkey to use to skip to the previous item in the
          playlist.
      --global-key-stop=<string> Stop
          Select the hotkey to stop playback.
      --key-stop=<string>        Stop
          Select the hotkey to stop playback.
      --global-key-position=<string> 
                                 Position
          Select the hotkey to display the position.
      --key-position=<string>    Position
          Select the hotkey to display the position.
      --global-key-jump-extrashort=<string> 
                                 Very short backwards jump
          Select the hotkey to make a very short backwards jump.
      --key-jump-extrashort=<string> 
                                 Very short backwards jump
          Select the hotkey to make a very short backwards jump.
      --global-key-jump+extrashort=<string> 
                                 Very short forward jump
          Select the hotkey to make a very short forward jump.
      --key-jump+extrashort=<string> 
                                 Very short forward jump
          Select the hotkey to make a very short forward jump.
      --global-key-jump-short=<string> 
                                 Short backwards jump
          Select the hotkey to make a short backwards jump.
      --key-jump-short=<string>  Short backwards jump
          Select the hotkey to make a short backwards jump.
      --global-key-jump+short=<string> 
                                 Short forward jump
          Select the hotkey to make a short forward jump.
      --key-jump+short=<string>  Short forward jump
          Select the hotkey to make a short forward jump.
      --global-key-jump-medium=<string> 
                                 Medium backwards jump
          Select the hotkey to make a medium backwards jump.
      --key-jump-medium=<string> Medium backwards jump
          Select the hotkey to make a medium backwards jump.
      --global-key-jump+medium=<string> 
                                 Medium forward jump
          Select the hotkey to make a medium forward jump.
      --key-jump+medium=<string> Medium forward jump
          Select the hotkey to make a medium forward jump.
      --global-key-jump-long=<string> 
                                 Long backwards jump
          Select the hotkey to make a long backwards jump.
      --key-jump-long=<string>   Long backwards jump
          Select the hotkey to make a long backwards jump.
      --global-key-jump+long=<string> 
                                 Long forward jump
          Select the hotkey to make a long forward jump.
      --key-jump+long=<string>   Long forward jump
          Select the hotkey to make a long forward jump.
      --global-key-frame-next=<string> 
                                 Next frame
          Select the hotkey to got to the next video frame.
      --key-frame-next=<string>  Next frame
          Select the hotkey to got to the next video frame.
      --global-key-nav-activate=<string> 
                                 Activate
          Select the key to activate selected item in DVD menus.
      --key-nav-activate=<string> 
                                 Activate
          Select the key to activate selected item in DVD menus.
      --global-key-nav-up=<string> 
                                 Navigate up
          Select the key to move the selector up in DVD menus / Move viewpoint
          to up (pitch).
      --key-nav-up=<string>      Navigate up
          Select the key to move the selector up in DVD menus / Move viewpoint
          to up (pitch).
      --global-key-nav-down=<string> 
                                 Navigate down
          Select the key to move the selector down in DVD menus / Move
          viewpoint to down (pitch).
      --key-nav-down=<string>    Navigate down
          Select the key to move the selector down in DVD menus / Move
          viewpoint to down (pitch).
      --global-key-nav-left=<string> 
                                 Navigate left
          Select the key to move the selector left in DVD menus / Move
          viewpoint to left (yaw).
      --key-nav-left=<string>    Navigate left
          Select the key to move the selector left in DVD menus / Move
          viewpoint to left (yaw).
      --global-key-nav-right=<string> 
                                 Navigate right
          Select the key to move the selector right in DVD menus / Move
          viewpoint to right (yaw).
      --key-nav-right=<string>   Navigate right
          Select the key to move the selector right in DVD menus / Move
          viewpoint to right (yaw).
      --global-key-disc-menu=<string> 
                                 Go to the DVD menu
          Select the key to take you to the DVD menu
      --key-disc-menu=<string>   Go to the DVD menu
          Select the key to take you to the DVD menu
      --global-key-title-prev=<string> 
                                 Select previous DVD title
          Select the key to choose the previous title from the DVD
      --key-title-prev=<string>  Select previous DVD title
          Select the key to choose the previous title from the DVD
      --global-key-title-next=<string> 
                                 Select next DVD title
          Select the key to choose the next title from the DVD
      --key-title-next=<string>  Select next DVD title
          Select the key to choose the next title from the DVD
      --global-key-chapter-prev=<string> 
                                 Select prev DVD chapter
          Select the key to choose the previous chapter from the DVD
      --key-chapter-prev=<string> 
                                 Select prev DVD chapter
          Select the key to choose the previous chapter from the DVD
      --global-key-chapter-next=<string> 
                                 Select next DVD chapter
          Select the key to choose the next chapter from the DVD
      --key-chapter-next=<string> 
                                 Select next DVD chapter
          Select the key to choose the next chapter from the DVD
      --global-key-quit=<string> Quit
          Select the hotkey to quit the application.
      --key-quit=<string>        Quit
          Select the hotkey to quit the application.
      --global-key-vol-up=<string> 
                                 Volume up
          Select the key to increase audio volume.
      --key-vol-up=<string>      Volume up
          Select the key to increase audio volume.
      --global-key-vol-down=<string> 
                                 Volume down
          Select the key to decrease audio volume.
      --key-vol-down=<string>    Volume down
          Select the key to decrease audio volume.
      --global-key-vol-mute=<string> 
                                 Mute
          Select the key to mute audio.
      --key-vol-mute=<string>    Mute
          Select the key to mute audio.
      --global-key-subdelay-up=<string> 
                                 Subtitle delay up
          Select the key to increase the subtitle delay.
      --key-subdelay-up=<string> Subtitle delay up
          Select the key to increase the subtitle delay.
      --global-key-subdelay-down=<string> 
                                 Subtitle delay down
          Select the key to decrease the subtitle delay.
      --key-subdelay-down=<string> 
                                 Subtitle delay down
          Select the key to decrease the subtitle delay.
      --global-key-subsync-markaudio=<string> 
                                 Subtitle sync / bookmark audio timestamp
          Select the key to bookmark audio timestamp when syncing subtitles.
      --key-subsync-markaudio=<string> 
                                 Subtitle sync / bookmark audio timestamp
          Select the key to bookmark audio timestamp when syncing subtitles.
      --global-key-subsync-marksub=<string> 
                                 Subtitle sync / bookmark subtitle timestamp
          Select the key to bookmark subtitle timestamp when syncing subtitles.
      --key-subsync-marksub=<string> 
                                 Subtitle sync / bookmark subtitle timestamp
          Select the key to bookmark subtitle timestamp when syncing subtitles.
      --global-key-subsync-apply=<string> 
                                 Subtitle sync / synchronize audio & subtitle
                                 timestamps
          Select the key to synchronize bookmarked audio & subtitle timestamps.
      --key-subsync-apply=<string> 
                                 Subtitle sync / synchronize audio & subtitle
                                 timestamps
          Select the key to synchronize bookmarked audio & subtitle timestamps.
      --global-key-subsync-reset=<string> 
                                 Subtitle sync / reset audio & subtitle
                                 synchronization
          Select the key to reset synchronization of audio & subtitle
          timestamps.
      --key-subsync-reset=<string> 
                                 Subtitle sync / reset audio & subtitle
                                 synchronization
          Select the key to reset synchronization of audio & subtitle
          timestamps.
      --global-key-subpos-up=<string> 
                                 Subtitle position up
          Select the key to move subtitles higher.
      --key-subpos-up=<string>   Subtitle position up
          Select the key to move subtitles higher.
      --global-key-subpos-down=<string> 
                                 Subtitle position down
          Select the key to move subtitles lower.
      --key-subpos-down=<string> Subtitle position down
          Select the key to move subtitles lower.
      --global-key-audiodelay-up=<string> 
                                 Audio delay up
          Select the key to increase the audio delay.
      --key-audiodelay-up=<string> 
                                 Audio delay up
          Select the key to increase the audio delay.
      --global-key-audiodelay-down=<string> 
                                 Audio delay down
          Select the key to decrease the audio delay.
      --key-audiodelay-down=<string> 
                                 Audio delay down
          Select the key to decrease the audio delay.
      --global-key-audio-track=<string> 
                                 Cycle audio track
          Cycle through the available audio tracks(languages).
      --key-audio-track=<string> Cycle audio track
          Cycle through the available audio tracks(languages).
      --global-key-audiodevice-cycle=<string> 
                                 Cycle through audio devices
          Cycle through available audio devices
      --key-audiodevice-cycle=<string> 
                                 Cycle through audio devices
          Cycle through available audio devices
      --global-key-subtitle-revtrack=<string> 
                                 Cycle subtitle track in reverse order
          Cycle through the available subtitle tracks in reverse order.
      --key-subtitle-revtrack=<string> 
                                 Cycle subtitle track in reverse order
          Cycle through the available subtitle tracks in reverse order.
      --global-key-subtitle-track=<string> 
                                 Cycle subtitle track
          Cycle through the available subtitle tracks.
      --key-subtitle-track=<string> 
                                 Cycle subtitle track
          Cycle through the available subtitle tracks.
      --global-key-subtitle-toggle=<string> 
                                 Toggle subtitles
          Toggle subtitle track visibility.
      --key-subtitle-toggle=<string> 
                                 Toggle subtitles
          Toggle subtitle track visibility.
      --global-key-program-sid-next=<string> 
                                 Cycle next program Service ID
          Cycle through the available next program Service IDs (SIDs).
      --key-program-sid-next=<string> 
                                 Cycle next program Service ID
          Cycle through the available next program Service IDs (SIDs).
      --global-key-program-sid-prev=<string> 
                                 Cycle previous program Service ID
          Cycle through the available previous program Service IDs (SIDs).
      --key-program-sid-prev=<string> 
                                 Cycle previous program Service ID
          Cycle through the available previous program Service IDs (SIDs).
      --global-key-aspect-ratio=<string> 
                                 Cycle source aspect ratio
          Cycle through a predefined list of source aspect ratios.
      --key-aspect-ratio=<string> 
                                 Cycle source aspect ratio
          Cycle through a predefined list of source aspect ratios.
      --global-key-crop=<string> Cycle video crop
          Cycle through a predefined list of crop formats.
      --key-crop=<string>        Cycle video crop
          Cycle through a predefined list of crop formats.
      --global-key-toggle-autoscale=<string> 
                                 Toggle autoscaling
          Activate or deactivate autoscaling.
      --key-toggle-autoscale=<string> 
                                 Toggle autoscaling
          Activate or deactivate autoscaling.
      --global-key-incr-scalefactor=<string> 
                                 Increase scale factor
          Increase scale factor
      --key-incr-scalefactor=<string> 
                                 Increase scale factor
          Increase scale factor
      --global-key-decr-scalefactor=<string> 
                                 Decrease scale factor
          Decrease scale factor
      --key-decr-scalefactor=<string> 
                                 Decrease scale factor
          Decrease scale factor
      --global-key-deinterlace=<string> 
                                 Toggle deinterlacing
          Activate or deactivate deinterlacing.
      --key-deinterlace=<string> Toggle deinterlacing
          Activate or deactivate deinterlacing.
      --global-key-deinterlace-mode=<string> 
                                 Cycle deinterlace modes
          Cycle through available deinterlace modes.
      --key-deinterlace-mode=<string> 
                                 Cycle deinterlace modes
          Cycle through available deinterlace modes.
      --global-key-intf-show=<string> 
                                 Show controller in fullscreen
          Show controller in fullscreen
      --key-intf-show=<string>   Show controller in fullscreen
          Show controller in fullscreen
      --global-key-intf-boss=<string> 
                                 Boss key
          Hide the interface and pause playback.
      --key-intf-boss=<string>   Boss key
          Hide the interface and pause playback.
      --global-key-intf-popup-menu=<string> 
                                 Context menu
          Show the contextual popup menu.
      --key-intf-popup-menu=<string> 
                                 Context menu
          Show the contextual popup menu.
      --global-key-snapshot=<string> 
                                 Take video snapshot
          Takes a video snapshot and writes it to disk.
      --key-snapshot=<string>    Take video snapshot
          Takes a video snapshot and writes it to disk.
      --global-key-record=<string> 
                                 Record
          Record access filter start/stop.
      --key-record=<string>      Record
          Record access filter start/stop.
      --global-key-zoom=<string> Zoom
          Zoom
      --key-zoom=<string>        Zoom
          Zoom
      --global-key-unzoom=<string> 
                                 Un-Zoom
          Un-Zoom
      --key-unzoom=<string>      Un-Zoom
          Un-Zoom
      --global-key-wallpaper=<string> 
                                 Toggle wallpaper mode in video output
          Toggle wallpaper mode in video output.
      --key-wallpaper=<string>   Toggle wallpaper mode in video output
          Toggle wallpaper mode in video output.
      --global-key-crop-top=<string> 
                                 Crop one pixel from the top of the video
          Crop one pixel from the top of the video
      --key-crop-top=<string>    Crop one pixel from the top of the video
          Crop one pixel from the top of the video
      --global-key-uncrop-top=<string> 
                                 Uncrop one pixel from the top of the video
          Uncrop one pixel from the top of the video
      --key-uncrop-top=<string>  Uncrop one pixel from the top of the video
          Uncrop one pixel from the top of the video
      --global-key-crop-left=<string> 
                                 Crop one pixel from the left of the video
          Crop one pixel from the left of the video
      --key-crop-left=<string>   Crop one pixel from the left of the video
          Crop one pixel from the left of the video
      --global-key-uncrop-left=<string> 
                                 Uncrop one pixel from the left of the video
          Uncrop one pixel from the left of the video
      --key-uncrop-left=<string> Uncrop one pixel from the left of the video
          Uncrop one pixel from the left of the video
      --global-key-crop-bottom=<string> 
                                 Crop one pixel from the bottom of the video
          Crop one pixel from the bottom of the video
      --key-crop-bottom=<string> Crop one pixel from the bottom of the video
          Crop one pixel from the bottom of the video
      --global-key-uncrop-bottom=<string> 
                                 Uncrop one pixel from the bottom of the video
          Uncrop one pixel from the bottom of the video
      --key-uncrop-bottom=<string> 
                                 Uncrop one pixel from the bottom of the video
          Uncrop one pixel from the bottom of the video
      --global-key-crop-right=<string> 
                                 Crop one pixel from the right of the video
          Crop one pixel from the right of the video
      --key-crop-right=<string>  Crop one pixel from the right of the video
          Crop one pixel from the right of the video
      --global-key-uncrop-right=<string> 
                                 Uncrop one pixel from the right of the video
          Uncrop one pixel from the right of the video
      --key-uncrop-right=<string> 
                                 Uncrop one pixel from the right of the video
          Uncrop one pixel from the right of the video
      --global-key-random=<string> 
                                 Random
          Toggle random playlist playback
      --key-random=<string>      Random
          Toggle random playlist playback
      --global-key-loop=<string> Normal/Loop/Repeat
          Toggle Normal/Loop/Repeat playlist modes
      --key-loop=<string>        Normal/Loop/Repeat
          Toggle Normal/Loop/Repeat playlist modes
      --global-key-viewpoint-fov-in=<string> 
                                 Shrink the viewpoint field of view (360°)
          Shrink the viewpoint field of view (360°)
      --key-viewpoint-fov-in=<string> 
                                 Shrink the viewpoint field of view (360°)
          Shrink the viewpoint field of view (360°)
      --global-key-viewpoint-fov-out=<string> 
                                 Expand the viewpoint field of view (360°)
          Expand the viewpoint field of view (360°)
      --key-viewpoint-fov-out=<string> 
                                 Expand the viewpoint field of view (360°)
          Expand the viewpoint field of view (360°)
      --global-key-viewpoint-roll-clock=<string> 
                                 Roll the viewpoint clockwise (360°)
          Roll the viewpoint clockwise (360°)
      --key-viewpoint-roll-clock=<string> 
                                 Roll the viewpoint clockwise (360°)
          Roll the viewpoint clockwise (360°)
      --global-key-viewpoint-roll-anticlock=<string> 
                                 Roll the viewpoint anti-clockwise (360°)
          Roll the viewpoint anti-clockwise (360°)
      --key-viewpoint-roll-anticlock=<string> 
                                 Roll the viewpoint anti-clockwise (360°)
          Roll the viewpoint anti-clockwise (360°)
   Zoom:
      --global-key-zoom-quarter=<string> 
                                 1:4 Quarter
      --key-zoom-quarter=<string> 
                                 1:4 Quarter
      --global-key-zoom-half=<string> 
                                 1:2 Half
      --key-zoom-half=<string>   1:2 Half
      --global-key-zoom-original=<string> 
                                 1:1 Original
      --key-zoom-original=<string> 
                                 1:1 Original
      --global-key-zoom-double=<string> 
                                 2:1 Double
      --key-zoom-double=<string> 2:1 Double
   Jump sizes:
      --extrashort-jump-size=<integer> 
                                 Very short jump length
          Very short jump length, in seconds.
      --short-jump-size=<integer> 
                                 Short jump length
          Short jump length, in seconds.
      --medium-jump-size=<integer> 
                                 Medium jump length
          Medium jump length, in seconds.
      --long-jump-size=<integer> Long jump length
          Long jump length, in seconds.
      --global-key-set-bookmark1=<string> 
                                 Set playlist bookmark 1
          Select the key to set this playlist bookmark.
      --key-set-bookmark1=<string> 
                                 Set playlist bookmark 1
          Select the key to set this playlist bookmark.
      --global-key-set-bookmark2=<string> 
                                 Set playlist bookmark 2
          Select the key to set this playlist bookmark.
      --key-set-bookmark2=<string> 
                                 Set playlist bookmark 2
          Select the key to set this playlist bookmark.
      --global-key-set-bookmark3=<string> 
                                 Set playlist bookmark 3
          Select the key to set this playlist bookmark.
      --key-set-bookmark3=<string> 
                                 Set playlist bookmark 3
          Select the key to set this playlist bookmark.
      --global-key-set-bookmark4=<string> 
                                 Set playlist bookmark 4
          Select the key to set this playlist bookmark.
      --key-set-bookmark4=<string> 
                                 Set playlist bookmark 4
          Select the key to set this playlist bookmark.
      --global-key-set-bookmark5=<string> 
                                 Set playlist bookmark 5
          Select the key to set this playlist bookmark.
      --key-set-bookmark5=<string> 
                                 Set playlist bookmark 5
          Select the key to set this playlist bookmark.
      --global-key-set-bookmark6=<string> 
                                 Set playlist bookmark 6
          Select the key to set this playlist bookmark.
      --key-set-bookmark6=<string> 
                                 Set playlist bookmark 6
          Select the key to set this playlist bookmark.
      --global-key-set-bookmark7=<string> 
                                 Set playlist bookmark 7
          Select the key to set this playlist bookmark.
      --key-set-bookmark7=<string> 
                                 Set playlist bookmark 7
          Select the key to set this playlist bookmark.
      --global-key-set-bookmark8=<string> 
                                 Set playlist bookmark 8
          Select the key to set this playlist bookmark.
      --key-set-bookmark8=<string> 
                                 Set playlist bookmark 8
          Select the key to set this playlist bookmark.
      --global-key-set-bookmark9=<string> 
                                 Set playlist bookmark 9
          Select the key to set this playlist bookmark.
      --key-set-bookmark9=<string> 
                                 Set playlist bookmark 9
          Select the key to set this playlist bookmark.
      --global-key-set-bookmark10=<string> 
                                 Set playlist bookmark 10
          Select the key to set this playlist bookmark.
      --key-set-bookmark10=<string> 
                                 Set playlist bookmark 10
          Select the key to set this playlist bookmark.
      --global-key-play-bookmark1=<string> 
                                 Play playlist bookmark 1
          Select the key to play this bookmark.
      --key-play-bookmark1=<string> 
                                 Play playlist bookmark 1
          Select the key to play this bookmark.
      --global-key-play-bookmark2=<string> 
                                 Play playlist bookmark 2
          Select the key to play this bookmark.
      --key-play-bookmark2=<string> 
                                 Play playlist bookmark 2
          Select the key to play this bookmark.
      --global-key-play-bookmark3=<string> 
                                 Play playlist bookmark 3
          Select the key to play this bookmark.
      --key-play-bookmark3=<string> 
                                 Play playlist bookmark 3
          Select the key to play this bookmark.
      --global-key-play-bookmark4=<string> 
                                 Play playlist bookmark 4
          Select the key to play this bookmark.
      --key-play-bookmark4=<string> 
                                 Play playlist bookmark 4
          Select the key to play this bookmark.
      --global-key-play-bookmark5=<string> 
                                 Play playlist bookmark 5
          Select the key to play this bookmark.
      --key-play-bookmark5=<string> 
                                 Play playlist bookmark 5
          Select the key to play this bookmark.
      --global-key-play-bookmark6=<string> 
                                 Play playlist bookmark 6
          Select the key to play this bookmark.
      --key-play-bookmark6=<string> 
                                 Play playlist bookmark 6
          Select the key to play this bookmark.
      --global-key-play-bookmark7=<string> 
                                 Play playlist bookmark 7
          Select the key to play this bookmark.
      --key-play-bookmark7=<string> 
                                 Play playlist bookmark 7
          Select the key to play this bookmark.
      --global-key-play-bookmark8=<string> 
                                 Play playlist bookmark 8
          Select the key to play this bookmark.
      --key-play-bookmark8=<string> 
                                 Play playlist bookmark 8
          Select the key to play this bookmark.
      --global-key-play-bookmark9=<string> 
                                 Play playlist bookmark 9
          Select the key to play this bookmark.
      --key-play-bookmark9=<string> 
                                 Play playlist bookmark 9
          Select the key to play this bookmark.
      --global-key-play-bookmark10=<string> 
                                 Play playlist bookmark 10
          Select the key to play this bookmark.
      --key-play-bookmark10=<string> 
                                 Play playlist bookmark 10
          Select the key to play this bookmark.
      --global-key-clear-playlist=<string> 
                                 Clear the playlist
          Select the key to clear the current playlist.
      --key-clear-playlist=<string> 
                                 Clear the playlist
          Select the key to clear the current playlist.
      --global-key-subtitle-text-scale-normal=<string> 
                                 Reset subtitles text scale
          Select the key to change subtitles text scaling
      --key-subtitle-text-scale-normal=<string> 
                                 Reset subtitles text scale
          Select the key to change subtitles text scaling
      --global-key-subtitle-text-scale-up=<string> 
                                 Scale down subtitles text
          Select the key to change subtitles text scaling
      --key-subtitle-text-scale-up=<string> 
                                 Scale down subtitles text
          Select the key to change subtitles text scaling
      --global-key-subtitle-text-scale-down=<string> 
                                 Scale up subtitles text
          Select the key to change subtitles text scaling
      --key-subtitle-text-scale-down=<string> 
                                 Scale up subtitles text
          Select the key to change subtitles text scaling
      --bookmark1=<string>       Playlist bookmark 1
          This allows you to define playlist bookmarks.
      --bookmark2=<string>       Playlist bookmark 2
          This allows you to define playlist bookmarks.
      --bookmark3=<string>       Playlist bookmark 3
          This allows you to define playlist bookmarks.
      --bookmark4=<string>       Playlist bookmark 4
          This allows you to define playlist bookmarks.
      --bookmark5=<string>       Playlist bookmark 5
          This allows you to define playlist bookmarks.
      --bookmark6=<string>       Playlist bookmark 6
          This allows you to define playlist bookmarks.
      --bookmark7=<string>       Playlist bookmark 7
          This allows you to define playlist bookmarks.
      --bookmark8=<string>       Playlist bookmark 8
          This allows you to define playlist bookmarks.
      --bookmark9=<string>       Playlist bookmark 9
          This allows you to define playlist bookmarks.
      --bookmark10=<string>      Playlist bookmark 10
          This allows you to define playlist bookmarks.
  -h, --help, --no-help          print help for VLC (can be combined with
                                 --advanced and --help-verbose)
                                 (default disabled)
  -H, --full-help, --no-full-help 
                                 Exhaustive help for VLC and its modules
                                 (default disabled)
      --longhelp, --no-longhelp  print help for VLC and all its modules (can be
                                 combined with --advanced and --help-verbose)
                                 (default disabled)
      --help-verbose, --no-help-verbose 
                                 ask for extra verbosity when displaying help
                                 (default disabled)
  -l, --list, --no-list          print a list of available modules
                                 (default disabled)
      --list-verbose, --no-list-verbose 
                                 print a list of available modules with extra
                                 detail
                                 (default disabled)
  -p, --module=<string>          print help on a specific module (can be
                                 combined with --advanced and --help-verbose).
                                 Prefix the module name with = for strict
                                 matches.
      --ignore-config, --no-ignore-config 
                                 no configuration option will be loaded nor
                                 saved to config file
                                 (default enabled)
      --reset-config, --no-reset-config 
                                 reset the current config to the default values
                                 (default disabled)
      --reset-plugins-cache, --no-reset-plugins-cache 
                                 resets the current plugins cache
                                 (default disabled)
      --version, --no-version    print version information
                                 (default disabled)
      --config=<string>          use alternate config file

Note: 2 modules were not displayed because they only have advanced options.