updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / vdr-mplayer / mplayer.sh.conf
blob3207ac06ec4f126c99b3de45959eb0347156cd15
1 # Config File for mplayer.sh ...
3 # $Id: mplayer.sh.conf,v 1.24.2.3 2007/02/11 15:19:35 juri Exp $
5 # ***
6 # *** Mandatory Values 
7 # *** 
9 # Where to find mplayer executable ?
10 # it must be the full path *including* the binary, e.g.
11 MPLAYER="/usr/bin/mplayer"
12 # or just the name of the binary, e.g.:
13 # MPLAYER="mplayer"
15 # Video Out Filter lavc or fame - see mplayer DVB docs for details !
16 #VOP="lavc=9000"
17 VOP="lavc=5000"
19 # Video out device
20 # most users will want the default of 'mpegpes', but users with a dxr3
21 # need to use 'dxr3', or users using softdevice might need 'dfbmga'
22 # If the DVB card with the MPEG decoder is not the first device as seen
23 # by the drivers/VDR, then you have to specify which card it actually is.
24 # Do so with 'mpegpes:card=X', where X is the card number (see also AO)
25 #VO="dxr3"
26 #VO="dfbmga"
27 #VO="mpegpes:card=1"
28 VO="mpegpes"
30 # Audio output device and possible additional options
31 # most users will want the default of 'mpegpes', but users with a dxr3
32 # need to use 'oss:/dev/em8300_ma-0'
33 # users using softdevice might want to use 'oss' or 'alsa'
34 # If the DVB card with the MPEG decoder is not the first device as seen
35 # by the drivers/VDR, then you have to specify which card it actually is.
36 # Do so with 'mpegpes:card=X', where X is the card number (see also VO)
37 #AO="oss:/dev/em8300_ma-0"
38 #AO="alsa"
39 #AO="mpegpes:card=1"
40 AO="mpegpes"
42 # X-Resolutions for the DVBs card (smallest value first!)
44 XResPAL=(352    480     528     544     704     720)
45 XResNTSC=(352   480     512     544     640     704     720)
47 # Set the following to 'true' or 'false' according to
48 # the capabilities of your TV set.
50 # In case of NTSC="false", see also DETC_FILTER below
52 # At least _one_ has to be true!
53 # If your TV can do both, I strongly recommend to keep both set to "true"!
54 PAL="true"
55 NTSC="false"
57 # Use mplayer's -speed option for videos with a different
58 # frames/s value than the selected TV norm
60 # this setting is only used if either PAL or NTSC
61 # is set to false!
62 USE_SPEED="true"
64 # set to true if you want to use AC3 output
65 USEAC3="false"
67 # how to play AC3 audio?
68 # for AC3 via sound card (ALSA driver):
69 AC3AOUT="-ao alsa9 -ac hwac3"
70 # for AC3 via DVB (doesn't need AC3overDVB patch);
71 # needs MPlayer 0.90 final, or newer:
72 #AC3AOUT="-ac hwac3"
74 # what aspect ratio has your TV set?
75 # either 4/3 (conventional) or 16/9 (widescreen)
76 #TV_ASPECT="16/9"
77 TV_ASPECT="4/3"
79 # ***
80 # *** Optional Setting *** Simply Remove them if they do not fit your needs...
81 # ***
83 # What detelecinig filter should we use to play NTSC material as PAL?
84 # This is only used if you have set NTSC to false and PAL to true.
85 # If you use MPlayer versions 1.0 or higher I recommend to use the
86 # following setting "ivtc=1", but this is not supported by MPlayer 0.9x
87 #DETC_FILTER="ivtc=1"
88 DETC_FILTER="detc=dr=2:am=1"
90 # What version of MPlayer do you have?
91 # if you have 0.9x then choose 'false'
92 # if you have 1.0(pre) then choose 'true'
93 MPLAYER_V1="true"
95 # Cache Option for MPlayer
96 CACHE="4096"
98 # Framedrop
99 FRAMEDROP="true"
101 # Lirc RC File
102 LIRCRC="/video/.lircrc"
104 # do we have a slow CPU?
105 # if so, reduce the Y resolution to the half of the possible maximum:
106 # NTSC: 240
107 # PAL: 288
108 # uncomment the following line if you have a slow CPU:
109 #SLOW_CPU="true"
111 # Where to find DVD/VCD dummy files? (just a fake and empty text file for the plugin)
112 # Example: create two empty text files (DVD and VCD) in /video/plugins/DVD-VCD/
113 # !!!The files must be named VCD and DVD (all capital letters)!!!
114 DVDFiles="/video/plugins/DVD-VCD"
116 # What is your DVD-ROM device ?
117 DVD="/dev/hdc"
119 # What languages do your DVD's use ?
120 DVDLANG="de"
122 # extra DVD options
123 #DVDOPTIONS="-af volume=+10"
125 # extra VCD options
126 VCDOPTIONS=""
128 # should MPEG files be played directly (without rescaling) if possible?
129 MPEG_DIRECT="true"
131 #Subtitle options
132 SUBPOS="80"             #Vertical position 0-100
133 SUBCOLOR="0"            #Background color 0=black 255=white
134 SUBALPHA="30"           #Background transparency (0-255)
136 # Userdefined Options - make sure they do not collide with options
137 # used in mplayer.sh
138 # Only for experienced users
139 # USERDEF="-what -option you ever -like to give -to mplayer"
140 USERDEF="-quiet"
141 #USERDEF=""
143 # set to true to enable debugging output
144 #DEBUG="true"
146 # End of Options