From e32c70c8be5bd244410ba81b55bd3da060a8addf Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Tue, 13 Mar 2012 23:22:23 -0400 Subject: Add znc config --- .znc/configs/znc.conf | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .znc/configs/znc.conf diff --git a/.znc/configs/znc.conf b/.znc/configs/znc.conf new file mode 100644 index 0000000..340f06f --- /dev/null +++ b/.znc/configs/znc.conf @@ -0,0 +1,53 @@ +// WARNING +// +// Do NOT edit this file while ZNC is running! +// Use webadmin or *admin instead. +// +// Buf if you feel risky, you might want to read help on /znc saveconfig and /znc rehash. +// Also check http://en.znc.in/wiki/Configuration + +AnonIPLimit = 10 +MaxBufferSize= 500 +SSLCertFile = /home/luke/.znc/znc.pem +ProtectWebSessions = true +Listener4 = 6667 +ConnectDelay = 5 +ServerThrottle = 30 +Skin = dark-clouds +StatusPrefix = * +LoadModule = webadmin + + + Pass = sha256#155a0ffa2a0440e9126e045c6d7ce0c03779b705a0fdd2e132b3030739185914#kO8xL6dUfpGaw)BXvyQs# + Nick = lukeshu + AltNick = lukeshu_ + Ident = lukeshu + RealName = Luke Shumaker + QuitMsg = ZNC - http://znc.in + ChanModes = +stn + Buffer = 50 + KeepBuffer = true + MultiClients = true + DenyLoadMod = false + Admin = true + DenySetBindHost = false + TimestampFormat = [%H:%M:%S] + AppendTimestamp = false + PrependTimestamp = true + TimezoneOffset = 0.00 + JoinTries = 10 + MaxJoins = 5 + IRCConnectEnabled = true + + Allow = * + + LoadModule = admin + LoadModule = keepnick + LoadModule = nickserv + LoadModule = simple_away + + Server = irc.freenode.net 6667 + + + + -- cgit v1.1-4-g5e80 From 88e8a4ab61dc5352dd9fcd953e27a4156eca8c4a Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Tue, 13 Mar 2012 23:24:35 -0400 Subject: I don't want a local crontab on this box --- .crontab.local | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .crontab.local diff --git a/.crontab.local b/.crontab.local new file mode 100644 index 0000000..e69de29 -- cgit v1.1-4-g5e80 From 664cc5389ce7b4c345267d7bd05a8279890bfb44 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 21 Mar 2012 22:27:06 -0400 Subject: Set the wmii key to be caps lock, remove laptop things from wmii bar --- .wmii/wmiirc_local | 10 +--------- .xmodmap | 4 ++++ 2 files changed, 5 insertions(+), 9 deletions(-) create mode 100644 .xmodmap diff --git a/.wmii/wmiirc_local b/.wmii/wmiirc_local index 4b0330e..8c1b397 100755 --- a/.wmii/wmiirc_local +++ b/.wmii/wmiirc_local @@ -8,15 +8,7 @@ MODKEY=Mod4 status() { buffer=$( echo -n ' ' - # Wifi status - echo -n 'Wlan0:' $(iwconfig wlan0 | sed 's/ /\n/g' | grep Quality) - - echo -n ' | ' - - # Battery charge (not status) - echo -n $(acpi -b | sed 's/.*, \{0,2\}\([0-9]\{1,3\}%\),.*/Bat: \1/') - - echo -n ' | ' + # CPU # This doesn't work for me, it shows capacity #echo -n 'Core MHz:' $(cat /proc/cpuinfo | grep 'cpu MHz' | sed 's/.*: //g; s/\..*//g;') diff --git a/.xmodmap b/.xmodmap new file mode 100644 index 0000000..2299361 --- /dev/null +++ b/.xmodmap @@ -0,0 +1,4 @@ +remove lock = Caps_Lock +keysym Caps_Lock = Super_L +clear mod4 +add mod4 = Super_L Super_R Hyper_L Hyper_R Menu -- cgit v1.1-4-g5e80 From adbb5f8597288f3394cb7659474f420bad236ded Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 21 Mar 2012 22:46:38 -0400 Subject: update crontab --- .crontab | 3 ++- .crontab.local | 0 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .crontab.local diff --git a/.crontab b/.crontab index d4e21e0..28d7b0a 100644 --- a/.crontab +++ b/.crontab @@ -1,2 +1,3 @@ # m h dom mon dow command -*/5 * * * * cd $HOME && make -k +*/5 * * * * cd $HOME && make - +*/5 * * * * offlineimap-runner diff --git a/.crontab.local b/.crontab.local new file mode 100644 index 0000000..e69de29 -- cgit v1.1-4-g5e80 From be87825a69b5d08f8525ff0a2e449330f087d741 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 28 Mar 2012 20:52:50 -0400 Subject: My X program aliases --- x-pdf | 9 +++++++++ x-terminal-emulator | 10 ++++++++++ x-www-browser | 14 ++++++++++++++ xmessage | 2 ++ 4 files changed, 35 insertions(+) create mode 100755 x-pdf create mode 100755 x-terminal-emulator create mode 100755 x-www-browser create mode 100755 xmessage diff --git a/x-pdf b/x-pdf new file mode 100755 index 0000000..020ff7e --- /dev/null +++ b/x-pdf @@ -0,0 +1,9 @@ +#!/bin/sh + +if [ -x "`which okular 2>/dev/null`" ]; then + okular "$@" +if [ -x "`which evince 2>/dev/null`" ]; then + evince "$@" +elif [ -x "`which xpdf 2>/dev/null`" ]; then + xpdf "$@" +fi diff --git a/x-terminal-emulator b/x-terminal-emulator new file mode 100755 index 0000000..f7290b4 --- /dev/null +++ b/x-terminal-emulator @@ -0,0 +1,10 @@ +#!/bin/sh +if [ -x "`which emacsterm`" ]; then + emacsterm $@ +elif [ -x "`which urxvt`" ]; then + urxvt $@ +elif [ -x "`which gnome-terminal`" ]; then + gnome-terminal $@ +elif [ -x "`which xterm`"]; then + xterm $@ +fi diff --git a/x-www-browser b/x-www-browser new file mode 100755 index 0000000..0ead72a --- /dev/null +++ b/x-www-browser @@ -0,0 +1,14 @@ +#!/bin/sh + +list='firefox iceweasel icecat conkeror' + +looking=true +for prog in $list; do + if $looking && [ -n "`pgrep $prog`" ]; then + $prog $@ + looking=false + fi +done +if $looking; then + conkeror $@ +fi diff --git a/xmessage b/xmessage new file mode 100755 index 0000000..bd30b5e --- /dev/null +++ b/xmessage @@ -0,0 +1,2 @@ +#!/bin/sh +gxmessage $@ -fn 'Monospace' -- cgit v1.1-4-g5e80 From 62a59e423edd0b6277ddea8c60de9e3f4a33fca1 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 28 Mar 2012 20:54:39 -0400 Subject: symlink xterm to x-terminal-emulator --- xterm | 1 + 1 file changed, 1 insertion(+) create mode 120000 xterm diff --git a/xterm b/xterm new file mode 120000 index 0000000..e8d5184 --- /dev/null +++ b/xterm @@ -0,0 +1 @@ +x-terminal-emulator \ No newline at end of file -- cgit v1.1-4-g5e80 From aa05f001d233e8b8db55ed276b5b8d32d048cd9e Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 28 Mar 2012 20:56:25 -0400 Subject: move `/' to `/.prefix/bin/' --- .prefix/bin/x-pdf | 9 +++++++++ .prefix/bin/x-terminal-emulator | 10 ++++++++++ .prefix/bin/x-www-browser | 14 ++++++++++++++ .prefix/bin/xmessage | 2 ++ .prefix/bin/xterm | 1 + x-pdf | 9 --------- x-terminal-emulator | 10 ---------- x-www-browser | 14 -------------- xmessage | 2 -- xterm | 1 - 10 files changed, 36 insertions(+), 36 deletions(-) create mode 100755 .prefix/bin/x-pdf create mode 100755 .prefix/bin/x-terminal-emulator create mode 100755 .prefix/bin/x-www-browser create mode 100755 .prefix/bin/xmessage create mode 120000 .prefix/bin/xterm delete mode 100755 x-pdf delete mode 100755 x-terminal-emulator delete mode 100755 x-www-browser delete mode 100755 xmessage delete mode 120000 xterm diff --git a/.prefix/bin/x-pdf b/.prefix/bin/x-pdf new file mode 100755 index 0000000..020ff7e --- /dev/null +++ b/.prefix/bin/x-pdf @@ -0,0 +1,9 @@ +#!/bin/sh + +if [ -x "`which okular 2>/dev/null`" ]; then + okular "$@" +if [ -x "`which evince 2>/dev/null`" ]; then + evince "$@" +elif [ -x "`which xpdf 2>/dev/null`" ]; then + xpdf "$@" +fi diff --git a/.prefix/bin/x-terminal-emulator b/.prefix/bin/x-terminal-emulator new file mode 100755 index 0000000..f7290b4 --- /dev/null +++ b/.prefix/bin/x-terminal-emulator @@ -0,0 +1,10 @@ +#!/bin/sh +if [ -x "`which emacsterm`" ]; then + emacsterm $@ +elif [ -x "`which urxvt`" ]; then + urxvt $@ +elif [ -x "`which gnome-terminal`" ]; then + gnome-terminal $@ +elif [ -x "`which xterm`"]; then + xterm $@ +fi diff --git a/.prefix/bin/x-www-browser b/.prefix/bin/x-www-browser new file mode 100755 index 0000000..0ead72a --- /dev/null +++ b/.prefix/bin/x-www-browser @@ -0,0 +1,14 @@ +#!/bin/sh + +list='firefox iceweasel icecat conkeror' + +looking=true +for prog in $list; do + if $looking && [ -n "`pgrep $prog`" ]; then + $prog $@ + looking=false + fi +done +if $looking; then + conkeror $@ +fi diff --git a/.prefix/bin/xmessage b/.prefix/bin/xmessage new file mode 100755 index 0000000..bd30b5e --- /dev/null +++ b/.prefix/bin/xmessage @@ -0,0 +1,2 @@ +#!/bin/sh +gxmessage $@ -fn 'Monospace' diff --git a/.prefix/bin/xterm b/.prefix/bin/xterm new file mode 120000 index 0000000..e8d5184 --- /dev/null +++ b/.prefix/bin/xterm @@ -0,0 +1 @@ +x-terminal-emulator \ No newline at end of file diff --git a/x-pdf b/x-pdf deleted file mode 100755 index 020ff7e..0000000 --- a/x-pdf +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -if [ -x "`which okular 2>/dev/null`" ]; then - okular "$@" -if [ -x "`which evince 2>/dev/null`" ]; then - evince "$@" -elif [ -x "`which xpdf 2>/dev/null`" ]; then - xpdf "$@" -fi diff --git a/x-terminal-emulator b/x-terminal-emulator deleted file mode 100755 index f7290b4..0000000 --- a/x-terminal-emulator +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -if [ -x "`which emacsterm`" ]; then - emacsterm $@ -elif [ -x "`which urxvt`" ]; then - urxvt $@ -elif [ -x "`which gnome-terminal`" ]; then - gnome-terminal $@ -elif [ -x "`which xterm`"]; then - xterm $@ -fi diff --git a/x-www-browser b/x-www-browser deleted file mode 100755 index 0ead72a..0000000 --- a/x-www-browser +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - -list='firefox iceweasel icecat conkeror' - -looking=true -for prog in $list; do - if $looking && [ -n "`pgrep $prog`" ]; then - $prog $@ - looking=false - fi -done -if $looking; then - conkeror $@ -fi diff --git a/xmessage b/xmessage deleted file mode 100755 index bd30b5e..0000000 --- a/xmessage +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -gxmessage $@ -fn 'Monospace' diff --git a/xterm b/xterm deleted file mode 120000 index e8d5184..0000000 --- a/xterm +++ /dev/null @@ -1 +0,0 @@ -x-terminal-emulator \ No newline at end of file -- cgit v1.1-4-g5e80 From 595a6669ac2b0651790d1dc535d1a61468650302 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 28 Mar 2012 21:01:05 -0400 Subject: Remove transmission-deamon from .login-daemons If I want it, I'll put it in /etc/rc.conf --- .login-daemons | 1 - 1 file changed, 1 deletion(-) diff --git a/.login-daemons b/.login-daemons index afa5033..230f708 100644 --- a/.login-daemons +++ b/.login-daemons @@ -1,7 +1,6 @@ #!/bin/sh if [ -x "`which daemon`" ]; then - transmission-daemon daemon emacs --daemon daemon sysfiles daemon maildirproc -- cgit v1.1-4-g5e80 From 0a04173d7e0031aea71037ece6b4cf3d19c4138f Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 28 Mar 2012 21:02:09 -0400 Subject: Update my .emacs package list (manually merged these changes from my .emacs at work) --- .emacs | 30 ++++++++---------------------- 1 file changed, 8 insertions(+), 22 deletions(-) diff --git a/.emacs b/.emacs index 498fd4b..aff4e03 100644 --- a/.emacs +++ b/.emacs @@ -36,7 +36,6 @@ :after (lambda () (color-theme-tty-dark))) (:name color-theme-solarized - :url "git://github.com/LukeShu/emacs-color-theme-solarized.git" :after (lambda () (add-hook 'after-make-frame-functions (lambda (frame) @@ -46,8 +45,6 @@ (color-theme-solarized-dark) (color-theme-tty-dark)))))) (:name org-mode - :url "git://orgmode.org/org-mode.git" - :features org-install :after (lambda () (require 'org-checklist) (setq org-hide-leading-stars t) @@ -59,8 +56,6 @@ :load "identica-mode.el" :after (lambda () (load-identica-mode))) - (:name smarttabs - :url "git://gist.github.com/896190.git") (:name autopair :after (lambda () (autopair-global-mode 1) @@ -69,27 +64,21 @@ (setq lts-el-get-packages '(el-get - ;; 'programs' package - magit - apel flim semi wanderlust - identica-mode - - ;; extensions/features rainbow-delimiters + php-mode-improved mmm-mode dtrt-indent + coffee-mode folding + apel flim semi wanderlust + scss-mode color-theme color-theme-solarized - smarttabs - autopair - - ;; modes org-mode - php-mode-improved - scss-mode - coffee-mode + identica-mode + smarttabs markdown-mode + autopair )) (when (require 'el-get nil t) @@ -106,8 +95,6 @@ (load "emacsutils") -;;(load "mdmua") - (tool-bar-mode -1) (ido-mode t) (show-paren-mode 1) @@ -135,8 +122,7 @@ empty )) -;; These are my preferred settings; we let dtrt-indent detect when we play with -;; other's files +;; These are my preferred settings; we let dtrt-indent detect when we play with other's files (setq-default tab-width 8) (setq-default c-basic-offset 8) (setq-default indent-tabs-mode t) -- cgit v1.1-4-g5e80 From 67a217962dcff14e70ca3ca696b2b45372259403 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 28 Mar 2012 21:02:47 -0400 Subject: tweak mail filters --- .maildirproc/default.rc | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.maildirproc/default.rc b/.maildirproc/default.rc index a0f1af8..05efbcb 100644 --- a/.maildirproc/default.rc +++ b/.maildirproc/default.rc @@ -92,13 +92,18 @@ def my_filters(mail): mail.move(".software.social") return - if mail["List-ID"].matches("maintenance.lists.parabolagnulinux.org"): + if mail["List-Id"].matches("help-grub.gnu.org"): + mail.move(".software.help-grub") + return + + if mail["List-Id"].matches("maintenance.lists.parabolagnulinux.org"): mail.move(".software.parabola-maintenance") return if ( False - or mail["List-ID"].matches("parabolagnulinux.org") + or mail["List-Id"].matches("parabolagnulinux.org") or is_to_or_from(mail, "parabolagnulinux.org") + or is_to_or_from(mail, "parabola.nu") ): mail.move(".software.parabola-dev") return @@ -197,7 +202,6 @@ def my_filters(mail): "esr@thyrsus.com", "canonical.org", "foocorp.net", - "parabolagnulinux.org", "cnuk.org", ]: if is_to_or_from(mail,address): @@ -227,11 +231,11 @@ def my_filters(mail): mail.move(".CompTIA") return - if mail["From"].contains("@lnnorthstar.org"): + if is_to_or_from(mail, "@lnnorthstar.org"): mail.move(".School.Newspaper") return - if mail["From"].contains("susyphil@aol.com"): + if is_to_or_from(mail,"susyphil@aol.com"): mail.move(".PMCH") for address in [ -- cgit v1.1-4-g5e80 From 6595fc906bae924f302c8f8c592ef791e9e2708d Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 28 Mar 2012 21:03:19 -0400 Subject: touch 'maildirfolder' when creating a new Maildir/ folder --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 1af51d3..def57c3 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,7 @@ Maildir: mkdir -p '$@'/{cur,new,tmp} Maildir/%: | Maildir mkdir -p '$@'/{cur,new,tmp} + touch '$@'/maildirfolder commit: git commit -a -- cgit v1.1-4-g5e80 From 156175af44f1c1f3603c2db80eaca70f19ce1b7d Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 11 Apr 2012 22:29:45 -0400 Subject: update vlc conf --- .config/vlc/vlc-qt-interface.conf | 2 +- .config/vlc/vlcrc | 4350 +++++++++++++++++++------------------ 2 files changed, 2184 insertions(+), 2168 deletions(-) diff --git a/.config/vlc/vlc-qt-interface.conf b/.config/vlc/vlc-qt-interface.conf index 1256a0a..c37e2ec 100644 --- a/.config/vlc/vlc-qt-interface.conf +++ b/.config/vlc/vlc-qt-interface.conf @@ -2,7 +2,7 @@ IsFirstRun=0 filedialog-path=/home/luke/kdenlive opendialog-size=@Size(526 490) -geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\x4\xff\0\0\0W\0\0\0\x1\0\0\0\x10\0\0\x4\xfe\0\0\0V\0\0\0\0\0\0) +geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x1\0\0\0\0\0\x1\0\0\0\x10\0\0\a~\0\0\x4&\0\0\0\x1\0\0\0\x10\0\0\a~\0\0\x4&\0\0\0\0\0\0) [FullScreen] pos=@Point(112 696) diff --git a/.config/vlc/vlcrc b/.config/vlc/vlcrc index 2e0fc10..2b6e2a3 100644 --- a/.config/vlc/vlcrc +++ b/.config/vlc/vlcrc @@ -1,97 +1,129 @@ ### -### vlc 2.0.0 +### vlc 2.0.1 ### ### ### lines beginning with a '#' character are comments ### -[access_output_livehttp] # HTTP Live streaming output +[audioscrobbler] # Submission of played songs to last.fm -# Segment length (integer) -#sout-livehttp-seglen=10 +# Username (string) +#lastfm-username= -# Number of segments (integer) -#sout-livehttp-numsegs=0 +# Password (string) +#lastfm-password= -# Split segments anywhere (boolean) -#sout-livehttp-splitanywhere=0 +# Scrobbler URL (string) +#scrobbler-url=post.audioscrobbler.com -# Delete segments (boolean) -#sout-livehttp-delsegs=1 +[gnutls] # GNU TLS transport layer security -# Use muxers rate control mechanism (boolean) -#sout-livehttp-ratecontrol=0 +# TLS cipher priorities (string) +#gnutls-priorities=NORMAL -# Index file (string) -#sout-livehttp-index= +[logger] # File logging -# Full URL to put in index file (string) -#sout-livehttp-index-url= +# Log filename (string) +#logfile= -[access_output_http] # HTTP stream output +# Log format (string) +#logmode=text -# Username (string) -#sout-http-user= +# Syslog facility (string) +#syslog-facility=user -# Password (string) -#sout-http-pwd= +# Verbosity (integer) +#log-verbose=-1 -# Mime (string) -#sout-http-mime= +[vod_rtsp] # RTSP VoD server -[access_output_udp] # UDP stream output +# MUX for RAW RTSP transport (string) +#rtsp-raw-mux=ts -# Caching value (ms) (integer) -#sout-udp-caching=300 +# Maximum number of connections (integer) +#rtsp-throttle-users=0 -# Group packets (integer) -#sout-udp-group=1 +# Sets the timeout option in the RTSP session string (integer) +#rtsp-session-timeout=5 -[access_output_file] # File stream output +[svg] # svg -# Append to file (boolean) -#sout-file-append=0 +# SVG template file (string) +#svg-template-file= -# Synchronous writing (boolean) -#sout-file-sync=0 +[freetype] # Freetype2 font renderer -[access_output_shout] # IceCAST output +# Font (string) +#freetype-font=Serif Bold -# Stream name (string) -#sout-shout-name=VLC media player - Live stream +# Font size in pixels (integer) +#freetype-fontsize=0 -# Stream description (string) -#sout-shout-description=Live stream from VLC media player +# Relative font size (integer) +#freetype-rel-fontsize=16 -# Stream MP3 (boolean) -#sout-shout-mp3=0 +# Text opacity (integer) +#freetype-opacity=255 -# Genre description (string) -#sout-shout-genre=Alternative +# Text default color (integer) +#freetype-color=16777215 -# URL description (string) -#sout-shout-url=http://www.videolan.org/vlc +# Force bold (boolean) +#freetype-bold=0 -# Bitrate (string) -#sout-shout-bitrate= +# Background opacity (integer) +#freetype-background-opacity=0 -# Samplerate (string) -#sout-shout-samplerate= +# Background color (integer) +#freetype-background-color=0 -# Number of channels (string) -#sout-shout-channels= +# Outline opacity (integer) +#freetype-outline-opacity=255 -# Ogg Vorbis Quality (string) -#sout-shout-quality= +# Outline color (integer) +#freetype-outline-color=0 -# Stream public (boolean) -#sout-shout-public=0 +# Outline thickness (integer) +#freetype-outline-thickness=4 -[mux_mp4] # MP4/MOV muxer +# Shadow opacity (integer) +#freetype-shadow-opacity=128 -# Create "Fast Start" files (boolean) -#sout-mp4-faststart=1 +# Shadow color (integer) +#freetype-shadow-color=0 + +# Shadow angle (float) +#freetype-shadow-angle=-45.000000 + +# Shadow distance (float) +#freetype-shadow-distance=0.060000 + +# Use YUVP renderer (boolean) +#freetype-yuvp=0 + +[mux_asf] # ASF muxer + +# Title (string) +#sout-asf-title= + +# Author (string) +#sout-asf-author= + +# Copyright (string) +#sout-asf-copyright= + +# Comment (string) +#sout-asf-comment= + +# Rating (string) +#sout-asf-rating= + +# Packet Size (integer) +#sout-asf-packet-size=4096 + +# Bitrate override (integer) +#sout-asf-bitrate-override=0 [mux_ts] # TS muxer (libdvbpsi) @@ -110,6 +142,9 @@ # TS ID (integer) #sout-ts-tsid=0 +# NET ID (integer) +#sout-ts-netid=0 + # PMT Program numbers (string) #sout-ts-program-pmt= @@ -119,6 +154,9 @@ # Mux PMT (requires --sout-ts-es-id-pid) (string) #sout-ts-muxpmt= +# SDT Descriptors (requires --sout-ts-es-id-pid) (string) +#sout-ts-sdtdesc= + # Data alignment (boolean) #sout-ts-alignment=1 @@ -158,28 +196,10 @@ # Packet size in bytes to encrypt (integer) #sout-ts-csa-pkt=188 -[mux_asf] # ASF muxer - -# Title (string) -#sout-asf-title= - -# Author (string) -#sout-asf-author= - -# Copyright (string) -#sout-asf-copyright= - -# Comment (string) -#sout-asf-comment= - -# Rating (string) -#sout-asf-rating= - -# Packet Size (integer) -#sout-asf-packet-size=4096 +[mux_mp4] # MP4/MOV muxer -# Bitrate override (integer) -#sout-asf-bitrate-override=0 +# Create "Fast Start" files (boolean) +#sout-mp4-faststart=1 [mux_ps] # PS muxer @@ -189,32 +209,6 @@ # PES maximum size (integer) #sout-ps-pes-max-size=65500 -[amem] # Audio memory output - -# Sample format (string) -#amem-format=S16N - -# Sample rate (integer) -#amem-rate=44100 - -# Channels count (integer) -#amem-channels=2 - -[alsa] # ALSA audio output - -# ALSA device (string) -#alsa-audio-device=default - -[oss] # Open Sound System - -# OSS DSP device (string) -#oss-audio-device=/dev/dsp - -[portaudio] # PORTAUDIO audio output - -# Output device (integer) -#portaudio-audio-device=0 - [jack] # JACK audio output # Automatically connect to writable clients (boolean) @@ -223,6 +217,11 @@ # Connect to clients matching (string) #jack-connect-regex=system +[oss] # Open Sound System + +# OSS DSP device (string) +#oss-audio-device=/dev/dsp + [aout_file] # File audio output # Output file (string) @@ -237,3167 +236,3181 @@ # Add WAVE header (boolean) #audiofile-wav=1 -[stream_out_es] # Elementary stream output +[amem] # Audio memory output -# Output access method (string) -#sout-es-access= +# Sample format (string) +#amem-format=S16N -# Output muxer (string) -#sout-es-mux= +# Sample rate (integer) +#amem-rate=44100 -# Output URL (string) -#sout-es-dst= +# Channels count (integer) +#amem-channels=2 -# Audio output access method (string) -#sout-es-access-audio= +[alsa] # ALSA audio output -# Audio output muxer (string) -#sout-es-mux-audio= +# Audio output device (string) +#alsa-audio-device=default -# Audio output URL (string) -#sout-es-dst-audio= +# Audio output channels (integer) +#alsa-audio-channels=6 -# Video output access method (string) -#sout-es-access-video= +[packetizer_mpegvideo] # MPEG-I/II video packetizer -# Video output muxer (string) -#sout-es-mux-video= +# Sync on Intra Frame (boolean) +#packetizer-mpegvideo-sync-iframe=0 -# Video output URL (string) -#sout-es-dst-video= +[netsync] # Network synchronization -[stream_out_standard] # Standard stream output +# Network master clock (boolean) +#netsync-master=0 -# Output access method (string) -#sout-standard-access= +# Master server ip address (string) +#netsync-master-ip= -# Output muxer (string) -#sout-standard-mux= +# UDP timeout (in ms) (integer) +#netsync-timeout=500 -# Output destination (string) -#sout-standard-dst= +[oldrc] # Remote control interface -# address to bind to (helper setting for dst) (string) -#sout-standard-bind= +# Show stream position (boolean) +#rc-show-pos=0 -# filename for stream (helper setting for dst) (string) -#sout-standard-path= +# Fake TTY (boolean) +#rc-fake-tty=0 -# SAP announcing (boolean) -#sout-standard-sap=0 +# UNIX socket command input (string) +#rc-unix= -# Session name (string) -#sout-standard-name= +# TCP command input (string) +#rc-host= -# Session groupname (string) -#sout-standard-group= +[motion] # motion control interface -# Session description (string) -#sout-standard-description= +# Use the rotate video filter instead of transform (boolean) +#motion-use-rotate=0 -# Session URL (string) -#sout-standard-url= +[dbus] # D-Bus control interface -# Session email (string) -#sout-standard-email= +# Unique DBUS service id (org.mpris.vlc-) (boolean) +#dbus-unique-service-id=0 -# Session phone number (string) -#sout-standard-phone= +[hotkeys] # Hotkeys management interface -[stream_out_setid] # Change the id of an elementary stream +# MouseWheel up-down axis Control (integer) +#hotkeys-mousewheel-mode=0 -# Elementary Stream ID (integer) -#sout-setid-id=0 +[gestures] # Mouse gestures control interface -# New ES ID (integer) -#sout-setid-new-id=0 +# Motion threshold (10-100) (integer) +#gestures-threshold=30 -# Elementary Stream ID (integer) -#sout-setlang-id=0 +# Trigger button (string) +#gestures-button=right -# Language (string) -#sout-setlang-lang=eng +[demuxdump] # File dumper -[stream_out_delay] # Delay a stream +# Dump filename (string) +#demuxdump-file=stream-demux.dump -# Elementary Stream ID (integer) -#sout-delay-id=0 +# Append to existing file (boolean) +#demuxdump-append=0 -# Delay of the ES (ms) (integer) -#sout-delay-delay=0 +[dirac] # Dirac video demuxer -[stream_out_mosaic_bridge] # Mosaic bridge stream output +# Value to adjust dts by (integer) +#dirac-dts-offset=0 -# ID (string) -#sout-mosaic-bridge-id=Id +[ts] # MPEG Transport Stream demuxer -# Video width (integer) -#sout-mosaic-bridge-width=0 +# Extra PMT (string) +#ts-extra-pmt= -# Video height (integer) -#sout-mosaic-bridge-height=0 +# Set id of ES to PID (boolean) +#ts-es-id-pid=1 -# Sample aspect ratio (string) -#sout-mosaic-bridge-sar=1:1 +# Fast udp streaming (string) +#ts-out= -# Image chroma (string) -#sout-mosaic-bridge-chroma= +# MTU for out mode (integer) +#ts-out-mtu=1400 -# Video filter (string) -#sout-mosaic-bridge-vfilter= +# CSA Key (string) +#ts-csa-ck= -# Transparency (integer) -#sout-mosaic-bridge-alpha=255 +# Second CSA Key (string) +#ts-csa2-ck= -# X offset (integer) -#sout-mosaic-bridge-x=-1 +# Packet size in bytes to decrypt (integer) +#ts-csa-pkt=188 -# Y offset (integer) -#sout-mosaic-bridge-y=-1 +# Silent mode (boolean) +#ts-silent=0 -[stream_out_record] # Record stream output +# Filename of dump (string) +#ts-dump-file= -# Destination prefix (string) -#sout-record-dst-prefix= +# Append (boolean) +#ts-dump-append=0 -[stream_out_select] # Select individual es to enable or disable from stream +# Dump buffer size (integer) +#ts-dump-size=16384 -# Command UDP port (integer) -#sout-select-port=5001 +# Separate sub-streams (boolean) +#ts-split-es=1 -# Disable ES id (integer) -#sout-select-disable=-1 +# Seek based on percent not time (boolean) +#ts-seek-percent=0 -# Enable ES id (integer) -#sout-select-enable=-1 +[live555] # RTP/RTSP/SDP demuxer (using Live555) -[stream_out_transcode] # Transcode stream output +# Use RTP over RTSP (TCP) (boolean) +#rtsp-tcp=0 -# Video encoder (string) -#sout-transcode-venc= +# Client port (integer) +#rtp-client-port=-1 -# Destination video codec (string) -#sout-transcode-vcodec= +# Force multicast RTP via RTSP (boolean) +#rtsp-mcast=0 -# Video bitrate (integer) -#sout-transcode-vb=0 +# Tunnel RTSP and RTP over HTTP (boolean) +#rtsp-http=0 -# Video scaling (float) -#sout-transcode-scale=0.000000 +# HTTP tunnel port (integer) +#rtsp-http-port=80 -# Video frame-rate (float) -#sout-transcode-fps=0.000000 +# Kasenna RTSP dialect (boolean) +#rtsp-kasenna=0 -# Hurry up (boolean) -#sout-transcode-hurry-up=1 +# WMServer RTSP dialect (boolean) +#rtsp-wmserver=0 -# Deinterlace video (boolean) -#sout-transcode-deinterlace=0 +# RTSP user name (string) +#rtsp-user= -# Deinterlace module (string) -#sout-transcode-deinterlace-module=deinterlace +# RTSP password (string) +#rtsp-pwd= -# Video width (integer) -#sout-transcode-width=0 +[avi] # AVI demuxer -# Video height (integer) -#sout-transcode-height=0 +# Force interleaved method (boolean) +#avi-interleaved=0 -# Maximum video width (integer) -#sout-transcode-maxwidth=0 +# Force index creation (integer) +#avi-index=0 -# Maximum video height (integer) -#sout-transcode-maxheight=0 +[playlist] # Playlist -# Video filter (string) -#sout-transcode-vfilter= +# Skip ads (boolean) +#playlist-skip-ads=1 -# Audio encoder (string) -#sout-transcode-aenc= +# Show shoutcast adult content (boolean) +#shoutcast-show-adult=0 -# Destination audio codec (string) -#sout-transcode-acodec= +[es] # MPEG-I/II/4 / A52 / DTS / MLP audio -# Audio bitrate (integer) -#sout-transcode-ab=96 +# Frames per Second (float) +#es-fps=25.000000 -# Audio Language (string) -#sout-transcode-alang= +[ps] # MPEG-PS demuxer -# Audio channels (integer) -#sout-transcode-channels=0 +# Trust MPEG timestamps (boolean) +#ps-trust-timestamps=1 -# Audio sample rate (integer) -#sout-transcode-samplerate=0 +[subtitle] # Text subtitles parser -# Synchronise on audio track (boolean) -#sout-transcode-audio-sync=0 +# Frames per second (float) +#sub-fps=0.000000 -# Audio filter (string) -#sout-transcode-afilter= +# Subtitles delay (integer) +#sub-delay=0 -# Subtitles encoder (string) -#sout-transcode-senc= +# Subtitles format (string) +#sub-type=auto -# Destination subtitles codec (string) -#sout-transcode-scodec= +# Subtitles description (string) +#sub-description= -# Destination subtitles codec (boolean) -#sout-transcode-soverlay=0 +[rawaud] # Raw audio demuxer -# Overlays (string) -#sout-transcode-sfilter= +# Audio channels (integer) +#rawaud-channels=2 -# OSD menu (boolean) -#sout-transcode-osd=0 +# Audio samplerate (Hz) (integer) +#rawaud-samplerate=48000 -# Number of threads (integer) -#sout-transcode-threads=0 +# FOURCC code of raw input format (string) +#rawaud-fourcc=s16l -# High priority (boolean) -#sout-transcode-high-priority=0 +# Forces the audio language (string) +#rawaud-lang=eng -[stream_out_raop] # Remote Audio Output Protocol stream output +[mod] # MOD demuxer (libmodplug) -# Host (string) -#sout-raop-host= +# Noise reduction (boolean) +#mod-noisereduction=1 -# Password (string) -#sout-raop-password= +# Reverb (boolean) +#mod-reverb=0 -# Password file (string) -#sout-raop-password-file= +# Reverberation level (integer) +#mod-reverb-level=0 -# Volume (integer) -#sout-raop-volume=100 +# Reverberation delay (integer) +#mod-reverb-delay=40 -[stream_out_display] # Display stream output +# Mega bass (boolean) +#mod-megabass=0 -# Enable audio (boolean) -#sout-display-audio=1 +# Mega bass level (integer) +#mod-megabass-level=0 -# Enable video (boolean) -#sout-display-video=1 +# Mega bass cutoff (integer) +#mod-megabass-range=10 -# Delay (ms) (integer) -#sout-display-delay=100 +# Surround (boolean) +#mod-surround=0 -[stream_out_smem] # Stream output to memory buffer +# Surround level (integer) +#mod-surround-level=0 -# Time Synchronized output (boolean) -#sout-smem-time-sync=1 +# Surround delay (ms) (integer) +#mod-surround-delay=5 -[stream_out_bridge] # Bridge stream output +[mjpeg] # M-JPEG camera demuxer -# ID (integer) -#sout-bridge-out-id=0 +# Frames per Second (float) +#mjpeg-fps=0.000000 -# Destination bridge-in name (string) -#sout-bridge-out-in-name=default +[image] # Image demuxer -# Delay (integer) -#sout-bridge-in-delay=0 +# ES ID (integer) +#image-id=-1 -# ID Offset (integer) -#sout-bridge-in-id-offset=8192 +# Group (integer) +#image-group=0 -# Name of current instance (string) -#sout-bridge-in-name=default +# Decode (boolean) +#image-decode=1 -# Fallback to placeholder stream when out of data (boolean) -#sout-bridge-in-placeholder=0 +# Forced chroma (string) +#image-chroma= -# Placeholder delay (integer) -#sout-bridge-in-placeholder-delay=200 +# Duration in seconds (float) +#image-duration=10.000000 -# Wait for I frame before toggling placeholder (boolean) -#sout-bridge-in-placeholder-switch-on-iframe=1 +# Frame rate (string) +#image-fps=10/1 -[stream_out_langfromtelx] # Dynamic language setting from teletext +# Real-time (boolean) +#image-realtime=0 -# Elementary Stream ID (integer) -#sout-langfromtelx-id=0 +[h264] # H264 video demuxer -# Magazine (integer) -#sout-langfromtelx-magazine=7 +# Frames per Second (float) +#h264-fps=25.000000 -# Page (integer) -#sout-langfromtelx-page=153 +[rawvid] # Raw video demuxer -# Row (integer) -#sout-langfromtelx-row=1 +# Frames per Second (string) +#rawvid-fps= -[stream_out_rtp] # RTP stream output +# Width (integer) +#rawvid-width=0 -# Destination (string) -#sout-rtp-dst= +# Height (integer) +#rawvid-height=0 -# SDP (string) -#sout-rtp-sdp= +# Force chroma (Use carefully) (string) +#rawvid-chroma= -# Muxer (string) -#sout-rtp-mux= +# Aspect ratio (string) +#rawvid-aspect-ratio= -# SAP announcing (boolean) -#sout-rtp-sap=0 +[rawdv] # DV (Digital Video) demuxer -# Session name (string) -#sout-rtp-name= +# Hurry up (boolean) +#rawdv-hurry-up=0 -# Session description (string) -#sout-rtp-description= +[mkv] # Matroska stream demuxer -# Session URL (string) -#sout-rtp-url= +# Respect ordered chapters (boolean) +#mkv-use-ordered-chapters=1 -# Session email (string) -#sout-rtp-email= +# Chapter codecs (boolean) +#mkv-use-chapter-codec=1 -# Session phone number (string) -#sout-rtp-phone= +# Preload MKV files in the same directory (boolean) +#mkv-preload-local-dir=1 -# Transport protocol (string) -#sout-rtp-proto=udp +# Seek based on percent not time (boolean) +#mkv-seek-percent=0 -# Port (integer) -#sout-rtp-port=5004 +# Dummy Elements (boolean) +#mkv-use-dummy=0 -# Audio port (integer) -#sout-rtp-port-audio=0 +[vc1] # VC1 video demuxer -# Video port (integer) -#sout-rtp-port-video=0 +# Frames per Second (float) +#vc1-fps=25.000000 -# Hop limit (TTL) (integer) -#sout-rtp-ttl=-1 +[avformat] # Avformat demuxer -# RTP/RTCP multiplexing (boolean) -#sout-rtp-rtcp-mux=0 +# Format name (string) +#ffmpeg-format= -# Caching value (ms) (integer) -#sout-rtp-caching=300 +# Avformat mux (string) +#ffmpeg-mux= -# SRTP key (hexadecimal) (string) -#sout-rtp-key= +[access_http] # HTTP input -# SRTP salt (hexadecimal) (string) -#sout-rtp-salt= +# HTTP proxy (string) +#http-proxy= -# MP4A LATM (boolean) -#sout-rtp-mp4a-latm=0 +# HTTP proxy password (string) +#http-proxy-pwd= -# RTSP session timeout (s) (integer) -#rtsp-timeout=60 +# HTTP referer value (string) +#http-referrer= -# Username (string) -#sout-rtsp-user= +# User Agent (string) +#http-user-agent= -# Password (string) -#sout-rtsp-pwd= +# Auto re-connect (boolean) +#http-reconnect=0 -[xcb_xv] # XVideo output (XCB) +# Continuous stream (boolean) +#http-continuous=0 -# XVideo adaptor number (integer) -#xvideo-adaptor=-1 +# Forward Cookies (boolean) +#http-forward-cookies=1 -# XVideo format id (integer) -#xvideo-format-id=0 +[access_udp] # UDP input -[fb] # GNU/Linux framebuffer video output +[dvdnav] # DVDnav Input -# Framebuffer device (string) -#fbdev=/dev/fb0 +# DVD angle (integer) +#dvdnav-angle=1 -# Run fb on current tty (boolean) -#fb-tty=1 +# Start directly in menu (boolean) +#dvdnav-menu=1 -# Image format (default RGB) (string) -#fb-chroma= +[linsys_sdi] # SDI Input -# Framebuffer resolution to use (integer) -#fb-mode=4 +# Link # (integer) +#linsys-sdi-link=0 -# Framebuffer uses hw acceleration (boolean) -#fb-hw-accel=1 +# Video ID (integer) +#linsys-sdi-id-video=0 -[xcb_window] # X11 video window (XCB) +# Aspect ratio (string) +#linsys-sdi-aspect-ratio= -# X11 display (string) -#x11-display= +# Audio configuration (string) +#linsys-sdi-audio=0=1,1 -[vdummy] # Dummy video output +# Teletext configuration (string) +#linsys-sdi-telx= -# Dummy image chroma format (string) -#dummy-chroma= +# Teletext language (string) +#linsys-sdi-telx-lang= -[vout_sdl] # Simple DirectMedia Layer video output +[rtp] # Real-Time Protocol (RTP) input -# SDL chroma format (string) -#sdl-chroma= +# RTCP (local) port (integer) +#rtcp-port=0 -[xcb_x11] # X11 video output (XCB) +# SRTP key (hexadecimal) (string) +#srtp-key= -[yuv] # YUV video output +# SRTP salt (hexadecimal) (string) +#srtp-salt= -# device, fifo or filename (string) -#yuv-file=stream.yuv +# Maximum RTP sources (integer) +#rtp-max-src=1 -# Chroma used (string) -#yuv-chroma= +# RTP source timeout (sec) (integer) +#rtp-timeout=5 -# YUV4MPEG2 header (default disabled) (boolean) -#yuv-yuv4mpeg2=0 +# Maximum RTP sequence number dropout (integer) +#rtp-max-dropout=3000 -[vmem] # Video memory output +# Maximum RTP sequence number misordering (integer) +#rtp-max-misorder=100 -# Width (integer) -#vmem-width=320 +# RTP payload format assumed for dynamic payloads (string) +#rtp-dynamic-pt= -# Height (integer) -#vmem-height=200 +[xcb_screen] # Screen capture (with X11/XCB) -# Pitch (integer) -#vmem-pitch=640 +# Frame rate (float) +#screen-fps=2.000000 -# Chroma (string) -#vmem-chroma=RV16 +# Region left column (integer) +#screen-left=0 -[folder] # Folder meta data +# Region top row (integer) +#screen-top=0 -# Album art filename (string) -#album-art-filename= +# Capture region width (integer) +#screen-width=0 -[packetizer_mpegvideo] # MPEG-I/II video packetizer +# Capture region height (integer) +#screen-height=0 -# Sync on Intra Frame (boolean) -#packetizer-mpegvideo-sync-iframe=0 +# Follow the mouse (boolean) +#screen-follow-mouse=0 -[notify] # LibNotify Notification Plugin +[dtv] # Digital Television and Radio -# Timeout (ms) (integer) -#notify-timeout=4000 +# DVB adapter (integer) +#dvb-adapter=0 -[telepathy] # Telepathy "Now Playing" (MissionControl) +# DVB device (integer) +#dvb-device=0 -[oldrc] # Remote control interface +# Do not demultiplex (boolean) +#dvb-budget-mode=0 -# Show stream position (boolean) -#rc-show-pos=0 +# Frequency (Hz) (integer) +#dvb-frequency=0 -# Fake TTY (boolean) -#rc-fake-tty=0 +# Spectrum inversion (integer) +#dvb-inversion=-1 -# UNIX socket command input (string) -#rc-unix= +# Bandwidth (MHz) (integer) +#dvb-bandwidth=0 -# TCP command input (string) -#rc-host= +# Transmission mode (integer) +#dvb-transmission=0 -[motion] # motion control interface +# Guard interval (string) +#dvb-guard= -# Use the rotate video filter instead of transform (boolean) -#motion-use-rotate=0 +# High-priority code rate (string) +#dvb-code-rate-hp= -[netsync] # Network synchronization +# Low-priority code rate (string) +#dvb-code-rate-lp= -# Network master clock (boolean) -#netsync-master=0 +# Hierarchy mode (integer) +#dvb-hierarchy=-1 -# Master server ip address (string) -#netsync-master-ip= +# Layer A modulation (string) +#dvb-a-modulation= -# UDP timeout (in ms) (integer) -#netsync-timeout=500 +# Layer A code rate (string) +#dvb-a-fec= -[gestures] # Mouse gestures control interface +# Layer A segments count (integer) +#dvb-a-count=0 -# Motion threshold (10-100) (integer) -#gestures-threshold=30 +# Layer A time interleaving (integer) +#dvb-a-interleaving=0 -# Trigger button (string) -#gestures-button=right +# Layer B modulation (string) +#dvb-b-modulation= -[hotkeys] # Hotkeys management interface +# Layer B code rate (string) +#dvb-b-fec= -# MouseWheel up-down axis Control (integer) -#hotkeys-mousewheel-mode=0 +# Layer B segments count (integer) +#dvb-b-count=0 -[dbus] # D-Bus control interface +# Layer B time interleaving (integer) +#dvb-b-interleaving=0 -# Unique DBUS service id (org.mpris.vlc-) (boolean) -#dbus-unique-service-id=0 +# Layer C modulation (string) +#dvb-c-modulation= -[transform] # Video transformation filter +# Layer C code rate (string) +#dvb-c-fec= -# Transform type (string) -#transform-type=90 +# Layer C segments count (integer) +#dvb-c-count=0 -[hqdn3d] # High Quality 3D Denoiser filter +# Layer C time interleaving (integer) +#dvb-c-interleaving=0 -# Spatial luma strength (0-254) (float) -#hqdn3d-luma-spat=4.000000 +# Modulation / Constellation (string) +#dvb-modulation= -# Spatial chroma strength (0-254) (float) -#hqdn3d-chroma-spat=3.000000 +# Symbol rate (bauds) (integer) +#dvb-srate=0 -# Temporal luma strength (0-254) (float) -#hqdn3d-luma-temp=6.000000 +# FEC code rate (string) +#dvb-fec= -# Temporal chroma strength (0-254) (float) -#hqdn3d-chroma-temp=4.500000 +# Pilot (integer) +#dvb-pilot=-1 -[croppadd] # Video scaling filter +# Roll-off factor (integer) +#dvb-rolloff=-1 -# Pixels to crop from top (integer) -#croppadd-croptop=0 +# Transport stream ID (integer) +#dvb-ts-id=0 -# Pixels to crop from bottom (integer) -#croppadd-cropbottom=0 +# Polarization (Voltage) (string) +#dvb-polarization= -# Pixels to crop from left (integer) -#croppadd-cropleft=0 +# (integer) +#dvb-voltage=13 -# Pixels to crop from right (integer) -#croppadd-cropright=0 +# High LNB voltage (boolean) +#dvb-high-voltage=0 -# Pixels to padd to top (integer) -#croppadd-paddtop=0 +# Local oscillator low frequency (kHz) (integer) +#dvb-lnb-low=0 -# Pixels to padd to bottom (integer) -#croppadd-paddbottom=0 +# Local oscillator high frequency (kHz) (integer) +#dvb-lnb-high=0 -# Pixels to padd to left (integer) -#croppadd-paddleft=0 +# Universal LNB switch frequency (kHz) (integer) +#dvb-lnb-switch=11700000 -# Pixels to padd to right (integer) -#croppadd-paddright=0 +# DiSEqC LNB number (integer) +#dvb-satno=0 -[alphamask] # Alpha mask video filter +# Continuous 22kHz tone (integer) +#dvb-tone=-1 -# Transparency mask (string) -#alphamask-mask= +[access_jack] # JACK audio input -[motionblur] # Motion blur filter +# Pace (boolean) +#jack-input-use-vlc-pace=0 -# Blur factor (1-127) (integer) -#blur-factor=80 +# Auto Connection (boolean) +#jack-input-auto-connect=0 -[osdmenu] # On Screen Display menu +[linsys_hdsdi] # HD-SDI Input -# X coordinate (integer) -#osdmenu-x=-1 +# Link # (integer) +#linsys-hdsdi-link=0 -# Y coordinate (integer) -#osdmenu-y=-1 +# Video ID (integer) +#linsys-hdsdi-id-video=0 -# Menu position (integer) -#osdmenu-position=8 +# Aspect ratio (string) +#linsys-hdsdi-aspect-ratio= -# Configuration file (string) -#osdmenu-file=/usr/share/vlc/osdmenu/default.cfg +# Audio configuration (string) +#linsys-hdsdi-audio=0=1,1 -# Path to OSD menu images (string) -#osdmenu-file-path= +[v4l2] # Video4Linux2 input -# Menu timeout (integer) -#osdmenu-timeout=15 +# Device (string) +#v4l2-dev=/dev/video0 -# Menu update interval (integer) -#osdmenu-update=300 +# Standard (string) +#v4l2-standard= -# Alpha transparency value (default 255) (integer) -#osdmenu-alpha=255 +# Video input chroma format (string) +#v4l2-chroma= -[ball] # Ball video filter +# Input (integer) +#v4l2-input=0 -# Ball color (string) -#ball-color=red +# Audio input (integer) +#v4l2-audio-input=-1 -# Ball speed (integer) -#ball-speed=4 +# Width (integer) +#v4l2-width=-1 -# Ball size (integer) -#ball-size=10 +# Height (integer) +#v4l2-height=-1 -# Gradient threshold (integer) -#ball-gradient-threshold=40 +# Picture aspect-ratio n:m (string) +#v4l2-aspect-ratio=4:3 -# Edge visible (boolean) -#ball-edge-visible=1 +# Framerate (float) +#v4l2-fps=0.000000 -[sepia] # Sepia video filter +# Use libv4l2 (boolean) +#v4l2-use-libv4l2=0 -# Sepia intensity (integer) -#sepia-intensity=120 +# Tuner id (integer) +#v4l2-tuner=0 -[adjust] # Image properties filter +# Frequency (integer) +#v4l2-tuner-frequency=-1 -# Image contrast (0-2) (float) -#contrast=1.000000 +# Audio mode (integer) +#v4l2-tuner-audio-mode=-1 -# Image brightness (0-2) (float) -#brightness=1.000000 +# Reset controls (boolean) +#v4l2-controls-reset=0 -# Image hue (0-360) (integer) -#hue=0 +# Brightness (integer) +#v4l2-brightness=-1 -# Image saturation (0-3) (float) -#saturation=1.000000 +# Automatic brightness (integer) +#v4l2-brightness-auto=-1 -# Image gamma (0-10) (float) -#gamma=1.000000 +# Contrast (integer) +#v4l2-contrast=-1 -# Brightness threshold (boolean) -#brightness-threshold=0 +# Saturation (integer) +#v4l2-saturation=-1 -[panoramix] # Panoramix: wall with overlap video filter +# Hue (integer) +#v4l2-hue=-1 -# Number of columns (integer) -#panoramix-cols=-1 +# Automatic hue (integer) +#v4l2-hue-auto=-1 -# Number of rows (integer) -#panoramix-rows=-1 +# White balance temperature (K) (integer) +#v4l2-white-balance-temperature=-1 -# length of the overlapping area (in %) (integer) -#panoramix-bz-length=100 +# Automatic white balance (integer) +#v4l2-auto-white-balance=-1 -# height of the overlapping area (in %) (integer) -#panoramix-bz-height=100 +# Red balance (integer) +#v4l2-red-balance=-1 -# Attenuation (boolean) -#panoramix-attenuate=1 +# Blue balance (integer) +#v4l2-blue-balance=-1 -# Attenuation, begin (in %) (integer) -#panoramix-bz-begin=0 +# Gamma (integer) +#v4l2-gamma=-1 -# Attenuation, middle (in %) (integer) -#panoramix-bz-middle=50 +# Automatic gain (integer) +#v4l2-autogain=-1 -# Attenuation, end (in %) (integer) -#panoramix-bz-end=100 +# Gain (integer) +#v4l2-gain=-1 -# middle position (in %) (integer) -#panoramix-bz-middle-pos=50 +# Sharpness (integer) +#v4l2-sharpness=-1 -# Gamma (Red) correction (float) -#panoramix-bz-gamma-red=1.000000 - -# Gamma (Green) correction (float) -#panoramix-bz-gamma-green=1.000000 +# Chroma gain (integer) +#v4l2-chroma-gain=-1 -# Gamma (Blue) correction (float) -#panoramix-bz-gamma-blue=1.000000 +# Automatic chroma gain (integer) +#v4l2-chroma-gain-auto=-1 -# Black Crush for Red (integer) -#panoramix-bz-blackcrush-red=140 +# Power line frequency (integer) +#v4l2-power-line-frequency=-1 -# Black Crush for Green (integer) -#panoramix-bz-blackcrush-green=140 +# Backlight compensation (integer) +#v4l2-backlight-compensation=-1 -# Black Crush for Blue (integer) -#panoramix-bz-blackcrush-blue=140 +# Band-stop filter (integer) +#v4l2-band-stop-filter=-1 -# White Crush for Red (integer) -#panoramix-bz-whitecrush-red=200 +# Horizontal flip (boolean) +#v4l2-hflip=0 -# White Crush for Green (integer) -#panoramix-bz-whitecrush-green=200 +# Vertical flip (boolean) +#v4l2-vflip=0 -# White Crush for Blue (integer) -#panoramix-bz-whitecrush-blue=200 +# Rotate (degrees) (integer) +#v4l2-rotate=-1 -# Black Level for Red (integer) -#panoramix-bz-blacklevel-red=150 +# Color killer (integer) +#v4l2-color-killer=-1 -# Black Level for Green (integer) -#panoramix-bz-blacklevel-green=150 +# Color effect (integer) +#v4l2-color-effect=-1 -# Black Level for Blue (integer) -#panoramix-bz-blacklevel-blue=150 +# Audio volume (integer) +#v4l2-audio-volume=-1 -# White Level for Red (integer) -#panoramix-bz-whitelevel-red=0 +# Audio balance (integer) +#v4l2-audio-balance=-1 -# White Level for Green (integer) -#panoramix-bz-whitelevel-green=0 +# Mute (boolean) +#v4l2-audio-mute=0 -# White Level for Blue (integer) -#panoramix-bz-whitelevel-blue=0 +# Bass level (integer) +#v4l2-audio-bass=-1 -# Active windows (string) -#panoramix-active= +# Treble level (integer) +#v4l2-audio-treble=-1 -[puzzle] # Puzzle interactive game video filter +# Loudness mode (boolean) +#v4l2-audio-loudness=0 -# Number of puzzle rows (integer) -#puzzle-rows=4 +# v4l2 driver controls (string) +#v4l2-set-ctrls= -# Number of puzzle columns (integer) -#puzzle-cols=4 +[access_alsa] # ALSA audio capture input -# Make one tile a black slot (boolean) -#puzzle-black-slot=0 +# Stereo (boolean) +#alsa-stereo=1 -[dynamicoverlay] # Dynamic video overlay +# Capture format (default s16l) (string) +#alsa-format=s16l -# Input FIFO (string) -#overlay-input= +# Samplerate (integer) +#alsa-samplerate=48000 -# Output FIFO (string) -#overlay-output= +[access_oss] # OSS input -[swscale] # Video scaling filter +# Stereo (boolean) +#oss-stereo=1 -# Scaling mode (integer) -#swscale-mode=2 +# Samplerate (integer) +#oss-samplerate=48000 -[canvas] # Canvas video filter +[dvdread] # DVDRead Input (no menu support) -# Output width (integer) -#canvas-width=0 +# DVD angle (integer) +#dvdread-angle=1 -# Output height (integer) -#canvas-height=0 +[access_shm] # Shared memory framebuffer -# Output picture aspect ratio (string) -#canvas-aspect= +# Frame rate (float) +#shm-fps=10.000000 -# Pad video (boolean) -#canvas-padd=1 +# Frame buffer width (integer) +#shm-width=800 -[clone] # Clone video filter +# Frame buffer height (integer) +#shm-height=480 -# Number of clones (integer) -#clone-count=2 +# Frame buffer depth (integer) +#shm-depth=32 -# Video output modules (string) -#clone-vout-list= +[access_imem] # Memory input -[postproc] # Video post processing filter +# ID (integer) +#imem-id=-1 -# Post processing quality (integer) -#postproc-q=6 +# Group (integer) +#imem-group=0 -# FFmpeg post processing filter chains (string) -#postproc-name=default +# Category (integer) +#imem-cat=0 -[remoteosd] # Remote-OSD over VNC +# Codec (string) +#imem-codec= -# VNC Host (string) -#rmtosd-host=myvdr +# Language (string) +#imem-language= -# VNC Port (integer) -#rmtosd-port=20001 +# Sample rate (integer) +#imem-samplerate=0 -# VNC Password (string) -#rmtosd-password= +# Channels count (integer) +#imem-channels=0 -# VNC poll interval (integer) -#rmtosd-update=1000 +# Width (integer) +#imem-width=0 -# VNC polling (boolean) -#rmtosd-vnc-polling=0 +# Height (integer) +#imem-height=0 -# Mouse events (boolean) -#rmtosd-mouse-events=0 +# Display aspect ratio (string) +#imem-dar= -# Key events (boolean) -#rmtosd-key-events=0 +# Frame rate (string) +#imem-fps= -# Alpha transparency value (default 255) (integer) -#rmtosd-alpha=255 +# Size (integer) +#imem-size=0 -[colorthres] # Color threshold filter +[pvr] # IVTV MPEG Encoding cards input -# Color (integer) -#colorthres-color=16711680 +# Device (string) +#pvr-device=/dev/video0 -# Saturation threshold (integer) -#colorthres-saturationthres=20 +# Radio device (string) +#pvr-radio-device=/dev/radio0 -# Similarity threshold (integer) -#colorthres-similaritythres=15 +# Norm (integer) +#pvr-norm=0 -[erase] # Erase video filter +# Width (integer) +#pvr-width=-1 -# Image mask (string) -#erase-mask= +# Height (integer) +#pvr-height=-1 -# X coordinate (integer) -#erase-x=0 +# Frequency (integer) +#pvr-frequency=-1 -# Y coordinate (integer) -#erase-y=0 +# Framerate (integer) +#pvr-framerate=-1 -[audiobargraph_v] # Audio Bar Graph Video sub source +# Key interval (integer) +#pvr-keyint=-1 -# Value of the audio channels levels (string) -#audiobargraph_v-i_values= +# Framerate (integer) +#pvr-bframes=-1 -# X coordinate (integer) -#audiobargraph_v-x=0 +# Bitrate (integer) +#pvr-bitrate=-1 -# Y coordinate (integer) -#audiobargraph_v-y=0 +# Bitrate peak (integer) +#pvr-bitrate-peak=-1 -# Transparency of the bargraph (integer) -#audiobargraph_v-transparency=255 +# Bitrate mode (integer) +#pvr-bitrate-mode=-1 -# Bargraph position (integer) -#audiobargraph_v-position=-1 +# Audio bitmask (integer) +#pvr-audio-bitmask=-1 -# Alarm (integer) -#audiobargraph_v-alarm=0 +# Volume (integer) +#pvr-audio-volume=-1 -# Bar width in pixel (default : 10) (integer) -#audiobargraph_v-barWidth=10 +# Channel (integer) +#pvr-channel=-1 -[gaussianblur] # Gaussian blur video filter +[access_vdr] # VDR recordings -# Gaussian's std deviation (float) -#gaussianblur-sigma=2.000000 +# Chapter offset in ms (integer) +#vdr-chapter-offset=0 -[sharpen] # Sharpen video filter +# Frame rate (float) +#vdr-fps=25.000000 -# Sharpen strength (0-2) (float) -#sharpen-sigma=0.050000 +[access_smb] # SMB input -[posterize] # Posterize video filter +# SMB user name (string) +#smb-user= -# Posterize level (integer) -#posterize-level=6 +# SMB password (string) +#smb-pwd= -[wall] # Wall video filter +# SMB domain (string) +#smb-domain= -# Number of columns (integer) -#wall-cols=3 +[access_ftp] # FTP input -# Number of rows (integer) -#wall-rows=3 +# FTP user name (string) +#ftp-user=anonymous -# Active windows (string) -#wall-active= - -# Element aspect ratio (string) -#wall-element-aspect=16:9 +# FTP password (string) +#ftp-pwd=anonymous@example.com -[mosaic] # Mosaic video sub source +# FTP account (string) +#ftp-account=anonymous -# Transparency (integer) -#mosaic-alpha=255 +[filesystem] # File input -# Height (integer) -#mosaic-height=100 +# Subdirectory behavior (string) +#recursive=expand -# Width (integer) -#mosaic-width=100 +# Ignored extensions (string) +#ignore-filetypes=m3u,db,nfo,ini,jpg,jpeg,ljpg,gif,png,pgm,pgmyuv,pbm,pam,tga,bmp,pnm,xpm,xcf,pcx,tif,tiff,lbm,sfv,txt,sub,idx,srt,cue,ssa -# Mosaic alignment (integer) -#mosaic-align=5 +[access_mms] # Microsoft Media Server (MMS) input -# Top left corner X coordinate (integer) -#mosaic-xoffset=0 +# TCP/UDP timeout (ms) (integer) +#mms-timeout=5000 -# Top left corner Y coordinate (integer) -#mosaic-yoffset=0 +# Force selection of all streams (boolean) +#mms-all=0 -# Border width (integer) -#mosaic-borderw=0 +# Maximum bitrate (integer) +#mms-maxbitrate=0 -# Border height (integer) -#mosaic-borderh=0 +# HTTP proxy (string) +#mmsh-proxy= -# Positioning method (integer) -#mosaic-position=0 +[cdda] # Audio CD input -# Number of rows (integer) -#mosaic-rows=2 +# CDDB Server (string) +#cddb-server=freedb.videolan.org -# Number of columns (integer) -#mosaic-cols=2 +# CDDB port (integer) +#cddb-port=80 -# Keep aspect ratio (boolean) -#mosaic-keep-aspect-ratio=0 +[scaletempo] # Audio tempo scaler synched with rate -# Keep original size (boolean) -#mosaic-keep-picture=0 +# Stride Length (integer) +#scaletempo-stride=30 -# Elements order (string) -#mosaic-order= +# Overlap Length (float) +#scaletempo-overlap=0.200000 -# Offsets in order (string) -#mosaic-offsets= +# Search Length (integer) +#scaletempo-search=14 -# Delay (integer) -#mosaic-delay=0 +[param_eq] # Parametric Equalizer -[antiflicker] # antiflicker video filter +# Low freq (Hz) (float) +#param-eq-lowf=100.000000 -# Window size (integer) -#antiflicker-window-size=10 +# Low freq gain (dB) (float) +#param-eq-lowgain=0.000000 -# Softening value (integer) -#antiflicker-softening-size=10 +# High freq (Hz) (float) +#param-eq-highf=10000.000000 -[subsdelay] # Subtitles delay +# High freq gain (dB) (float) +#param-eq-highgain=0.000000 -# Delay calculation mode (integer) -#subsdelay-mode=1 +# Freq 1 (Hz) (float) +#param-eq-f1=300.000000 -# Calculation factor (float) -#subsdelay-factor=2.000000 +# Freq 1 gain (dB) (float) +#param-eq-gain1=0.000000 -# Maximum overlapping subtitles (integer) -#subsdelay-overlap=3 +# Freq 1 Q (float) +#param-eq-q1=3.000000 -# Minimum alpha value (integer) -#subsdelay-min-alpha=70 +# Freq 2 (Hz) (float) +#param-eq-f2=1000.000000 -# Interval between two disappearances (integer) -#subsdelay-min-stops=1000 +# Freq 2 gain (dB) (float) +#param-eq-gain2=0.000000 -# Interval between appearance and disappearance (integer) -#subsdelay-min-start-stop=1000 +# Freq 2 Q (float) +#param-eq-q2=3.000000 -# Interval between disappearance and appearance (integer) -#subsdelay-min-stop-start=1000 +# Freq 3 (Hz) (float) +#param-eq-f3=3000.000000 -[rss] # RSS and Atom feed display +# Freq 3 gain (dB) (float) +#param-eq-gain3=0.000000 -# Feed URLs (string) -#rss-urls= +# Freq 3 Q (float) +#param-eq-q3=3.000000 -# X offset (integer) -#rss-x=0 +[compressor] # Dynamic range compressor -# Y offset (integer) -#rss-y=0 +# RMS/peak (float) +#compressor-rms-peak=0.000000 -# Text position (integer) -#rss-position=-1 +# Attack time (float) +compressor-attack=1.400000 -# Opacity (integer) -#rss-opacity=255 +# Release time (float) +compressor-release=1.900000 -# Color (integer) -#rss-color=16777215 +# Threshold level (float) +compressor-threshold=0.000000 -# Font size, pixels (integer) -#rss-size=-1 +# Ratio (float) +compressor-ratio=1.000000 -# Speed of feeds (integer) -#rss-speed=100000 +# Knee radius (float) +compressor-knee=1.000000 -# Max length (integer) -#rss-length=60 +# Makeup gain (float) +compressor-makeup-gain=0.000000 -# Refresh time (integer) -#rss-ttl=1800 +[samplerate] # Secret Rabbit Code (libsamplerate) resampler -# Feed images (boolean) -#rss-images=1 +# Sample rate converter type (integer) +#src-converter-type=2 -# Title display mode (integer) -#rss-title=-1 +[mono] # Audio filter for stereo to mono conversion -[deinterlace] # Deinterlacing video filter +# Use downmix algorithm (boolean) +#sout-mono-downmix=1 -# Streaming deinterlace mode (string) -#sout-deinterlace-mode=blend +# Select channel to keep (integer) +#sout-mono-channel=-1 -# Phosphor chroma mode for 4:2:0 input (integer) -#sout-deinterlace-phosphor-chroma=2 +[speex_resampler] # Speex resampler -# Phosphor old field dimmer strength (integer) -#sout-deinterlace-phosphor-dimmer=2 +# Resampling quality (integer) +#speex-resampler-quality=4 -[marq] # Marquee display +[audiobargraph_a] # Audio part of the BarGraph function -# Text (string) -#marq-marquee=VLC +# TCP address to use (default localhost) (string) +#audiobargraph_a-address=localhost -# X offset (integer) -#marq-x=0 +# TCP port to use (default 12345) (integer) +#audiobargraph_a-port=12345 -# Y offset (integer) -#marq-y=0 +# Defines if BarGraph information should be sent (default 1) (integer) +#audiobargraph_a-bargraph=1 -# Marquee position (integer) -#marq-position=-1 +# Sends the barGraph information every n audio packets (default 4) (integer) +#audiobargraph_a-bargraph_repetition=4 -# Opacity (integer) -#marq-opacity=255 +# Defines if silence alarm information should be sent (default 1) (integer) +#audiobargraph_a-silence=1 -# Color (integer) -#marq-color=16777215 +# Time window to use in ms (default 5000) (integer) +#audiobargraph_a-time_window=5000 -# Font size, pixels (integer) -#marq-size=-1 +# Minimum Audio level to raise the alarm (default 0.1) (float) +#audiobargraph_a-alarm_threshold=0.100000 -# Timeout (integer) -#marq-timeout=0 +# Time between two alarm messages in ms (default 2000) (integer) +#audiobargraph_a-repetition_time=2000 -# Refresh period in ms (integer) -#marq-refresh=1000 +# Force connection reset regularly (default 1) (integer) +#audiobargraph_a-connection_reset=1 -[atmo] # AtmoLight Filter +[dtstofloat32] # DTS Coherent Acoustics audio decoder -# Device type (integer) -#atmo-device=1 +# DTS dynamic range compression (boolean) +#dts-dynrng=1 -# Serial Port/Device (string) -#atmo-serialdev=/dev/ttyUSB0 +[a52tofloat32] # ATSC A/52 (AC-3) audio decoder -# Color when paused (boolean) -#atmo-usepausecolor=0 +# A/52 dynamic range compression (boolean) +#a52-dynrng=1 -# Pause-Red (integer) -#atmo-pcolor-red=0 +# Enable internal upmixing (boolean) +#a52-upmix=0 -# Pause-Green (integer) -#atmo-pcolor-green=0 +[spatializer] # Audio Spatializer -# Pause-Blue (integer) -#atmo-pcolor-blue=192 +# Room size (float) +#spatializer-roomsize=1.050000 -# Pause-Fadesteps (integer) -#atmo-fadesteps=50 +# Room width (float) +#spatializer-width=10.000000 -# End-Red (integer) -#atmo-ecolor-red=192 +# Wet (float) +#spatializer-wet=3.000000 -# End-Green (integer) -#atmo-ecolor-green=192 +# Dry (float) +#spatializer-dry=2.000000 -# End-Blue (integer) -#atmo-ecolor-blue=192 +# Damp (float) +#spatializer-damp=1.000000 -# End-Fadesteps (integer) -#atmo-efadesteps=50 +[normvol] # Volume normalizer -# Count of AtmoLight channels (integer) -#atmo-dmx-channels=5 +# Number of audio buffers (integer) +#norm-buff-size=20 -# DMX address for each channel (string) -#atmo-dmx-chbase=0,3,6,9,12 +# Maximal volume level (float) +#norm-max-level=2.000000 -# Count of channels (integer) -#atmo-momo-channels=3 +[headphone_channel_mixer] # Headphone virtual spatialization effect -# Count of fnordlicht's (integer) -#atmo-fnordlicht-amount=2 +# Characteristic dimension (integer) +#headphone-dim=10 -# Number of zones on top (integer) -#atmo-zones-top=1 +# Compensate delay (boolean) +#headphone-compensate=0 -# Number of zones on bottom (integer) -#atmo-zones-bottom=1 +# No decoding of Dolby Surround (boolean) +#headphone-dolby=0 -# Zones on left / right side (integer) -#atmo-zones-lr=1 +[equalizer] # Equalizer with 10 bands -# Calculate a average zone (boolean) -#atmo-zone-summary=0 +# Equalizer preset (string) +#equalizer-preset=flat -# Edge Weightning (integer) -#atmo-edgeweightning=3 +# Bands gain (string) +#equalizer-bands= -# Brightness (integer) -#atmo-brightness=100 +# Two pass (boolean) +#equalizer-2pass=0 -# Darkness Limit (integer) -#atmo-darknesslimit=3 +# Global gain (float) +equalizer-preamp=0.000000 -# Hue windowing (integer) -#atmo-huewinsize=3 +[chorus_flanger] # Sound Delay -# Sat windowing (integer) -#atmo-satwinsize=3 +# Delay time (float) +#delay-time=40.000000 -# Output Color filter mode (integer) -#atmo-filtermode=1 +# Sweep Depth (float) +#sweep-depth=6.000000 -# Filter length (ms) (integer) -#atmo-meanlength=300 +# Sweep Rate (float) +#sweep-rate=6.000000 -# Filter threshold (integer) -#atmo-meanthreshold=40 +# Feedback Gain (float) +#feedback-gain=0.500000 -# Filter Smoothness (in %) (integer) -#atmo-percentnew=50 +# Wet mix (float) +#wet-mix=0.400000 -# Frame delay (ms) (integer) -#atmo-framedelay=18 +# Dry Mix (float) +#dry-mix=0.400000 -# Channel 0: summary (integer) -#atmo-channel_0=4 +[skins2] # Skinnable Interface -# Channel 1: left (integer) -#atmo-channel_1=3 +# Skin to use (string) +skins2-last=/usr/share/vlc/skins2/default.vlt -# Channel 2: right (integer) -#atmo-channel_2=1 +# Config of last used skin (string) +skins2-config=[aboutwin aboutwinwin-main 0 0 330 171 0][eqwin eqwin-main 0 0 330 171 0][fullscreenController fsc_normal 30 30 500 500 1][main normal 0 0 500 350 1][plwin plwin-normal 0 0 500 350 0] -# Channel 3: top (integer) -#atmo-channel_3=0 +# Enable transparency effects (boolean) +#skins2-transparency=0 -# Channel 4: bottom (integer) -#atmo-channel_4=2 +# Use a skinned playlist (boolean) +#skinned-playlist=1 -# Channel / Zone Assignment (string) -#atmo-channels= +# Display video in a skinned window if any (boolean) +#skinned-video=1 -# Use Software White adjust (boolean) -#atmo-whiteadj=1 +[qt4] # Qt interface -# White Red (integer) -#atmo-white-red=255 +# Start in minimal view (without menus) (boolean) +#qt-minimal-view=0 -# White Green (integer) -#atmo-white-green=255 +# Systray icon (boolean) +#qt-system-tray=1 -# White Blue (integer) -#atmo-white-blue=255 +# Show notification popup on track change (boolean) +#qt-notification=1 -# Zone 0: Top gradient (string) -#atmo-gradient_zone_0= +# Start VLC with only a systray icon (boolean) +#qt-start-minimized=0 -# Zone 1: Right gradient (string) -#atmo-gradient_zone_1= +# Pause the video playback when minimized (boolean) +#qt-pause-minimized=0 -# Zone 2: Bottom gradient (string) -#atmo-gradient_zone_2= +# Windows opacity between 0.1 and 1 (float) +#qt-opacity=1.000000 -# Zone 3: Left gradient (string) -#atmo-gradient_zone_3= +# Fullscreen controller opacity between 0.1 and 1 (float) +#qt-fs-opacity=0.800000 -# Zone 4: Summary gradient (string) -#atmo-gradient_zone_4= +# Resize interface to the native video size (boolean) +#qt-video-autoresize=1 -# Gradient bitmap searchpath (string) -#atmo-gradient_path= +# Show playing item name in window title (boolean) +#qt-name-in-title=1 -# Extracted Image Width (integer) -#atmo-width=64 +# Show a controller in fullscreen mode (boolean) +#qt-fs-controller=1 -# Extracted Image Height (integer) -#atmo-height=48 +# Save the recently played items in the menu (boolean) +#qt-recentplay=1 -# Mark analyzed pixels (boolean) -#atmo-showdots=0 +# List of words separated by | to filter (string) +#qt-recentplay-filter= -[rotate] # Rotate video filter +# Automatically save the volume on exit (boolean) +#qt-autosave-volume=1 -# Angle in degrees (integer) -#rotate-angle=30 +# Embed the file browser in open dialog (boolean) +#qt-embedded-open=0 -[extract] # Extract RGB component video filter +# Show advanced preferences over simple ones (boolean) +#qt-advanced-pref=0 -# RGB component to extract (integer) -#extract-component=16711680 +# Show unimportant error and warnings dialogs (boolean) +#qt-error-dialogs=1 -[gradient] # Gradient video filter +# Define the colors of the volume slider (string) +#qt-slider-colours=153;210;153;20;210;20;255;199;15;245;39;29 -# Distort mode (string) -#gradient-mode=gradient +# Ask for network policy at start (boolean) +qt-privacy-ask=0 -# Gradient image type (integer) -#gradient-type=0 +# Define which screen fullscreen goes (integer) +#qt-fullscreen-screennumber=-1 -# Apply cartoon effect (boolean) -#gradient-cartoon=1 +# Load extensions on startup (boolean) +#qt-autoload-extensions=1 -[scene] # Scene video filter +# Display background cone or art (boolean) +#qt-bgcone=1 -# Image format (string) -#scene-format=png +# Expanding background cone or art. (boolean) +#qt-bgcone-expands=0 -# Image width (integer) -#scene-width=-1 +# Allow automatic icon changes (boolean) +#qt-icon-change=1 -# Image height (integer) -#scene-height=-1 +[ncurses] # Ncurses interface -# Filename prefix (string) -#scene-prefix=scene +# Filebrowser starting point (string) +#browse-dir= -# Directory path prefix (string) -#scene-path= +[access_output_http] # HTTP stream output -# Always write to the same file (boolean) -#scene-replace=0 +# Username (string) +#sout-http-user= -# Recording ratio (integer) -#scene-ratio=50 +# Password (string) +#sout-http-pwd= -[blendbench] # Blending benchmark filter +# Mime (string) +#sout-http-mime= -# Number of time to blend (integer) -#blendbench-loops=1000 +[access_output_livehttp] # HTTP Live streaming output -# Alpha of the blended image (integer) -#blendbench-alpha=128 +# Segment length (integer) +#sout-livehttp-seglen=10 -# Image to be blended onto (string) -#blendbench-base-image= +# Number of segments (integer) +#sout-livehttp-numsegs=0 -# Chroma for the base image (string) -#blendbench-base-chroma=I420 +# Split segments anywhere (boolean) +#sout-livehttp-splitanywhere=0 -# Image which will be blended (string) -#blendbench-blend-image= +# Delete segments (boolean) +#sout-livehttp-delsegs=1 -# Chroma for the blend image (string) -#blendbench-blend-chroma=YUVA +# Use muxers rate control mechanism (boolean) +#sout-livehttp-ratecontrol=0 -[grain] # Grain video filter +# Index file (string) +#sout-livehttp-index= -# Variance (float) -#grain-variance=2.000000 +# Full URL to put in index file (string) +#sout-livehttp-index-url= -# Minimal period (integer) -#grain-period-min=1 +[access_output_file] # File stream output -# Maximal period (integer) -#grain-period-max=48 +# Append to file (boolean) +#sout-file-append=0 -[logo] # Logo sub source +# Synchronous writing (boolean) +#sout-file-sync=0 -# Logo filenames (string) -#logo-file= +[access_output_shout] # IceCAST output -# X coordinate (integer) -#logo-x=-1 +# Stream name (string) +#sout-shout-name=VLC media player - Live stream -# Y coordinate (integer) -#logo-y=-1 +# Stream description (string) +#sout-shout-description=Live stream from VLC media player -# Logo individual image time in ms (integer) -#logo-delay=1000 +# Stream MP3 (boolean) +#sout-shout-mp3=0 -# Logo animation # of loops (integer) -#logo-repeat=-1 - -# Opacity of the logo (integer) -#logo-opacity=255 +# Genre description (string) +#sout-shout-genre=Alternative -# Logo position (integer) -#logo-position=-1 +# URL description (string) +#sout-shout-url=http://www.videolan.org/vlc -[gradfun] # Gradfun video filter +# Bitrate (string) +#sout-shout-bitrate= -# Radius (integer) -#gradfun-radius=16 +# Samplerate (string) +#sout-shout-samplerate= -# Strength (float) -#gradfun-strength=1.200000 +# Number of channels (string) +#sout-shout-channels= -[mirror] # Mirror video filter +# Ogg Vorbis Quality (string) +#sout-shout-quality= -# Mirror orientation (integer) -#mirror-split=0 +# Stream public (boolean) +#sout-shout-public=0 -# Direction (integer) -#mirror-direction=0 +[access_output_udp] # UDP stream output -[bluescreen] # Bluescreen video filter +# Caching value (ms) (integer) +#sout-udp-caching=300 -# Bluescreen U value (integer) -#bluescreen-u=120 +# Group packets (integer) +#sout-udp-group=1 -# Bluescreen V value (integer) -#bluescreen-v=90 +[folder] # Folder meta data -# Bluescreen U tolerance (integer) -#bluescreen-ut=17 +# Album art filename (string) +#album-art-filename= -# Bluescreen V tolerance (integer) -#bluescreen-vt=17 +[visual] # Visualizer filter -[playlist] # Playlist +# Effects list (string) +#effect-list=spectrum -# Skip ads (boolean) -#playlist-skip-ads=1 +# Video width (integer) +#effect-width=800 -# Show shoutcast adult content (boolean) -#shoutcast-show-adult=0 +# Video height (integer) +#effect-height=500 -[vc1] # VC1 video demuxer +# Show 80 bands instead of 20 (boolean) +#visual-80-bands=1 -# Frames per Second (float) -#vc1-fps=25.000000 +# Draw peaks in the analyzer (boolean) +#visual-peaks=1 -[ps] # MPEG-PS demuxer +# Enable original graphic spectrum (boolean) +#spect-show-original=0 -# Trust MPEG timestamps (boolean) -#ps-trust-timestamps=1 +# Draw the base of the bands (boolean) +#spect-show-base=1 -[live555] # RTP/RTSP/SDP demuxer (using Live555) +# Base pixel radius (integer) +#spect-radius=42 -# Use RTP over RTSP (TCP) (boolean) -#rtsp-tcp=0 +# Spectral sections (integer) +#spect-sections=3 -# Client port (integer) -#rtp-client-port=-1 +# V-plane color (integer) +#spect-color=80 -# Force multicast RTP via RTSP (boolean) -#rtsp-mcast=0 +# Draw bands in the spectrometer (boolean) +#spect-show-bands=1 -# Tunnel RTSP and RTP over HTTP (boolean) -#rtsp-http=0 +# Show 80 bands instead of 20 (boolean) +#spect-80-bands=1 -# HTTP tunnel port (integer) -#rtsp-http-port=80 +# Number of blank pixels between bands. (integer) +#spect-separ=1 -# Kasenna RTSP dialect (boolean) -#rtsp-kasenna=0 +# Amplification (integer) +#spect-amp=8 -# WMServer RTSP dialect (boolean) -#rtsp-wmserver=0 +# Draw peaks in the analyzer (boolean) +#spect-show-peaks=1 -# RTSP user name (string) -#rtsp-user= +# Peak extra width (integer) +#spect-peak-width=61 -# RTSP password (string) -#rtsp-pwd= +# Peak height (integer) +#spect-peak-height=1 -[subtitle] # Text subtitles parser +[dynamicoverlay] # Dynamic video overlay -# Frames per second (float) -#sub-fps=0.000000 +# Input FIFO (string) +#overlay-input= -# Subtitles delay (integer) -#sub-delay=0 +# Output FIFO (string) +#overlay-output= -# Subtitles format (string) -#sub-type=auto +[mirror] # Mirror video filter -# Subtitles description (string) -#sub-description= +# Mirror orientation (integer) +#mirror-split=0 -[mkv] # Matroska stream demuxer +# Direction (integer) +#mirror-direction=0 -# Respect ordered chapters (boolean) -#mkv-use-ordered-chapters=1 +[sharpen] # Sharpen video filter -# Chapter codecs (boolean) -#mkv-use-chapter-codec=1 +# Sharpen strength (0-2) (float) +#sharpen-sigma=0.050000 -# Preload MKV files in the same directory (boolean) -#mkv-preload-local-dir=1 +[blendbench] # Blending benchmark filter -# Seek based on percent not time (boolean) -#mkv-seek-percent=0 +# Number of time to blend (integer) +#blendbench-loops=1000 -# Dummy Elements (boolean) -#mkv-use-dummy=0 +# Alpha of the blended image (integer) +#blendbench-alpha=128 -[mod] # MOD demuxer (libmodplug) +# Image to be blended onto (string) +#blendbench-base-image= -# Noise reduction (boolean) -#mod-noisereduction=1 +# Chroma for the base image (string) +#blendbench-base-chroma=I420 -# Reverb (boolean) -#mod-reverb=0 +# Image which will be blended (string) +#blendbench-blend-image= -# Reverberation level (integer) -#mod-reverb-level=0 +# Chroma for the blend image (string) +#blendbench-blend-chroma=YUVA -# Reverberation delay (integer) -#mod-reverb-delay=40 +[colorthres] # Color threshold filter -# Mega bass (boolean) -#mod-megabass=0 +# Color (integer) +#colorthres-color=16711680 -# Mega bass level (integer) -#mod-megabass-level=0 +# Saturation threshold (integer) +#colorthres-saturationthres=20 -# Mega bass cutoff (integer) -#mod-megabass-range=10 +# Similarity threshold (integer) +#colorthres-similaritythres=15 -# Surround (boolean) -#mod-surround=0 +[puzzle] # Puzzle interactive game video filter -# Surround level (integer) -#mod-surround-level=0 +# Number of puzzle rows (integer) +#puzzle-rows=4 -# Surround delay (ms) (integer) -#mod-surround-delay=5 +# Number of puzzle columns (integer) +#puzzle-cols=4 -[rawaud] # Raw audio demuxer +# Make one tile a black slot (boolean) +#puzzle-black-slot=0 -# Audio channels (integer) -#rawaud-channels=2 +[swscale] # Video scaling filter -# Audio samplerate (Hz) (integer) -#rawaud-samplerate=48000 +# Scaling mode (integer) +#swscale-mode=2 -# FOURCC code of raw input format (string) -#rawaud-fourcc=s16l +[bluescreen] # Bluescreen video filter -# Forces the audio language (string) -#rawaud-lang=eng +# Bluescreen U value (integer) +#bluescreen-u=120 -[h264] # H264 video demuxer +# Bluescreen V value (integer) +#bluescreen-v=90 -# Frames per Second (float) -#h264-fps=25.000000 +# Bluescreen U tolerance (integer) +#bluescreen-ut=17 -[mjpeg] # M-JPEG camera demuxer +# Bluescreen V tolerance (integer) +#bluescreen-vt=17 -# Frames per Second (float) -#mjpeg-fps=0.000000 +[clone] # Clone video filter -[avi] # AVI demuxer +# Number of clones (integer) +#clone-count=2 -# Force interleaved method (boolean) -#avi-interleaved=0 +# Video output modules (string) +#clone-vout-list= -# Force index creation (integer) -#avi-index=0 +[canvas] # Canvas video filter -[es] # MPEG-I/II/4 / A52 / DTS / MLP audio +# Output width (integer) +#canvas-width=0 -# Frames per Second (float) -#es-fps=25.000000 +# Output height (integer) +#canvas-height=0 -[rawvid] # Raw video demuxer +# Output picture aspect ratio (string) +#canvas-aspect= -# Frames per Second (string) -#rawvid-fps= +# Pad video (boolean) +#canvas-padd=1 -# Width (integer) -#rawvid-width=0 +[marq] # Marquee display -# Height (integer) -#rawvid-height=0 +# Text (string) +#marq-marquee=VLC -# Force chroma (Use carefully) (string) -#rawvid-chroma= +# X offset (integer) +#marq-x=0 -# Aspect ratio (string) -#rawvid-aspect-ratio= +# Y offset (integer) +#marq-y=0 -[image] # Image demuxer +# Marquee position (integer) +#marq-position=-1 -# ES ID (integer) -#image-id=-1 +# Opacity (integer) +#marq-opacity=255 -# Group (integer) -#image-group=0 +# Color (integer) +#marq-color=16777215 -# Decode (boolean) -#image-decode=1 +# Font size, pixels (integer) +#marq-size=-1 -# Forced chroma (string) -#image-chroma= +# Timeout (integer) +#marq-timeout=0 -# Duration in seconds (float) -#image-duration=10.000000 +# Refresh period in ms (integer) +#marq-refresh=1000 -# Frame rate (string) -#image-fps=10/1 +[deinterlace] # Deinterlacing video filter -# Real-time (boolean) -#image-realtime=0 +# Streaming deinterlace mode (string) +#sout-deinterlace-mode=blend -[rawdv] # DV (Digital Video) demuxer +# Phosphor chroma mode for 4:2:0 input (integer) +#sout-deinterlace-phosphor-chroma=2 -# Hurry up (boolean) -#rawdv-hurry-up=0 +# Phosphor old field dimmer strength (integer) +#sout-deinterlace-phosphor-dimmer=2 -[ts] # MPEG Transport Stream demuxer +[rss] # RSS and Atom feed display -# Extra PMT (string) -#ts-extra-pmt= +# Feed URLs (string) +#rss-urls= -# Set id of ES to PID (boolean) -#ts-es-id-pid=1 +# X offset (integer) +#rss-x=0 -# Fast udp streaming (string) -#ts-out= +# Y offset (integer) +#rss-y=0 -# MTU for out mode (integer) -#ts-out-mtu=1400 +# Text position (integer) +#rss-position=-1 -# CSA Key (string) -#ts-csa-ck= +# Opacity (integer) +#rss-opacity=255 -# Second CSA Key (string) -#ts-csa2-ck= +# Color (integer) +#rss-color=16777215 -# Packet size in bytes to decrypt (integer) -#ts-csa-pkt=188 +# Font size, pixels (integer) +#rss-size=-1 -# Silent mode (boolean) -#ts-silent=0 +# Speed of feeds (integer) +#rss-speed=100000 -# Filename of dump (string) -#ts-dump-file= +# Max length (integer) +#rss-length=60 -# Append (boolean) -#ts-dump-append=0 +# Refresh time (integer) +#rss-ttl=1800 -# Dump buffer size (integer) -#ts-dump-size=16384 +# Feed images (boolean) +#rss-images=1 -# Separate sub-streams (boolean) -#ts-split-es=1 +# Title display mode (integer) +#rss-title=-1 -# Seek based on percent not time (boolean) -#ts-seek-percent=0 +[ball] # Ball video filter -[dirac] # Dirac video demuxer +# Ball color (string) +#ball-color=red -# Value to adjust dts by (integer) -#dirac-dts-offset=0 +# Ball speed (integer) +#ball-speed=4 -[avformat] # Avformat demuxer +# Ball size (integer) +#ball-size=10 -# Avformat mux (string) -#ffmpeg-mux= +# Gradient threshold (integer) +#ball-gradient-threshold=40 -[demuxdump] # File dumper +# Edge visible (boolean) +#ball-edge-visible=1 -# Dump filename (string) -#demuxdump-file=stream-demux.dump +[mosaic] # Mosaic video sub source -# Append to existing file (boolean) -#demuxdump-append=0 +# Transparency (integer) +#mosaic-alpha=255 -[audiobargraph_a] # Audio part of the BarGraph function +# Height (integer) +#mosaic-height=100 -# TCP address to use (default localhost) (string) -#audiobargraph_a-address=localhost +# Width (integer) +#mosaic-width=100 -# TCP port to use (default 12345) (integer) -#audiobargraph_a-port=12345 +# Mosaic alignment (integer) +#mosaic-align=5 -# Defines if BarGraph information should be sent (default 1) (integer) -#audiobargraph_a-bargraph=1 +# Top left corner X coordinate (integer) +#mosaic-xoffset=0 -# Sends the barGraph information every n audio packets (default 4) (integer) -#audiobargraph_a-bargraph_repetition=4 +# Top left corner Y coordinate (integer) +#mosaic-yoffset=0 -# Defines if silence alarm information should be sent (default 1) (integer) -#audiobargraph_a-silence=1 +# Border width (integer) +#mosaic-borderw=0 -# Time window to use in ms (default 5000) (integer) -#audiobargraph_a-time_window=5000 +# Border height (integer) +#mosaic-borderh=0 -# Minimum Audio level to raise the alarm (default 0.1) (float) -#audiobargraph_a-alarm_threshold=0.100000 +# Positioning method (integer) +#mosaic-position=0 -# Time between two alarm messages in ms (default 2000) (integer) -#audiobargraph_a-repetition_time=2000 +# Number of rows (integer) +#mosaic-rows=2 -# Force connection reset regularly (default 1) (integer) -#audiobargraph_a-connection_reset=1 +# Number of columns (integer) +#mosaic-cols=2 -[chorus_flanger] # Sound Delay +# Keep aspect ratio (boolean) +#mosaic-keep-aspect-ratio=0 -# Delay time (float) -#delay-time=40.000000 +# Keep original size (boolean) +#mosaic-keep-picture=0 -# Sweep Depth (float) -#sweep-depth=6.000000 +# Elements order (string) +#mosaic-order= -# Sweep Rate (float) -#sweep-rate=6.000000 +# Offsets in order (string) +#mosaic-offsets= -# Feedback Gain (float) -#feedback-gain=0.500000 +# Delay (integer) +#mosaic-delay=0 -# Wet mix (float) -#wet-mix=0.400000 +[audiobargraph_v] # Audio Bar Graph Video sub source -# Dry Mix (float) -#dry-mix=0.400000 +# Value of the audio channels levels (string) +#audiobargraph_v-i_values= -[mono] # Audio filter for stereo to mono conversion +# X coordinate (integer) +#audiobargraph_v-x=0 -# Use downmix algorithm (boolean) -#sout-mono-downmix=1 +# Y coordinate (integer) +#audiobargraph_v-y=0 -# Select channel to keep (integer) -#sout-mono-channel=-1 +# Transparency of the bargraph (integer) +#audiobargraph_v-transparency=255 -[scaletempo] # Audio tempo scaler synched with rate +# Bargraph position (integer) +#audiobargraph_v-position=-1 -# Stride Length (integer) -#scaletempo-stride=30 +# Alarm (integer) +#audiobargraph_v-alarm=0 -# Overlap Length (float) -#scaletempo-overlap=0.200000 +# Bar width in pixel (default : 10) (integer) +#audiobargraph_v-barWidth=10 -# Search Length (integer) -#scaletempo-search=14 +[hqdn3d] # High Quality 3D Denoiser filter -[normvol] # Volume normalizer +# Spatial luma strength (0-254) (float) +#hqdn3d-luma-spat=4.000000 -# Number of audio buffers (integer) -#norm-buff-size=20 +# Spatial chroma strength (0-254) (float) +#hqdn3d-chroma-spat=3.000000 -# Maximal volume level (float) -#norm-max-level=2.000000 +# Temporal luma strength (0-254) (float) +#hqdn3d-luma-temp=6.000000 -[param_eq] # Parametric Equalizer +# Temporal chroma strength (0-254) (float) +#hqdn3d-chroma-temp=4.500000 -# Low freq (Hz) (float) -#param-eq-lowf=100.000000 +[antiflicker] # antiflicker video filter -# Low freq gain (dB) (float) -#param-eq-lowgain=0.000000 +# Window size (integer) +#antiflicker-window-size=10 -# High freq (Hz) (float) -#param-eq-highf=10000.000000 +# Softening value (integer) +#antiflicker-softening-size=10 -# High freq gain (dB) (float) -#param-eq-highgain=0.000000 +[alphamask] # Alpha mask video filter -# Freq 1 (Hz) (float) -#param-eq-f1=300.000000 +# Transparency mask (string) +#alphamask-mask= -# Freq 1 gain (dB) (float) -#param-eq-gain1=0.000000 +[grain] # Grain video filter -# Freq 1 Q (float) -#param-eq-q1=3.000000 +# Variance (float) +#grain-variance=2.000000 -# Freq 2 (Hz) (float) -#param-eq-f2=1000.000000 +# Minimal period (integer) +#grain-period-min=1 -# Freq 2 gain (dB) (float) -#param-eq-gain2=0.000000 +# Maximal period (integer) +#grain-period-max=48 -# Freq 2 Q (float) -#param-eq-q2=3.000000 - -# Freq 3 (Hz) (float) -#param-eq-f3=3000.000000 +[croppadd] # Video scaling filter -# Freq 3 gain (dB) (float) -#param-eq-gain3=0.000000 +# Pixels to crop from top (integer) +#croppadd-croptop=0 -# Freq 3 Q (float) -#param-eq-q3=3.000000 +# Pixels to crop from bottom (integer) +#croppadd-cropbottom=0 -[headphone_channel_mixer] # Headphone virtual spatialization effect +# Pixels to crop from left (integer) +#croppadd-cropleft=0 -# Characteristic dimension (integer) -#headphone-dim=10 +# Pixels to crop from right (integer) +#croppadd-cropright=0 -# Compensate delay (boolean) -#headphone-compensate=0 +# Pixels to padd to top (integer) +#croppadd-paddtop=0 -# No decoding of Dolby Surround (boolean) -#headphone-dolby=0 +# Pixels to padd to bottom (integer) +#croppadd-paddbottom=0 -[speex_resampler] # Speex resampler +# Pixels to padd to left (integer) +#croppadd-paddleft=0 -# Resampling quality (integer) -#speex-resampler-quality=4 +# Pixels to padd to right (integer) +#croppadd-paddright=0 -[dtstofloat32] # DTS Coherent Acoustics audio decoder +[sepia] # Sepia video filter -# DTS dynamic range compression (boolean) -#dts-dynrng=1 +# Sepia intensity (integer) +#sepia-intensity=120 -[spatializer] # Audio Spatializer +[gradfun] # Gradfun video filter -# Room size (float) -#spatializer-roomsize=1.050000 +# Radius (integer) +#gradfun-radius=16 -# Room width (float) -#spatializer-width=10.000000 +# Strength (float) +#gradfun-strength=1.200000 -# Wet (float) -#spatializer-wet=3.000000 +[transform] # Video transformation filter -# Dry (float) -#spatializer-dry=2.000000 +# Transform type (string) +#transform-type=90 -# Damp (float) -#spatializer-damp=1.000000 +[postproc] # Video post processing filter -[a52tofloat32] # ATSC A/52 (AC-3) audio decoder +# Post processing quality (integer) +#postproc-q=6 -# A/52 dynamic range compression (boolean) -#a52-dynrng=1 +# FFmpeg post processing filter chains (string) +#postproc-name=default -# Enable internal upmixing (boolean) -#a52-upmix=0 +[motionblur] # Motion blur filter -[compressor] # Dynamic range compressor +# Blur factor (1-127) (integer) +#blur-factor=80 -# RMS/peak (float) -#compressor-rms-peak=0.000000 +[gaussianblur] # Gaussian blur video filter -# Attack time (float) -compressor-attack=1.400000 +# Gaussian's std deviation (float) +#gaussianblur-sigma=2.000000 -# Release time (float) -compressor-release=1.900000 +[extract] # Extract RGB component video filter -# Threshold level (float) -compressor-threshold=0.000000 +# RGB component to extract (integer) +#extract-component=16711680 -# Ratio (float) -compressor-ratio=1.000000 +[gradient] # Gradient video filter -# Knee radius (float) -compressor-knee=1.000000 +# Distort mode (string) +#gradient-mode=gradient -# Makeup gain (float) -compressor-makeup-gain=0.000000 +# Gradient image type (integer) +#gradient-type=0 -[samplerate] # Secret Rabbit Code (libsamplerate) resampler +# Apply cartoon effect (boolean) +#gradient-cartoon=1 -# Sample rate converter type (integer) -#src-converter-type=1 +[adjust] # Image properties filter -[equalizer] # Equalizer with 10 bands +# Image contrast (0-2) (float) +#contrast=1.000000 -# Equalizer preset (string) -#equalizer-preset=flat +# Image brightness (0-2) (float) +#brightness=1.000000 -# Bands gain (string) -#equalizer-bands= +# Image hue (0-360) (integer) +#hue=0 -# Two pass (boolean) -#equalizer-2pass=0 +# Image saturation (0-3) (float) +#saturation=1.000000 -# Global gain (float) -equalizer-preamp=0.000000 +# Image gamma (0-10) (float) +#gamma=1.000000 -[theora] # Theora video decoder +# Brightness threshold (boolean) +#brightness-threshold=0 -# Encoding quality (integer) -#sout-theora-quality=2 +[atmo] # AtmoLight Filter -[zvbi] # VBI and Teletext decoder +# Device type (integer) +#atmo-device=1 -# Teletext page (integer) -#vbi-page=100 +# Serial Port/Device (string) +#atmo-serialdev=/dev/ttyUSB0 -# Teletext transparency (boolean) -#vbi-opaque=1 +# Color when paused (boolean) +#atmo-usepausecolor=0 -# Teletext alignment (integer) -#vbi-position=4 +# Pause-Red (integer) +#atmo-pcolor-red=0 -# Teletext text subtitles (boolean) -#vbi-text=0 +# Pause-Green (integer) +#atmo-pcolor-green=0 -[spudec] # DVD subtitles decoder +# Pause-Blue (integer) +#atmo-pcolor-blue=192 -# Disable DVD subtitle transparency (boolean) -#dvdsub-transparency=0 +# Pause-Fadesteps (integer) +#atmo-fadesteps=50 -[dvbsub] # DVB subtitles decoder +# End-Red (integer) +#atmo-ecolor-red=192 -# Subpicture position (integer) -#dvbsub-position=8 +# End-Green (integer) +#atmo-ecolor-green=192 -# Decoding X coordinate (integer) -#dvbsub-x=-1 +# End-Blue (integer) +#atmo-ecolor-blue=192 -# Decoding Y coordinate (integer) -#dvbsub-y=-1 +# End-Fadesteps (integer) +#atmo-efadesteps=50 -# Encoding X coordinate (integer) -#sout-dvbsub-x=-1 +# Count of AtmoLight channels (integer) +#atmo-dmx-channels=5 -# Encoding Y coordinate (integer) -#sout-dvbsub-y=-1 +# DMX address for each channel (string) +#atmo-dmx-chbase=0,3,6,9,12 -[ddummy] # Dummy decoder +# Count of channels (integer) +#atmo-momo-channels=3 -# Save raw codec data (boolean) -#dummy-save-es=0 +# Count of fnordlicht's (integer) +#atmo-fnordlicht-amount=2 -[x264] # H.264/MPEG4 AVC encoder (x264) +# Number of zones on top (integer) +#atmo-zones-top=1 -# Maximum GOP size (integer) -#sout-x264-keyint=250 +# Number of zones on bottom (integer) +#atmo-zones-bottom=1 -# Minimum GOP size (integer) -#sout-x264-min-keyint=25 +# Zones on left / right side (integer) +#atmo-zones-lr=1 -# Use recovery points to close GOPs (boolean) -#sout-x264-opengop=0 +# Calculate a average zone (boolean) +#atmo-zone-summary=0 -# Enable compatibility hacks for Blu-ray support (boolean) -#sout-x264-bluray-compat=0 +# Edge Weightning (integer) +#atmo-edgeweightning=3 -# Extra I-frames aggressivity (integer) -#sout-x264-scenecut=40 +# Brightness (integer) +#atmo-brightness=100 -# B-frames between I and P (integer) -#sout-x264-bframes=3 +# Darkness Limit (integer) +#atmo-darknesslimit=3 -# Adaptive B-frame decision (integer) -#sout-x264-b-adapt=1 +# Hue windowing (integer) +#atmo-huewinsize=3 -# Influence (bias) B-frames usage (integer) -#sout-x264-b-bias=0 +# Sat windowing (integer) +#atmo-satwinsize=3 -# Keep some B-frames as references (string) -#sout-x264-bpyramid=normal +# Output Color filter mode (integer) +#atmo-filtermode=1 -# CABAC (boolean) -#sout-x264-cabac=1 +# Filter length (ms) (integer) +#atmo-meanlength=300 -# Number of reference frames (integer) -#sout-x264-ref=3 +# Filter threshold (integer) +#atmo-meanthreshold=40 -# Skip loop filter (boolean) -#sout-x264-nf=0 +# Filter Smoothness (in %) (integer) +#atmo-percentnew=50 -# Loop filter AlphaC0 and Beta parameters alpha:beta (string) -#sout-x264-deblock=0:0 +# Frame delay (ms) (integer) +#atmo-framedelay=18 -# Strength of psychovisual optimization, default is "1.0:0.0" (string) -#sout-x264-psy-rd=1.0:0.0 +# Channel 0: summary (integer) +#atmo-channel_0=4 -# Use Psy-optimizations (boolean) -#sout-x264-psy=1 +# Channel 1: left (integer) +#atmo-channel_1=3 -# H.264 level (string) -#sout-x264-level=0 +# Channel 2: right (integer) +#atmo-channel_2=1 -# H.264 profile (string) -#sout-x264-profile=high +# Channel 3: top (integer) +#atmo-channel_3=0 -# Interlaced mode (boolean) -#sout-x264-interlaced=0 +# Channel 4: bottom (integer) +#atmo-channel_4=2 -# Force number of slices per frame (integer) -#sout-x264-slices=0 +# Channel / Zone Assignment (string) +#atmo-channels= -# Limit the size of each slice in bytes (integer) -#sout-x264-slice-max-size=0 +# Use Software White adjust (boolean) +#atmo-whiteadj=1 -# Limit the size of each slice in macroblocks (integer) -#sout-x264-slice-max-mbs=0 +# White Red (integer) +#atmo-white-red=255 -# HRD-timing information (string) -#sout-x264-hrd=none +# White Green (integer) +#atmo-white-green=255 -# Set QP (integer) -#sout-x264-qp=-1 +# White Blue (integer) +#atmo-white-blue=255 -# Quality-based VBR (integer) -#sout-x264-crf=23 +# Zone 0: Top gradient (string) +#atmo-gradient_zone_0= -# Min QP (integer) -#sout-x264-qpmin=10 +# Zone 1: Right gradient (string) +#atmo-gradient_zone_1= -# Max QP (integer) -#sout-x264-qpmax=51 +# Zone 2: Bottom gradient (string) +#atmo-gradient_zone_2= -# Max QP step (integer) -#sout-x264-qpstep=4 +# Zone 3: Left gradient (string) +#atmo-gradient_zone_3= -# Average bitrate tolerance (float) -#sout-x264-ratetol=1.000000 +# Zone 4: Summary gradient (string) +#atmo-gradient_zone_4= -# Max local bitrate (integer) -#sout-x264-vbv-maxrate=0 +# Gradient bitmap searchpath (string) +#atmo-gradient_path= -# VBV buffer (integer) -#sout-x264-vbv-bufsize=0 +# Extracted Image Width (integer) +#atmo-width=64 -# Initial VBV buffer occupancy (float) -#sout-x264-vbv-init=0.900000 +# Extracted Image Height (integer) +#atmo-height=48 -# QP factor between I and P (float) -#sout-x264-ipratio=1.400000 +# Mark analyzed pixels (boolean) +#atmo-showdots=0 -# QP factor between P and B (float) -#sout-x264-pbratio=1.300000 +[osdmenu] # On Screen Display menu -# QP difference between chroma and luma (integer) -#sout-x264-chroma-qp-offset=0 +# X coordinate (integer) +#osdmenu-x=-1 -# Multipass ratecontrol (integer) -#sout-x264-pass=0 +# Y coordinate (integer) +#osdmenu-y=-1 -# QP curve compression (float) -#sout-x264-qcomp=0.600000 +# Menu position (integer) +#osdmenu-position=8 -# Reduce fluctuations in QP (float) -#sout-x264-cplxblur=20.000000 +# Configuration file (string) +#osdmenu-file=/usr/share/vlc/osdmenu/default.cfg -# Reduce fluctuations in QP (float) -#sout-x264-qblur=0.500000 +# Path to OSD menu images (string) +#osdmenu-file-path= -# How AQ distributes bits (integer) -#sout-x264-aq-mode=1 +# Menu timeout (integer) +#osdmenu-timeout=15 -# Strength of AQ (float) -#sout-x264-aq-strength=1.000000 +# Menu update interval (integer) +#osdmenu-update=300 -# Partitions to consider (string) -#sout-x264-partitions=normal +# Alpha transparency value (default 255) (integer) +#osdmenu-alpha=255 -# Direct MV prediction mode (string) -#sout-x264-direct=spatial +[rotate] # Rotate video filter -# Direct prediction size (integer) -#sout-x264-direct-8x8=1 +# Angle in degrees (integer) +#rotate-angle=30 -# Weighted prediction for B-frames (boolean) -#sout-x264-weightb=1 +[remoteosd] # Remote-OSD over VNC -# Weighted prediction for P-frames (integer) -#sout-x264-weightp=2 +# VNC Host (string) +#rmtosd-host=myvdr -# Integer pixel motion estimation method (string) -#sout-x264-me=hex +# VNC Port (integer) +#rmtosd-port=20001 -# Maximum motion vector search range (integer) -#sout-x264-merange=16 +# VNC Password (string) +#rmtosd-password= -# Maximum motion vector length (integer) -#sout-x264-mvrange=-1 +# VNC poll interval (integer) +#rmtosd-update=1000 -# Minimum buffer space between threads (integer) -#sout-x264-mvrange-thread=-1 +# VNC polling (boolean) +#rmtosd-vnc-polling=0 -# Subpixel motion estimation and partition decision quality (integer) -#sout-x264-subme=7 +# Mouse events (boolean) +#rmtosd-mouse-events=0 -# Decide references on a per partition basis (boolean) -#sout-x264-mixed-refs=1 +# Key events (boolean) +#rmtosd-key-events=0 -# Chroma in motion estimation (boolean) -#sout-x264-chroma-me=1 +# Alpha transparency value (default 255) (integer) +#rmtosd-alpha=255 -# Adaptive spatial transform size (boolean) -#sout-x264-8x8dct=1 +[wall] # Wall video filter -# Trellis RD quantization (integer) -#sout-x264-trellis=1 +# Number of columns (integer) +#wall-cols=3 -# Framecount to use on frametype lookahead (integer) -#sout-x264-lookahead=40 +# Number of rows (integer) +#wall-rows=3 -# Use Periodic Intra Refresh (boolean) -#sout-x264-intra-refresh=0 +# Active windows (string) +#wall-active= -# Use mb-tree ratecontrol (boolean) -#sout-x264-mbtree=1 +# Element aspect ratio (string) +#wall-element-aspect=16:9 -# Early SKIP detection on P-frames (boolean) -#sout-x264-fast-pskip=1 +[posterize] # Posterize video filter -# Coefficient thresholding on P-frames (boolean) -#sout-x264-dct-decimate=1 +# Posterize level (integer) +#posterize-level=6 -# Noise reduction (integer) -#sout-x264-nr=0 +[panoramix] # Panoramix: wall with overlap video filter -# Inter luma quantization deadzone (integer) -#sout-x264-deadzone-inter=21 +# Number of columns (integer) +#panoramix-cols=-1 -# Intra luma quantization deadzone (integer) -#sout-x264-deadzone-intra=11 +# Number of rows (integer) +#panoramix-rows=-1 -# Non-deterministic optimizations when threaded (boolean) -#sout-x264-non-deterministic=0 +# length of the overlapping area (in %) (integer) +#panoramix-bz-length=100 -# CPU optimizations (boolean) -#sout-x264-asm=1 +# height of the overlapping area (in %) (integer) +#panoramix-bz-height=100 -# PSNR computation (boolean) -#sout-x264-psnr=0 +# Attenuation (boolean) +#panoramix-attenuate=1 -# SSIM computation (boolean) -#sout-x264-ssim=0 +# Attenuation, begin (in %) (integer) +#panoramix-bz-begin=0 -# Quiet mode (boolean) -#sout-x264-quiet=0 +# Attenuation, middle (in %) (integer) +#panoramix-bz-middle=50 -# SPS and PPS id numbers (integer) -#sout-x264-sps-id=0 +# Attenuation, end (in %) (integer) +#panoramix-bz-end=100 -# Access unit delimiters (boolean) -#sout-x264-aud=0 +# middle position (in %) (integer) +#panoramix-bz-middle-pos=50 -# Statistics (boolean) -#sout-x264-verbose=0 +# Gamma (Red) correction (float) +#panoramix-bz-gamma-red=1.000000 -# Filename for 2 pass stats file (string) -#sout-x264-stats=x264_2pass.log +# Gamma (Green) correction (float) +#panoramix-bz-gamma-green=1.000000 -# Use preset as default settings. Overridden by user settings. (string) -#sout-x264-preset= +# Gamma (Blue) correction (float) +#panoramix-bz-gamma-blue=1.000000 -# Tune the settings for a particular type of source or situation. Overridden by user settings. (string) -#sout-x264-tune= +# Black Crush for Red (integer) +#panoramix-bz-blackcrush-red=140 -[speex] # Speex audio decoder +# Black Crush for Green (integer) +#panoramix-bz-blackcrush-green=140 -# Mode (integer) -#sout-speex-mode=0 +# Black Crush for Blue (integer) +#panoramix-bz-blackcrush-blue=140 -# Encoding complexity (integer) -#sout-speex-complexity=3 +# White Crush for Red (integer) +#panoramix-bz-whitecrush-red=200 -# CBR encoding (boolean) -#sout-speex-cbr=0 +# White Crush for Green (integer) +#panoramix-bz-whitecrush-green=200 -# Encoding quality (float) -#sout-speex-quality=8.000000 +# White Crush for Blue (integer) +#panoramix-bz-whitecrush-blue=200 -# Maximal bitrate (integer) -#sout-speex-max-bitrate=0 +# Black Level for Red (integer) +#panoramix-bz-blacklevel-red=150 -# Voice activity detection (boolean) -#sout-speex-vad=1 +# Black Level for Green (integer) +#panoramix-bz-blacklevel-green=150 -# Discontinuous Transmission (boolean) -#sout-speex-dtx=0 +# Black Level for Blue (integer) +#panoramix-bz-blacklevel-blue=150 -[telx] # Teletext subtitles decoder +# White Level for Red (integer) +#panoramix-bz-whitelevel-red=0 -# Override page (integer) -#telx-override-page=-1 +# White Level for Green (integer) +#panoramix-bz-whitelevel-green=0 -# Ignore subtitle flag (boolean) -#telx-ignore-subtitle-flag=0 +# White Level for Blue (integer) +#panoramix-bz-whitelevel-blue=0 -# Workaround for France (boolean) -#telx-french-workaround=0 +# Active windows (string) +#panoramix-active= -[subsdec] # Text subtitles decoder +[erase] # Erase video filter -# Subtitles justification (integer) -#subsdec-align=0 +# Image mask (string) +#erase-mask= -# Subtitles text encoding (string) -#subsdec-encoding= +# X coordinate (integer) +#erase-x=0 -# UTF-8 subtitles autodetection (boolean) -#subsdec-autodetect-utf8=1 +# Y coordinate (integer) +#erase-y=0 -# Formatted Subtitles (boolean) -#subsdec-formatted=1 +[logo] # Logo sub source -[vorbis] # Vorbis audio decoder +# Logo filenames (string) +#logo-file= -# Encoding quality (integer) -#sout-vorbis-quality=0 +# X coordinate (integer) +#logo-x=-1 -# Maximum encoding bitrate (integer) -#sout-vorbis-max-bitrate=0 +# Y coordinate (integer) +#logo-y=-1 -# Minimum encoding bitrate (integer) -#sout-vorbis-min-bitrate=0 +# Logo individual image time in ms (integer) +#logo-delay=1000 -# CBR encoding (boolean) -#sout-vorbis-cbr=0 +# Logo animation # of loops (integer) +#logo-repeat=-1 -[schroedinger] # Dirac video decoder using libschroedinger +# Opacity of the logo (integer) +#logo-opacity=255 -# Rate control method (string) -#sout-schro-rate-control= +# Logo position (integer) +#logo-position=-1 -# Constant quality factor (float) -#sout-schro-quality=-1.000000 +[scene] # Scene video filter -# Noise Threshold (float) -#sout-schro-noise-threshold=-1.000000 +# Image format (string) +#scene-format=png -# CBR bitrate (kbps) (integer) -#sout-schro-bitrate=-1 +# Image width (integer) +#scene-width=-1 -# Maximum bitrate (kbps) (integer) -#sout-schro-max-bitrate=-1 +# Image height (integer) +#scene-height=-1 -# Minimum bitrate (kbps) (integer) -#sout-schro-min-bitrate=-1 +# Filename prefix (string) +#scene-prefix=scene -# GOP structure (string) -#sout-schro-gop-structure= +# Directory path prefix (string) +#scene-path= -# GOP length (integer) -#sout-schro-gop-length=-1 +# Always write to the same file (boolean) +#scene-replace=0 -# Chroma format (string) -#sout-schro-chroma-fmt=420 +# Recording ratio (integer) +#scene-ratio=50 -# Picture coding mode (string) -#sout-schro-coding-mode=auto +[subsdelay] # Subtitles delay -# Motion Vector precision (string) -#sout-schro-mv-precision= +# Delay calculation mode (integer) +#subsdelay-mode=1 -# Size of motion compensation blocks (string) -#sout-schro-motion-block-size= +# Calculation factor (float) +#subsdelay-factor=2.000000 -# Overlap of motion compensation blocks (string) -#sout-schro-motion-block-overlap= +# Maximum overlapping subtitles (integer) +#subsdelay-overlap=3 -# Three component motion estimation (integer) -#sout-schro-me-combined=-1 +# Minimum alpha value (integer) +#subsdelay-min-alpha=70 -# Enable hierarchical Motion Estimation (integer) -#sout-schro-enable-hierarchical-me=-1 +# Interval between two disappearances (integer) +#subsdelay-min-stops=1000 -# Number of levels of downsampling (integer) -#sout-schro-downsample-levels=-1 +# Interval between appearance and disappearance (integer) +#subsdelay-min-start-stop=1000 -# Enable Global Motion Estimation (integer) -#sout-schro-enable-global-me=-1 +# Interval between disappearance and appearance (integer) +#subsdelay-min-stop-start=1000 -# Enable Phase Correlation Estimation (integer) -#sout-schro-enable-phasecorr-me=-1 +[x264] # H.264/MPEG4 AVC encoder (x264) -# Intra picture DWT filter (string) -#sout-schro-intra-wavelet= +# Maximum GOP size (integer) +#sout-x264-keyint=250 -# Inter picture DWT filter (string) -#sout-schro-inter-wavelet= +# Minimum GOP size (integer) +#sout-x264-min-keyint=25 -# Number of DWT iterations (integer) -#sout-schro-transform-depth=-1 +# Use recovery points to close GOPs (boolean) +#sout-x264-opengop=0 -# Enable multiple quantizers (integer) -#sout-schro-enable-multiquant=-1 +# Enable compatibility hacks for Blu-ray support (boolean) +#sout-x264-bluray-compat=0 -# Size of code blocks in each subband (string) -#sout-schro-codeblock-size= +# Extra I-frames aggressivity (integer) +#sout-x264-scenecut=40 -# Prefilter (string) -#sout-schro-filtering= +# B-frames between I and P (integer) +#sout-x264-bframes=3 -# Amount of prefiltering (float) -#sout-schro-filter-value=-1.000000 +# Adaptive B-frame decision (integer) +#sout-x264-b-adapt=1 -# Enable Scene Change Detection (integer) -#sout-schro-enable-scd=-1 +# Influence (bias) B-frames usage (integer) +#sout-x264-b-bias=0 -# perceptual weighting method (string) -#sout-schro-perceptual-weighting= +# Keep some B-frames as references (string) +#sout-x264-bpyramid=normal -# perceptual distance (float) -#sout-schro-perceptual-distance=-1.000000 +# CABAC (boolean) +#sout-x264-cabac=1 -# Disable arithmetic coding (integer) -#sout-schro-enable-noarith=-1 +# Number of reference frames (integer) +#sout-x264-ref=3 -# Horizontal slices per frame (integer) -#sout-schro-horiz-slices=-1 +# Skip loop filter (boolean) +#sout-x264-nf=0 -# Vertical slices per frame (integer) -#sout-schro-vert-slices=-1 +# Loop filter AlphaC0 and Beta parameters alpha:beta (string) +#sout-x264-deblock=0:0 -# Force Profile (string) -#sout-schro-force-profile= +# Strength of psychovisual optimization, default is "1.0:0.0" (string) +#sout-x264-psy-rd=1.0:0.0 -[fluidsynth] # FluidSynth MIDI synthesizer +# Use Psy-optimizations (boolean) +#sout-x264-psy=1 -# Sound fonts (string) -#soundfont= +# H.264 level (string) +#sout-x264-level=0 -[avcodec] # FFmpeg audio/video decoder +# H.264 profile (string) +#sout-x264-profile=high -# Direct rendering (boolean) -#ffmpeg-dr=1 +# Interlaced mode (boolean) +#sout-x264-interlaced=0 -# Error resilience (integer) -#ffmpeg-error-resilience=1 +# Force number of slices per frame (integer) +#sout-x264-slices=0 -# Workaround bugs (integer) -#ffmpeg-workaround-bugs=1 +# Limit the size of each slice in bytes (integer) +#sout-x264-slice-max-size=0 -# Hurry up (boolean) -#ffmpeg-hurry-up=1 +# Limit the size of each slice in macroblocks (integer) +#sout-x264-slice-max-mbs=0 + +# HRD-timing information (string) +#sout-x264-hrd=none + +# Set QP (integer) +#sout-x264-qp=-1 + +# Quality-based VBR (integer) +#sout-x264-crf=23 + +# Min QP (integer) +#sout-x264-qpmin=10 + +# Max QP (integer) +#sout-x264-qpmax=51 + +# Max QP step (integer) +#sout-x264-qpstep=4 + +# Average bitrate tolerance (float) +#sout-x264-ratetol=1.000000 + +# Max local bitrate (integer) +#sout-x264-vbv-maxrate=0 + +# VBV buffer (integer) +#sout-x264-vbv-bufsize=0 -# Skip frame (default=0) (integer) -#ffmpeg-skip-frame=0 +# Initial VBV buffer occupancy (float) +#sout-x264-vbv-init=0.900000 -# Skip idct (default=0) (integer) -#ffmpeg-skip-idct=0 +# QP factor between I and P (float) +#sout-x264-ipratio=1.400000 -# Visualize motion vectors (integer) -#ffmpeg-vismv=0 +# QP factor between P and B (float) +#sout-x264-pbratio=1.300000 -# Low resolution decoding (integer) -#ffmpeg-lowres=0 +# QP difference between chroma and luma (integer) +#sout-x264-chroma-qp-offset=0 -# Allow speed tricks (boolean) -#ffmpeg-fast=0 +# Multipass ratecontrol (integer) +#sout-x264-pass=0 -# Skip the loop filter for H.264 decoding (integer) -#ffmpeg-skiploopfilter=0 +# QP curve compression (float) +#sout-x264-qcomp=0.600000 -# Debug mask (integer) -#ffmpeg-debug=0 +# Reduce fluctuations in QP (float) +#sout-x264-cplxblur=20.000000 -# Codec name (string) -#ffmpeg-codec= +# Reduce fluctuations in QP (float) +#sout-x264-qblur=0.500000 -# Hardware decoding (boolean) -#ffmpeg-hw=0 +# How AQ distributes bits (integer) +#sout-x264-aq-mode=1 -# Threads (integer) -#ffmpeg-threads=0 +# Strength of AQ (float) +#sout-x264-aq-strength=1.000000 -# Codec name (string) -#sout-ffmpeg-codec= +# Partitions to consider (string) +#sout-x264-partitions=normal -# Quality level (string) -#sout-ffmpeg-hq=simple +# Direct MV prediction mode (string) +#sout-x264-direct=spatial -# Ratio of key frames (integer) -#sout-ffmpeg-keyint=0 +# Direct prediction size (integer) +#sout-x264-direct-8x8=1 -# Ratio of B frames (integer) -#sout-ffmpeg-bframes=0 +# Weighted prediction for B-frames (boolean) +#sout-x264-weightb=1 -# Hurry up (boolean) -#sout-ffmpeg-hurry-up=0 +# Weighted prediction for P-frames (integer) +#sout-x264-weightp=2 -# Interlaced encoding (boolean) -#sout-ffmpeg-interlace=0 +# Integer pixel motion estimation method (string) +#sout-x264-me=hex -# Interlaced motion estimation (boolean) -#sout-ffmpeg-interlace-me=1 +# Maximum motion vector search range (integer) +#sout-x264-merange=16 -# Video bitrate tolerance (integer) -#sout-ffmpeg-vt=0 +# Maximum motion vector length (integer) +#sout-x264-mvrange=-1 -# Pre-motion estimation (boolean) -#sout-ffmpeg-pre-me=0 +# Minimum buffer space between threads (integer) +#sout-x264-mvrange-thread=-1 -# Rate control buffer size (integer) -#sout-ffmpeg-rc-buffer-size=1835008 +# Subpixel motion estimation and partition decision quality (integer) +#sout-x264-subme=7 -# Rate control buffer aggressiveness (float) -#sout-ffmpeg-rc-buffer-aggressivity=1.000000 +# Decide references on a per partition basis (boolean) +#sout-x264-mixed-refs=1 -# I quantization factor (float) -#sout-ffmpeg-i-quant-factor=0.000000 +# Chroma in motion estimation (boolean) +#sout-x264-chroma-me=1 -# Noise reduction (integer) -#sout-ffmpeg-noise-reduction=0 +# Adaptive spatial transform size (boolean) +#sout-x264-8x8dct=1 -# MPEG4 quantization matrix (boolean) -#sout-ffmpeg-mpeg4-matrix=0 +# Trellis RD quantization (integer) +#sout-x264-trellis=1 -# Minimum video quantizer scale (integer) -#sout-ffmpeg-qmin=0 +# Framecount to use on frametype lookahead (integer) +#sout-x264-lookahead=40 -# Maximum video quantizer scale (integer) -#sout-ffmpeg-qmax=0 +# Use Periodic Intra Refresh (boolean) +#sout-x264-intra-refresh=0 -# Trellis quantization (boolean) -#sout-ffmpeg-trellis=0 +# Use mb-tree ratecontrol (boolean) +#sout-x264-mbtree=1 -# Fixed quantizer scale (float) -#sout-ffmpeg-qscale=0.000000 +# Early SKIP detection on P-frames (boolean) +#sout-x264-fast-pskip=1 -# Strict standard compliance (integer) -#sout-ffmpeg-strict=0 +# Coefficient thresholding on P-frames (boolean) +#sout-x264-dct-decimate=1 -# Luminance masking (float) -#sout-ffmpeg-lumi-masking=0.000000 +# Noise reduction (integer) +#sout-x264-nr=0 -# Darkness masking (float) -#sout-ffmpeg-dark-masking=0.000000 +# Inter luma quantization deadzone (integer) +#sout-x264-deadzone-inter=21 -# Motion masking (float) -#sout-ffmpeg-p-masking=0.000000 +# Intra luma quantization deadzone (integer) +#sout-x264-deadzone-intra=11 -# Border masking (float) -#sout-ffmpeg-border-masking=0.000000 +# Non-deterministic optimizations when threaded (boolean) +#sout-x264-non-deterministic=0 -# Luminance elimination (integer) -#sout-ffmpeg-luma-elim-threshold=0 +# CPU optimizations (boolean) +#sout-x264-asm=1 -# Chrominance elimination (integer) -#sout-ffmpeg-chroma-elim-threshold=0 +# PSNR computation (boolean) +#sout-x264-psnr=0 -# Specify AAC audio profile to use (string) -#sout-ffmpeg-aac-profile=low +# SSIM computation (boolean) +#sout-x264-ssim=0 -[svcdsub] # Philips OGT (SVCD subtitle) decoder +# Quiet mode (boolean) +#sout-x264-quiet=0 -[kate] # Kate overlay decoder +# SPS and PPS id numbers (integer) +#sout-x264-sps-id=0 -# Formatted Subtitles (boolean) -#kate-formatted=1 +# Access unit delimiters (boolean) +#sout-x264-aud=0 -# Use Tiger for rendering (boolean) -#kate-use-tiger=1 +# Statistics (boolean) +#sout-x264-verbose=0 -# Rendering quality (float) -#kate-tiger-quality=1.000000 +# Filename for 2 pass stats file (string) +#sout-x264-stats=x264_2pass.log -# Default font description (string) -#kate-tiger-default-font-desc= +# Use preset as default settings. Overridden by user settings. (string) +#sout-x264-preset= -# Default font effect (integer) -#kate-tiger-default-font-effect=0 +# Tune the settings for a particular type of source or situation. Overridden by user settings. (string) +#sout-x264-tune= -# Default font effect strength (float) -#kate-tiger-default-font-effect-strength=0.500000 +[svcdsub] # Philips OGT (SVCD subtitle) decoder -# Default font color (integer) -#kate-tiger-default-font-color=16777215 +[theora] # Theora video decoder -# Default font alpha (integer) -#kate-tiger-default-font-alpha=255 +# Encoding quality (integer) +#sout-theora-quality=2 -# Default background color (integer) -#kate-tiger-default-background-color=16777215 +[speex] # Speex audio decoder -# Default background alpha (integer) -#kate-tiger-default-background-alpha=0 +# Mode (integer) +#sout-speex-mode=0 -[svg] # svg +# Encoding complexity (integer) +#sout-speex-complexity=3 -# SVG template file (string) -#svg-template-file= +# CBR encoding (boolean) +#sout-speex-cbr=0 -[freetype] # Freetype2 font renderer +# Encoding quality (float) +#sout-speex-quality=8.000000 -# Font (string) -#freetype-font=Serif Bold +# Maximal bitrate (integer) +#sout-speex-max-bitrate=0 -# Font size in pixels (integer) -#freetype-fontsize=0 +# Voice activity detection (boolean) +#sout-speex-vad=1 -# Relative font size (integer) -#freetype-rel-fontsize=16 +# Discontinuous Transmission (boolean) +#sout-speex-dtx=0 -# Text opacity (integer) -#freetype-opacity=255 +[telx] # Teletext subtitles decoder -# Text default color (integer) -#freetype-color=16777215 +# Override page (integer) +#telx-override-page=-1 -# Force bold (boolean) -#freetype-bold=0 +# Ignore subtitle flag (boolean) +#telx-ignore-subtitle-flag=0 -# Background opacity (integer) -#freetype-background-opacity=0 +# Workaround for France (boolean) +#telx-french-workaround=0 -# Background color (integer) -#freetype-background-color=0 +[subsdec] # Text subtitles decoder -# Outline opacity (integer) -#freetype-outline-opacity=255 +# Subtitles justification (integer) +#subsdec-align=0 -# Outline color (integer) -#freetype-outline-color=0 +# Subtitles text encoding (string) +#subsdec-encoding= -# Outline thickness (integer) -#freetype-outline-thickness=4 +# UTF-8 subtitles autodetection (boolean) +#subsdec-autodetect-utf8=1 -# Shadow opacity (integer) -#freetype-shadow-opacity=128 +# Formatted Subtitles (boolean) +#subsdec-formatted=1 -# Shadow color (integer) -#freetype-shadow-color=0 +[zvbi] # VBI and Teletext decoder -# Shadow angle (float) -#freetype-shadow-angle=-45.000000 +# Teletext page (integer) +#vbi-page=100 -# Shadow distance (float) -#freetype-shadow-distance=0.060000 +# Teletext transparency (boolean) +#vbi-opaque=1 -# Use YUVP renderer (boolean) -#freetype-yuvp=0 +# Teletext alignment (integer) +#vbi-position=4 -[sap] # Network streams (SAP) +# Teletext text subtitles (boolean) +#vbi-text=0 -# SAP multicast address (string) -#sap-addr= +[schroedinger] # Dirac video decoder using libschroedinger -# SAP timeout (seconds) (integer) -#sap-timeout=1800 +# Rate control method (string) +#sout-schro-rate-control= -# Try to parse the announce (boolean) -#sap-parse=1 +# Constant quality factor (float) +#sout-schro-quality=-1.000000 -# SAP Strict mode (boolean) -#sap-strict=0 +# Noise Threshold (float) +#sout-schro-noise-threshold=-1.000000 -[podcast] # Podcasts +# CBR bitrate (kbps) (integer) +#sout-schro-bitrate=-1 -# Podcast URLs list (string) -#podcast-urls= +# Maximum bitrate (kbps) (integer) +#sout-schro-max-bitrate=-1 -[skins2] # Skinnable Interface +# Minimum bitrate (kbps) (integer) +#sout-schro-min-bitrate=-1 -# Skin to use (string) -skins2-last=/usr/share/vlc/skins2/default.vlt +# GOP structure (string) +#sout-schro-gop-structure= -# Config of last used skin (string) -skins2-config=[aboutwin aboutwinwin-main 0 0 330 171 0][eqwin eqwin-main 0 0 330 171 0][fullscreenController fsc_normal 30 30 500 500 1][main normal 0 0 500 350 1][plwin plwin-normal 0 0 500 350 0] +# GOP length (integer) +#sout-schro-gop-length=-1 -# Enable transparency effects (boolean) -#skins2-transparency=0 +# Chroma format (string) +#sout-schro-chroma-fmt=420 -# Use a skinned playlist (boolean) -#skinned-playlist=1 +# Picture coding mode (string) +#sout-schro-coding-mode=auto -# Display video in a skinned window if any (boolean) -#skinned-video=1 +# Motion Vector precision (string) +#sout-schro-mv-precision= -[qt4] # Qt interface +# Size of motion compensation blocks (string) +#sout-schro-motion-block-size= -# Start in minimal view (without menus) (boolean) -#qt-minimal-view=0 +# Overlap of motion compensation blocks (string) +#sout-schro-motion-block-overlap= -# Systray icon (boolean) -#qt-system-tray=1 +# Three component motion estimation (integer) +#sout-schro-me-combined=-1 -# Show notification popup on track change (boolean) -#qt-notification=1 +# Enable hierarchical Motion Estimation (integer) +#sout-schro-enable-hierarchical-me=-1 -# Start VLC with only a systray icon (boolean) -#qt-start-minimized=0 +# Number of levels of downsampling (integer) +#sout-schro-downsample-levels=-1 -# Pause the video playback when minimized (boolean) -#qt-pause-minimized=0 +# Enable Global Motion Estimation (integer) +#sout-schro-enable-global-me=-1 -# Windows opacity between 0.1 and 1 (float) -#qt-opacity=1.000000 +# Enable Phase Correlation Estimation (integer) +#sout-schro-enable-phasecorr-me=-1 -# Fullscreen controller opacity between 0.1 and 1 (float) -#qt-fs-opacity=0.800000 +# Intra picture DWT filter (string) +#sout-schro-intra-wavelet= -# Resize interface to the native video size (boolean) -#qt-video-autoresize=1 +# Inter picture DWT filter (string) +#sout-schro-inter-wavelet= -# Show playing item name in window title (boolean) -#qt-name-in-title=1 +# Number of DWT iterations (integer) +#sout-schro-transform-depth=-1 -# Show a controller in fullscreen mode (boolean) -#qt-fs-controller=1 +# Enable multiple quantizers (integer) +#sout-schro-enable-multiquant=-1 -# Save the recently played items in the menu (boolean) -#qt-recentplay=1 +# Size of code blocks in each subband (string) +#sout-schro-codeblock-size= -# List of words separated by | to filter (string) -#qt-recentplay-filter= +# Prefilter (string) +#sout-schro-filtering= -# Automatically save the volume on exit (boolean) -#qt-autosave-volume=1 +# Amount of prefiltering (float) +#sout-schro-filter-value=-1.000000 -# Embed the file browser in open dialog (boolean) -#qt-embedded-open=0 +# Enable Scene Change Detection (integer) +#sout-schro-enable-scd=-1 -# Show advanced preferences over simple ones (boolean) -#qt-advanced-pref=0 +# perceptual weighting method (string) +#sout-schro-perceptual-weighting= -# Show unimportant error and warnings dialogs (boolean) -#qt-error-dialogs=1 +# perceptual distance (float) +#sout-schro-perceptual-distance=-1.000000 -# Define the colors of the volume slider (string) -#qt-slider-colours=153;210;153;20;210;20;255;199;15;245;39;29 +# Disable arithmetic coding (integer) +#sout-schro-enable-noarith=-1 -# Ask for network policy at start (boolean) -qt-privacy-ask=0 +# Horizontal slices per frame (integer) +#sout-schro-horiz-slices=-1 -# Define which screen fullscreen goes (integer) -#qt-fullscreen-screennumber=-1 +# Vertical slices per frame (integer) +#sout-schro-vert-slices=-1 -# Load extensions on startup (boolean) -#qt-autoload-extensions=1 +# Force Profile (string) +#sout-schro-force-profile= -# Display background cone or art (boolean) -#qt-bgcone=1 +[kate] # Kate overlay decoder -# Expanding background cone or art. (boolean) -#qt-bgcone-expands=0 +# Formatted Subtitles (boolean) +#kate-formatted=1 -# Allow automatic icon changes (boolean) -#qt-icon-change=1 +# Use Tiger for rendering (boolean) +#kate-use-tiger=1 -[ncurses] # Ncurses interface +# Rendering quality (float) +#kate-tiger-quality=1.000000 -# Filebrowser starting point (string) -#browse-dir= +# Default font description (string) +#kate-tiger-default-font-desc= -[visual] # Visualizer filter +# Default font effect (integer) +#kate-tiger-default-font-effect=0 -# Effects list (string) -#effect-list=spectrum +# Default font effect strength (float) +#kate-tiger-default-font-effect-strength=0.500000 -# Video width (integer) -#effect-width=800 +# Default font color (integer) +#kate-tiger-default-font-color=16777215 -# Video height (integer) -#effect-height=500 +# Default font alpha (integer) +#kate-tiger-default-font-alpha=255 -# Show 80 bands instead of 20 (boolean) -#visual-80-bands=1 +# Default background color (integer) +#kate-tiger-default-background-color=16777215 -# Draw peaks in the analyzer (boolean) -#visual-peaks=1 +# Default background alpha (integer) +#kate-tiger-default-background-alpha=0 -# Enable original graphic spectrum (boolean) -#spect-show-original=0 +[avcodec] # FFmpeg audio/video decoder -# Draw the base of the bands (boolean) -#spect-show-base=1 +# Direct rendering (boolean) +#ffmpeg-dr=1 -# Base pixel radius (integer) -#spect-radius=42 +# Error resilience (integer) +#ffmpeg-error-resilience=1 -# Spectral sections (integer) -#spect-sections=3 +# Workaround bugs (integer) +#ffmpeg-workaround-bugs=1 -# V-plane color (integer) -#spect-color=80 +# Hurry up (boolean) +#ffmpeg-hurry-up=1 -# Draw bands in the spectrometer (boolean) -#spect-show-bands=1 +# Skip frame (default=0) (integer) +#ffmpeg-skip-frame=0 -# Show 80 bands instead of 20 (boolean) -#spect-80-bands=1 +# Skip idct (default=0) (integer) +#ffmpeg-skip-idct=0 -# Number of blank pixels between bands. (integer) -#spect-separ=1 +# Visualize motion vectors (integer) +#ffmpeg-vismv=0 -# Amplification (integer) -#spect-amp=8 +# Low resolution decoding (integer) +#ffmpeg-lowres=0 -# Draw peaks in the analyzer (boolean) -#spect-show-peaks=1 +# Allow speed tricks (boolean) +#ffmpeg-fast=0 -# Peak extra width (integer) -#spect-peak-width=61 +# Skip the loop filter for H.264 decoding (integer) +#ffmpeg-skiploopfilter=0 -# Peak height (integer) -#spect-peak-height=1 +# Debug mask (integer) +#ffmpeg-debug=0 -[gnutls] # GNU TLS transport layer security +# Codec name (string) +#ffmpeg-codec= -# TLS cipher priorities (string) -#gnutls-priorities=NORMAL +# Hardware decoding (boolean) +#ffmpeg-hw=0 -[vod_rtsp] # RTSP VoD server +# Threads (integer) +#ffmpeg-threads=0 -# MUX for RAW RTSP transport (string) -#rtsp-raw-mux=ts +# Codec name (string) +#sout-ffmpeg-codec= -# Maximum number of connections (integer) -#rtsp-throttle-users=0 +# Quality level (string) +#sout-ffmpeg-hq=simple -# Sets the timeout option in the RTSP session string (integer) -#rtsp-session-timeout=5 +# Ratio of key frames (integer) +#sout-ffmpeg-keyint=0 -[logger] # File logging +# Ratio of B frames (integer) +#sout-ffmpeg-bframes=0 -# Log filename (string) -#logfile= +# Hurry up (boolean) +#sout-ffmpeg-hurry-up=0 -# Log format (string) -#logmode=text +# Interlaced encoding (boolean) +#sout-ffmpeg-interlace=0 -# Syslog facility (string) -#syslog-facility=user +# Interlaced motion estimation (boolean) +#sout-ffmpeg-interlace-me=1 -# Verbosity (integer) -#log-verbose=-1 +# Video bitrate tolerance (integer) +#sout-ffmpeg-vt=0 -[audioscrobbler] # Submission of played songs to last.fm +# Pre-motion estimation (boolean) +#sout-ffmpeg-pre-me=0 -# Username (string) -#lastfm-username= +# Rate control buffer size (integer) +#sout-ffmpeg-rc-buffer-size=1835008 -# Password (string) -#lastfm-password= +# Rate control buffer aggressiveness (float) +#sout-ffmpeg-rc-buffer-aggressivity=1.000000 -# Scrobbler URL (string) -#scrobbler-url=post.audioscrobbler.com +# I quantization factor (float) +#sout-ffmpeg-i-quant-factor=0.000000 -[cdda] # Audio CD input +# Noise reduction (integer) +#sout-ffmpeg-noise-reduction=0 -# CDDB Server (string) -#cddb-server=freedb.videolan.org +# MPEG4 quantization matrix (boolean) +#sout-ffmpeg-mpeg4-matrix=0 -# CDDB port (integer) -#cddb-port=8880 +# Minimum video quantizer scale (integer) +#sout-ffmpeg-qmin=0 -[dtv] # Digital Television and Radio +# Maximum video quantizer scale (integer) +#sout-ffmpeg-qmax=0 -# DVB adapter (integer) -#dvb-adapter=0 +# Trellis quantization (boolean) +#sout-ffmpeg-trellis=0 -# Do not demultiplex (boolean) -#dvb-budget-mode=0 +# Fixed quantizer scale (float) +#sout-ffmpeg-qscale=0.000000 -# Frequency (Hz) (integer) -#dvb-frequency=0 +# Strict standard compliance (integer) +#sout-ffmpeg-strict=0 -# Spectrum inversion (integer) -#dvb-inversion=-1 +# Luminance masking (float) +#sout-ffmpeg-lumi-masking=0.000000 -# Bandwidth (MHz) (integer) -#dvb-bandwidth=0 +# Darkness masking (float) +#sout-ffmpeg-dark-masking=0.000000 -# Transmission mode (integer) -#dvb-transmission=0 +# Motion masking (float) +#sout-ffmpeg-p-masking=0.000000 -# Guard interval (string) -#dvb-guard= +# Border masking (float) +#sout-ffmpeg-border-masking=0.000000 -# High-priority code rate (string) -#dvb-code-rate-hp= +# Luminance elimination (integer) +#sout-ffmpeg-luma-elim-threshold=0 -# Low-priority code rate (string) -#dvb-code-rate-lp= +# Chrominance elimination (integer) +#sout-ffmpeg-chroma-elim-threshold=0 -# Hierarchy mode (integer) -#dvb-hierarchy=-1 +# Specify AAC audio profile to use (string) +#sout-ffmpeg-aac-profile=low -# Layer A modulation (string) -#dvb-a-modulation= +[dvbsub] # DVB subtitles decoder -# Layer A code rate (string) -#dvb-a-fec= +# Subpicture position (integer) +#dvbsub-position=8 -# Layer A segments count (integer) -#dvb-a-count=0 +# Decoding X coordinate (integer) +#dvbsub-x=-1 -# Layer A time interleaving (integer) -#dvb-a-interleaving=0 +# Decoding Y coordinate (integer) +#dvbsub-y=-1 -# Layer B modulation (string) -#dvb-b-modulation= +# Encoding X coordinate (integer) +#sout-dvbsub-x=-1 -# Layer B code rate (string) -#dvb-b-fec= +# Encoding Y coordinate (integer) +#sout-dvbsub-y=-1 -# Layer B segments count (integer) -#dvb-b-count=0 +[vorbis] # Vorbis audio decoder -# Layer B time interleaving (integer) -#dvb-b-interleaving=0 +# Encoding quality (integer) +#sout-vorbis-quality=0 -# Layer C modulation (string) -#dvb-c-modulation= +# Maximum encoding bitrate (integer) +#sout-vorbis-max-bitrate=0 -# Layer C code rate (string) -#dvb-c-fec= +# Minimum encoding bitrate (integer) +#sout-vorbis-min-bitrate=0 -# Layer C segments count (integer) -#dvb-c-count=0 +# CBR encoding (boolean) +#sout-vorbis-cbr=0 -# Layer C time interleaving (integer) -#dvb-c-interleaving=0 +[ddummy] # Dummy decoder -# Modulation / Constellation (string) -#dvb-modulation= +# Save raw codec data (boolean) +#dummy-save-es=0 -# Symbol rate (bauds) (integer) -#dvb-srate=0 +[fluidsynth] # FluidSynth MIDI synthesizer -# FEC code rate (string) -#dvb-fec= +# Sound fonts (string) +#soundfont= -# Pilot (integer) -#dvb-pilot=-1 +# Synthesis gain (float) +#synth-gain=0.800000 -# Roll-off factor (integer) -#dvb-rolloff=-1 +[spudec] # DVD subtitles decoder -# Transport stream ID (integer) -#dvb-ts-id=0 +# Disable DVD subtitle transparency (boolean) +#dvdsub-transparency=0 -# Polarization (Voltage) (string) -#dvb-polarization= +[sap] # Network streams (SAP) -# (integer) -#dvb-voltage=13 +# SAP multicast address (string) +#sap-addr= -# High LNB voltage (boolean) -#dvb-high-voltage=0 +# SAP timeout (seconds) (integer) +#sap-timeout=1800 -# Local oscillator low frequency (kHz) (integer) -#dvb-lnb-low=0 +# Try to parse the announce (boolean) +#sap-parse=1 -# Local oscillator high frequency (kHz) (integer) -#dvb-lnb-high=0 +# SAP Strict mode (boolean) +#sap-strict=0 -# Universal LNB switch frequency (kHz) (integer) -#dvb-lnb-switch=11700000 +[podcast] # Podcasts -# DiSEqC LNB number (integer) -#dvb-satno=0 +# Podcast URLs list (string) +#podcast-urls= -# Continuous 22kHz tone (integer) -#dvb-tone=-1 +[lua] # Lua interpreter -[access_smb] # SMB input +# Lua interface (string) +#lua-intf=dummy -# SMB user name (string) -#smb-user= +# Lua interface configuration (string) +#lua-config= -# SMB password (string) -#smb-pwd= +# Source directory (string) +#http-src= -# SMB domain (string) -#smb-domain= +# Directory index (boolean) +#http-index=0 -[filesystem] # File input +# TCP command input (string) +#rc-host= -# Subdirectory behavior (string) -#recursive=expand +# CLI input (string) +#cli-host= -# Ignored extensions (string) -#ignore-filetypes=m3u,db,nfo,ini,jpg,jpeg,ljpg,gif,png,pgm,pgmyuv,pbm,pam,tga,bmp,pnm,xpm,xcf,pcx,tif,tiff,lbm,sfv,txt,sub,idx,srt,cue,ssa +# Host (string) +#telnet-host=localhost -[xcb_screen] # Screen capture (with X11/XCB) +# Port (integer) +#telnet-port=4212 -# Frame rate (float) -#screen-fps=2.000000 +# Password (string) +#telnet-password=admin -# Region left column (integer) -#screen-left=0 +[stream_out_rtp] # RTP stream output -# Region top row (integer) -#screen-top=0 +# Destination (string) +#sout-rtp-dst= -# Capture region width (integer) -#screen-width=0 +# SDP (string) +#sout-rtp-sdp= -# Capture region height (integer) -#screen-height=0 +# Muxer (string) +#sout-rtp-mux= -# Follow the mouse (boolean) -#screen-follow-mouse=0 +# SAP announcing (boolean) +#sout-rtp-sap=0 -[access_alsa] # ALSA audio capture input +# Session name (string) +#sout-rtp-name= -# Stereo (boolean) -#alsa-stereo=1 +# Session category (string) +#sout-rtp-cat= -# Capture format (default s16l) (string) -#alsa-format=s16l +# Session description (string) +#sout-rtp-description= -# Samplerate (integer) -#alsa-samplerate=48000 +# Session URL (string) +#sout-rtp-url= -[linsys_sdi] # SDI Input +# Session email (string) +#sout-rtp-email= -# Link # (integer) -#linsys-sdi-link=0 +# Session phone number (string) +#sout-rtp-phone= -# Video ID (integer) -#linsys-sdi-id-video=0 +# Transport protocol (string) +#sout-rtp-proto=udp -# Aspect ratio (string) -#linsys-sdi-aspect-ratio= +# Port (integer) +#sout-rtp-port=5004 -# Audio configuration (string) -#linsys-sdi-audio=0=1,1 +# Audio port (integer) +#sout-rtp-port-audio=0 -# Teletext configuration (string) -#linsys-sdi-telx= +# Video port (integer) +#sout-rtp-port-video=0 -# Teletext language (string) -#linsys-sdi-telx-lang= +# Hop limit (TTL) (integer) +#sout-rtp-ttl=-1 -[access_ftp] # FTP input +# RTP/RTCP multiplexing (boolean) +#sout-rtp-rtcp-mux=0 -# FTP user name (string) -#ftp-user=anonymous +# Caching value (ms) (integer) +#sout-rtp-caching=300 -# FTP password (string) -#ftp-pwd=anonymous@example.com +# SRTP key (hexadecimal) (string) +#sout-rtp-key= -# FTP account (string) -#ftp-account=anonymous +# SRTP salt (hexadecimal) (string) +#sout-rtp-salt= -[access_imem] # Memory input +# MP4A LATM (boolean) +#sout-rtp-mp4a-latm=0 -# ID (integer) -#imem-id=-1 +# RTSP session timeout (s) (integer) +#rtsp-timeout=60 -# Group (integer) -#imem-group=0 +# Username (string) +#sout-rtsp-user= -# Category (integer) -#imem-cat=0 +# Password (string) +#sout-rtsp-pwd= -# Codec (string) -#imem-codec= +[stream_out_standard] # Standard stream output -# Language (string) -#imem-language= +# Output access method (string) +#sout-standard-access= -# Sample rate (integer) -#imem-samplerate=0 +# Output muxer (string) +#sout-standard-mux= -# Channels count (integer) -#imem-channels=0 +# Output destination (string) +#sout-standard-dst= -# Width (integer) -#imem-width=0 +# address to bind to (helper setting for dst) (string) +#sout-standard-bind= -# Height (integer) -#imem-height=0 +# filename for stream (helper setting for dst) (string) +#sout-standard-path= -# Display aspect ratio (string) -#imem-dar= +# SAP announcing (boolean) +#sout-standard-sap=0 -# Frame rate (string) -#imem-fps= +# Session name (string) +#sout-standard-name= -# Size (integer) -#imem-size=0 +# Session description (string) +#sout-standard-description= -[access_oss] # OSS input +# Session URL (string) +#sout-standard-url= -# Stereo (boolean) -#oss-stereo=1 +# Session email (string) +#sout-standard-email= -# Samplerate (integer) -#oss-samplerate=48000 +# Session phone number (string) +#sout-standard-phone= -[v4l2] # Video4Linux2 input +[stream_out_display] # Display stream output -# Device (string) -#v4l2-dev=/dev/video0 +# Enable audio (boolean) +#sout-display-audio=1 -# Standard (string) -#v4l2-standard= +# Enable video (boolean) +#sout-display-video=1 -# Video input chroma format (string) -#v4l2-chroma= +# Delay (ms) (integer) +#sout-display-delay=100 -# Input (integer) -#v4l2-input=0 +[stream_out_bridge] # Bridge stream output -# Audio input (integer) -#v4l2-audio-input=-1 +# ID (integer) +#sout-bridge-out-id=0 -# Width (integer) -#v4l2-width=-1 +# Destination bridge-in name (string) +#sout-bridge-out-in-name=default -# Height (integer) -#v4l2-height=-1 +# Delay (integer) +#sout-bridge-in-delay=0 -# Picture aspect-ratio n:m (string) -#v4l2-aspect-ratio=4:3 +# ID Offset (integer) +#sout-bridge-in-id-offset=8192 -# Framerate (float) -#v4l2-fps=0.000000 +# Name of current instance (string) +#sout-bridge-in-name=default -# Use libv4l2 (boolean) -#v4l2-use-libv4l2=0 +# Fallback to placeholder stream when out of data (boolean) +#sout-bridge-in-placeholder=0 -# Tuner id (integer) -#v4l2-tuner=0 +# Placeholder delay (integer) +#sout-bridge-in-placeholder-delay=200 -# Frequency (integer) -#v4l2-tuner-frequency=-1 +# Wait for I frame before toggling placeholder (boolean) +#sout-bridge-in-placeholder-switch-on-iframe=1 -# Audio mode (integer) -#v4l2-tuner-audio-mode=-1 +[stream_out_raop] # Remote Audio Output Protocol stream output -# Reset controls (boolean) -#v4l2-controls-reset=0 +# Host (string) +#sout-raop-host= -# Brightness (integer) -#v4l2-brightness=-1 +# Password (string) +#sout-raop-password= -# Automatic brightness (integer) -#v4l2-brightness-auto=-1 +# Password file (string) +#sout-raop-password-file= -# Contrast (integer) -#v4l2-contrast=-1 +# Volume (integer) +#sout-raop-volume=100 -# Saturation (integer) -#v4l2-saturation=-1 +[stream_out_langfromtelx] # Dynamic language setting from teletext -# Hue (integer) -#v4l2-hue=-1 +# Elementary Stream ID (integer) +#sout-langfromtelx-id=0 -# Automatic hue (integer) -#v4l2-hue-auto=-1 +# Magazine (integer) +#sout-langfromtelx-magazine=7 -# White balance temperature (K) (integer) -#v4l2-white-balance-temperature=-1 +# Page (integer) +#sout-langfromtelx-page=153 -# Automatic white balance (integer) -#v4l2-auto-white-balance=-1 +# Row (integer) +#sout-langfromtelx-row=1 -# Red balance (integer) -#v4l2-red-balance=-1 +[stream_out_smem] # Stream output to memory buffer -# Blue balance (integer) -#v4l2-blue-balance=-1 +# Time Synchronized output (boolean) +#sout-smem-time-sync=1 -# Gamma (integer) -#v4l2-gamma=-1 +[stream_out_record] # Record stream output -# Automatic gain (integer) -#v4l2-autogain=-1 +# Destination prefix (string) +#sout-record-dst-prefix= -# Gain (integer) -#v4l2-gain=-1 +[stream_out_select] # Select individual es to enable or disable from stream -# Sharpness (integer) -#v4l2-sharpness=-1 +# Command UDP port (integer) +#sout-select-port=5001 -# Chroma gain (integer) -#v4l2-chroma-gain=-1 +# Disable ES id (integer) +#sout-select-disable=-1 -# Automatic chroma gain (integer) -#v4l2-chroma-gain-auto=-1 +# Enable ES id (integer) +#sout-select-enable=-1 -# Power line frequency (integer) -#v4l2-power-line-frequency=-1 +[stream_out_mosaic_bridge] # Mosaic bridge stream output -# Backlight compensation (integer) -#v4l2-backlight-compensation=-1 +# ID (string) +#sout-mosaic-bridge-id=Id -# Band-stop filter (integer) -#v4l2-band-stop-filter=-1 +# Video width (integer) +#sout-mosaic-bridge-width=0 -# Horizontal flip (boolean) -#v4l2-hflip=0 +# Video height (integer) +#sout-mosaic-bridge-height=0 -# Vertical flip (boolean) -#v4l2-vflip=0 +# Sample aspect ratio (string) +#sout-mosaic-bridge-sar=1:1 -# Rotate (degrees) (integer) -#v4l2-rotate=-1 +# Image chroma (string) +#sout-mosaic-bridge-chroma= -# Color killer (integer) -#v4l2-color-killer=-1 +# Video filter (string) +#sout-mosaic-bridge-vfilter= -# Color effect (integer) -#v4l2-color-effect=-1 +# Transparency (integer) +#sout-mosaic-bridge-alpha=255 -# Audio volume (integer) -#v4l2-audio-volume=-1 +# X offset (integer) +#sout-mosaic-bridge-x=-1 -# Audio balance (integer) -#v4l2-audio-balance=-1 +# Y offset (integer) +#sout-mosaic-bridge-y=-1 -# Mute (boolean) -#v4l2-audio-mute=0 +[stream_out_es] # Elementary stream output -# Bass level (integer) -#v4l2-audio-bass=-1 +# Output access method (string) +#sout-es-access= -# Treble level (integer) -#v4l2-audio-treble=-1 +# Output muxer (string) +#sout-es-mux= -# Loudness mode (boolean) -#v4l2-audio-loudness=0 +# Output URL (string) +#sout-es-dst= -# v4l2 driver controls (string) -#v4l2-set-ctrls= +# Audio output access method (string) +#sout-es-access-audio= -[rtp] # Real-Time Protocol (RTP) input +# Audio output muxer (string) +#sout-es-mux-audio= -# RTCP (local) port (integer) -#rtcp-port=0 +# Audio output URL (string) +#sout-es-dst-audio= -# SRTP key (hexadecimal) (string) -#srtp-key= +# Video output access method (string) +#sout-es-access-video= -# SRTP salt (hexadecimal) (string) -#srtp-salt= +# Video output muxer (string) +#sout-es-mux-video= -# Maximum RTP sources (integer) -#rtp-max-src=1 +# Video output URL (string) +#sout-es-dst-video= -# RTP source timeout (sec) (integer) -#rtp-timeout=5 +[stream_out_delay] # Delay a stream -# Maximum RTP sequence number dropout (integer) -#rtp-max-dropout=3000 +# Elementary Stream ID (integer) +#sout-delay-id=0 -# Maximum RTP sequence number misordering (integer) -#rtp-max-misorder=100 +# Delay of the ES (ms) (integer) +#sout-delay-delay=0 -# RTP payload format assumed for dynamic payloads (string) -#rtp-dynamic-pt= +[stream_out_transcode] # Transcode stream output -[access_vdr] # VDR recordings +# Video encoder (string) +#sout-transcode-venc= -# Chapter offset in ms (integer) -#vdr-chapter-offset=0 +# Destination video codec (string) +#sout-transcode-vcodec= -# Frame rate (float) -#vdr-fps=25.000000 +# Video bitrate (integer) +#sout-transcode-vb=0 -[access_http] # HTTP input +# Video scaling (float) +#sout-transcode-scale=0.000000 -# HTTP proxy (string) -#http-proxy= +# Video frame-rate (float) +#sout-transcode-fps=0.000000 -# HTTP proxy password (string) -#http-proxy-pwd= +# Hurry up (boolean) +#sout-transcode-hurry-up=1 -# HTTP referer value (string) -#http-referrer= +# Deinterlace video (boolean) +#sout-transcode-deinterlace=0 -# User Agent (string) -#http-user-agent= +# Deinterlace module (string) +#sout-transcode-deinterlace-module=deinterlace -# Auto re-connect (boolean) -#http-reconnect=0 +# Video width (integer) +#sout-transcode-width=0 -# Continuous stream (boolean) -#http-continuous=0 +# Video height (integer) +#sout-transcode-height=0 -# Forward Cookies (boolean) -#http-forward-cookies=1 +# Maximum video width (integer) +#sout-transcode-maxwidth=0 -[linsys_hdsdi] # HD-SDI Input +# Maximum video height (integer) +#sout-transcode-maxheight=0 -# Link # (integer) -#linsys-hdsdi-link=0 +# Video filter (string) +#sout-transcode-vfilter= -# Video ID (integer) -#linsys-hdsdi-id-video=0 +# Audio encoder (string) +#sout-transcode-aenc= -# Aspect ratio (string) -#linsys-hdsdi-aspect-ratio= +# Destination audio codec (string) +#sout-transcode-acodec= -# Audio configuration (string) -#linsys-hdsdi-audio=0=1,1 +# Audio bitrate (integer) +#sout-transcode-ab=96 -[dvdnav] # DVDnav Input +# Audio Language (string) +#sout-transcode-alang= -# DVD angle (integer) -#dvdnav-angle=1 +# Audio channels (integer) +#sout-transcode-channels=0 -# Start directly in menu (boolean) -#dvdnav-menu=1 +# Audio sample rate (integer) +#sout-transcode-samplerate=0 -[access_jack] # JACK audio input +# Synchronise on audio track (boolean) +#sout-transcode-audio-sync=0 -# Pace (boolean) -#jack-input-use-vlc-pace=0 +# Audio filter (string) +#sout-transcode-afilter= -# Auto Connection (boolean) -#jack-input-auto-connect=0 +# Subtitles encoder (string) +#sout-transcode-senc= -[pvr] # IVTV MPEG Encoding cards input +# Destination subtitles codec (string) +#sout-transcode-scodec= -# Device (string) -#pvr-device=/dev/video0 +# Destination subtitles codec (boolean) +#sout-transcode-soverlay=0 -# Radio device (string) -#pvr-radio-device=/dev/radio0 +# Overlays (string) +#sout-transcode-sfilter= -# Norm (integer) -#pvr-norm=0 +# OSD menu (boolean) +#sout-transcode-osd=0 -# Width (integer) -#pvr-width=-1 +# Number of threads (integer) +#sout-transcode-threads=0 -# Height (integer) -#pvr-height=-1 +# High priority (boolean) +#sout-transcode-high-priority=0 -# Frequency (integer) -#pvr-frequency=-1 +[stream_out_setid] # Change the id of an elementary stream -# Framerate (integer) -#pvr-framerate=-1 +# Elementary Stream ID (integer) +#sout-setid-id=0 -# Key interval (integer) -#pvr-keyint=-1 +# New ES ID (integer) +#sout-setid-new-id=0 -# Framerate (integer) -#pvr-bframes=-1 +# Elementary Stream ID (integer) +#sout-setlang-id=0 -# Bitrate (integer) -#pvr-bitrate=-1 +# Language (string) +#sout-setlang-lang=eng -# Bitrate peak (integer) -#pvr-bitrate-peak=-1 +[telepathy] # Telepathy "Now Playing" (MissionControl) -# Bitrate mode (integer) -#pvr-bitrate-mode=-1 +[notify] # LibNotify Notification Plugin -# Audio bitmask (integer) -#pvr-audio-bitmask=-1 +# Timeout (ms) (integer) +#notify-timeout=4000 -# Volume (integer) -#pvr-audio-volume=-1 +[xcb_x11] # X11 video output (XCB) -# Channel (integer) -#pvr-channel=-1 +[yuv] # YUV video output -[access_shm] # Shared memory framebuffer +# device, fifo or filename (string) +#yuv-file=stream.yuv -# Frame rate (float) -#shm-fps=10.000000 +# Chroma used (string) +#yuv-chroma= -# Frame buffer width (integer) -#shm-width=800 +# YUV4MPEG2 header (default disabled) (boolean) +#yuv-yuv4mpeg2=0 -# Frame buffer height (integer) -#shm-height=480 +[xcb_xv] # XVideo output (XCB) -# Frame buffer depth (integer) -#shm-depth=32 +# XVideo adaptor number (integer) +#xvideo-adaptor=-1 -[access_mms] # Microsoft Media Server (MMS) input +# XVideo format id (integer) +#xvideo-format-id=0 -# TCP/UDP timeout (ms) (integer) -#mms-timeout=5000 +[fb] # GNU/Linux framebuffer video output -# Force selection of all streams (boolean) -#mms-all=0 +# Framebuffer device (string) +#fbdev=/dev/fb0 -# Maximum bitrate (integer) -#mms-maxbitrate=0 +# Run fb on current tty (boolean) +#fb-tty=1 -# HTTP proxy (string) -#mmsh-proxy= +# Image format (default RGB) (string) +#fb-chroma= -[access_udp] # UDP input +# Framebuffer resolution to use (integer) +#fb-mode=4 -[dvdread] # DVDRead Input (no menu support) +# Framebuffer uses hw acceleration (boolean) +#fb-hw-accel=1 -# DVD angle (integer) -#dvdread-angle=1 +[vout_sdl] # Simple DirectMedia Layer video output -[lua] # Lua interpreter +# SDL chroma format (string) +#sdl-chroma= -# Lua interface (string) -#lua-intf=dummy +[xcb_window] # X11 video window (XCB) -# Lua interface configuration (string) -#lua-config= +# X11 display (string) +#x11-display= -# Source directory (string) -#http-src= +[vdummy] # Dummy video output -# Directory index (boolean) -#http-index=0 +# Dummy image chroma format (string) +#dummy-chroma= -# TCP command input (string) -#rc-host= +[vmem] # Video memory output -# CLI input (string) -#cli-host= +# Width (integer) +#vmem-width=320 -# Host (string) -#telnet-host=localhost +# Height (integer) +#vmem-height=200 -# Port (integer) -#telnet-port=4212 +# Pitch (integer) +#vmem-pitch=640 -# Password (string) -#telnet-password=admin +# Chroma (string) +#vmem-chroma=RV16 [main] # main program @@ -3405,7 +3418,7 @@ qt-privacy-ask=0 #audio=1 # Default audio volume (integer) -volume=512 +volume=128 # Audio output volume step (integer) #volume-step=32 @@ -3876,10 +3889,10 @@ volume=512 #playlist-enqueue=0 # Play files randomly forever (boolean) -#random=0 +random=1 # Repeat all (boolean) -#loop=0 +loop=1 # Repeat current item (boolean) #repeat=0 @@ -4598,6 +4611,9 @@ album-art=2 # Playlist bookmark 10 (string) #bookmark10= +[portaudio] # PORTAUDIO audio output +# Output device (integer) +#portaudio-audio-device=0 [snapshot] # Snapshot output # Snapshot width (integer) #vout-snapshot-width=320 -- cgit v1.1-4-g5e80 From 42ea5cf7c5722f3a7982b8920fd2007d0fd57511 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 11 Apr 2012 22:30:12 -0400 Subject: open PKGBUILD files in sh-mode --- .emacs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.emacs b/.emacs index aff4e03..b52f9ad 100644 --- a/.emacs +++ b/.emacs @@ -174,6 +174,9 @@ (setq autopair-dont-activate t) ;; Don't let autopair break ansi-term )) +(add-to-list 'auto-mode-alist '("PKGBUILD" . sh-mode)) + + ;(require 'flymake) ;(add-hook 'php-mode-hook (lambda() (flymake-mode 1))) ;(define-key php-mode-map '[M-S-up] 'flymake-goto-prev-error) -- cgit v1.1-4-g5e80 From 6aeb41f4ce96f92e0c86810025554ed6ab97dec4 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 11 Apr 2012 22:30:36 -0400 Subject: broaden the facebook mail filter --- .maildirproc/default.rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.maildirproc/default.rc b/.maildirproc/default.rc index 05efbcb..d7351c5 100644 --- a/.maildirproc/default.rc +++ b/.maildirproc/default.rc @@ -110,7 +110,7 @@ def my_filters(mail): # Sort email from some social websites - if mail["From"].matches("@facebook(|mail)\.com"): + if mail["From"].matches("facebook(|mail)\.com"): mail.move(".Social.Facebook") return -- cgit v1.1-4-g5e80 From 86815ce06c9263d033264196f6292319c1f8b695 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 11 Apr 2012 22:30:46 -0400 Subject: fix a typo in x-pdf --- .prefix/bin/x-pdf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.prefix/bin/x-pdf b/.prefix/bin/x-pdf index 020ff7e..a9893c0 100755 --- a/.prefix/bin/x-pdf +++ b/.prefix/bin/x-pdf @@ -2,7 +2,7 @@ if [ -x "`which okular 2>/dev/null`" ]; then okular "$@" -if [ -x "`which evince 2>/dev/null`" ]; then +elif [ -x "`which evince 2>/dev/null`" ]; then evince "$@" elif [ -x "`which xpdf 2>/dev/null`" ]; then xpdf "$@" -- cgit v1.1-4-g5e80 From c486006f4d03065bc8639f574bc07d5c7dc15345 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 11 Apr 2012 22:34:43 -0400 Subject: I don't want offlineimap here --- .crontab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.crontab b/.crontab index 28d7b0a..10236de 100644 --- a/.crontab +++ b/.crontab @@ -1,3 +1,3 @@ # m h dom mon dow command */5 * * * * cd $HOME && make - -*/5 * * * * offlineimap-runner +#*/5 * * * * offlineimap-runner -- cgit v1.1-4-g5e80