Mercurial > mplayer.hg
annotate etc/input.conf @ 31278:2d75e55e74bc
Print media start time with -identify.
author | reimar |
---|---|
date | Mon, 07 Jun 2010 17:52:28 +0000 |
parents | 2186c040f9e0 |
children | 5b1fe711b5c7 |
rev | line source |
---|---|
4909 | 1 ## |
2 ## MPlayer input control file | |
3 ## | |
4 ## You are able to redefine default keyboard/joystick/mouse/LIRC bindings, or | |
10070 | 5 ## add new ones here. |
17179 | 6 ## See DOCS/tech/slave.txt for possible commands that can be bound. |
21380
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
7 ## Also see mplayer -input cmdlist for other possible options. |
10070 | 8 ## The file should be placed in the $HOME/.mplayer directory. |
4909 | 9 ## |
26348 | 10 ## If you wish to unbind a key, use key ignore. |
11 ## e.g. ENTER ignore | |
12 ## | |
4909 | 13 |
14 RIGHT seek +10 | |
15 LEFT seek -10 | |
16 DOWN seek -60 | |
17 UP seek +60 | |
18 PGUP seek 600 | |
19 PGDWN seek -600 | |
22614
0c811221c415
add mute bind which has been default for a while, any other missing defaults?
compn
parents:
21391
diff
changeset
|
20 m mute |
21380
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
21 # switch_audio # switch audio streams |
18100
826a0faa2a0f
Switch audio delay keys to something more sane (+ to increase, - to decrease)
diego
parents:
17179
diff
changeset
|
22 + audio_delay 0.100 |
29098
efed5bc41ca6
make = and + both adjust audio delay, useful for keyboards without keypads
compn
parents:
27068
diff
changeset
|
23 = audio_delay 0.100 |
18100
826a0faa2a0f
Switch audio delay keys to something more sane (+ to increase, - to decrease)
diego
parents:
17179
diff
changeset
|
24 - audio_delay -0.100 |
13710 | 25 [ speed_mult 0.9091 # scale playback speed |
26 ] speed_mult 1.1 | |
27 { speed_mult 0.5 | |
28 } speed_mult 2.0 | |
29 BS speed_set 1.0 # reset speed to normal | |
4909 | 30 q quit |
31 ESC quit | |
21380
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
32 ENTER pt_step 1 1 # skip to next file |
4909 | 33 p pause |
21380
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
34 . frame_step # advance one frame and pause |
4909 | 35 SPACE pause |
36 HOME pt_up_step 1 | |
37 END pt_up_step -1 | |
21380
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
38 > pt_step 1 # skip to next file |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
39 < pt_step -1 # previous |
4909 | 40 INS alt_src_step 1 |
41 DEL alt_src_step -1 | |
42 o osd | |
21380
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
43 I osd_show_property_text "${filename}" # display filename in osd |
30986
2186c040f9e0
Add osd_show_progression: Show progress bar and elapsed/total time.
cehoyos
parents:
29263
diff
changeset
|
44 P osd_show_progression |
21380
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
45 z sub_delay -0.1 # subtract 100 ms delay from subs |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
46 x sub_delay +0.1 # add |
4909 | 47 9 volume -1 |
48 / volume -1 | |
49 0 volume 1 | |
50 * volume 1 | |
51 1 contrast -1 | |
52 2 contrast 1 | |
53 3 brightness -1 | |
54 4 brightness 1 | |
55 5 hue -1 | |
56 6 hue 1 | |
57 7 saturation -1 | |
58 8 saturation 1 | |
23568 | 59 ( balance -0.1 # adjust audio balance in favor of left |
60 ) balance +0.1 # right | |
4909 | 61 d frame_drop |
25731 | 62 D step_property deinterlace # toggle deinterlacer, requires -vf yadif or kerndeint |
21380
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
63 r sub_pos -1 # move subtitles up |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
64 t sub_pos +1 # down |
8399 | 65 #? sub_step +1 # immediately display next subtitle |
66 #? sub_step -1 # previous | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29098
diff
changeset
|
67 #? sub_scale +0.1 # increase subtitle font size |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29098
diff
changeset
|
68 #? sub_scale -0.1 # decrease subtitle font size |
5113 | 69 f vo_fullscreen |
21380
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
70 T vo_ontop # toggle video window ontop of other windows |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
71 w panscan -0.1 # zoom out with -panscan 0 -fs |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
72 e panscan +0.1 # in |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
73 s screenshot # take a png screenshot with -vf screenshot |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
74 # S will take a png screenshot of every frame |
4909 | 75 |
76 h tv_step_channel 1 | |
77 l tv_step_channel -1 | |
78 n tv_step_norm | |
79 b tv_step_chanlist | |
80 | |
81 ## | |
5113 | 82 ## GUI |
83 ## | |
84 | |
85 #l gui_loadfile | |
86 #t gui_loadsubtitle | |
87 #a gui_about | |
88 #s gui_stop | |
89 #p gui_playlist | |
90 #r gui_preferences | |
91 #c gui_skinbrowser | |
92 | |
93 ## | |
4909 | 94 ## Joystick section |
95 ## WARNING: joystick support has to be explicitly enabled at | |
96 ## compiletime with --enable-joystick | |
97 ## | |
98 | |
99 JOY_RIGHT seek 10 | |
100 JOY_LEFT seek -10 | |
101 JOY_UP seek 60 | |
102 JOY_DOWN seek -60 | |
103 JOY_BTN0 pause | |
104 JOY_BTN1 osd | |
5195 | 105 JOY_BTN2 volume 1 |
106 JOY_BTN3 volume -1 | |
25337 | 107 JOY_BTN4 set_menu main |
8261 | 108 |
109 ## | |
24037 | 110 ## Apple Remote section |
111 ## | |
25344 | 112 ## To use OSD menu with Apple Remote, set key AR_MENU to any OSD menu command, |
113 ## or just comment out the 'AR_MENU osd' line and uncomment the line after it. | |
114 ## | |
24037 | 115 |
116 AR_PLAY pause | |
117 AR_PLAY_HOLD quit | |
118 AR_NEXT seek 30 | |
119 AR_NEXT_HOLD seek 120 | |
120 AR_PREV seek -10 | |
121 AR_PREV_HOLD seek -120 | |
26769
d6b7b1c4e652
Make "Menu" button of AppleIR remote call OSD Menu instead
ben
parents:
26768
diff
changeset
|
122 AR_MENU menu up |
25497
68dcca125c25
Change the default osd menu command for AR_MENU in comment of input.conf.
ulion
parents:
25344
diff
changeset
|
123 #AR_MENU menu cancel |
24037 | 124 AR_MENU_HOLD mute |
125 AR_VUP volume 1 | |
126 AR_VDOWN volume -1 | |
127 | |
128 ## | |
8261 | 129 ## OSD Menu movement keys |
130 ## | |
131 ## If you are using only the keyboard it is enough to define one command (like | |
10070 | 132 ## "menu up"), because then that single key will display the menu, which can |
25343
c852fa4bd3a1
Update comment that navigating keys is defined in menu.conf.
ulion
parents:
25337
diff
changeset
|
133 ## then be navigated with the cursor keys and ENTER (defined in menu.conf). |
8261 | 134 ## |
135 ## LIRC users should bind each "menu" command to a button on their remote. | |
136 ## | |
10070 | 137 ## The set_menu command directly displays the (sub)menu specified as |
8261 | 138 ## its argument. Usage should be self-explanatory (although not likely |
139 ## to be needed), after reading input.conf. | |
140 ## | |
141 | |
142 #MOUSE_BTN0 menu up | |
143 #y menu down | |
144 #y menu ok | |
145 #y menu cancel | |
146 #y menu hide | |
147 #y set_menu general_pref | |
19770
0b8e84663cb2
added unallocated keys to navigate the dvdnav menus
nicodvb
parents:
18222
diff
changeset
|
148 |
21380
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
149 ## |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
150 ## DVDNAV |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
151 ## Requires dvdnav:// |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
152 ## |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
153 |
27068 | 154 UP {dvdnav} dvdnav up # DVDNav UP |
155 DOWN {dvdnav} dvdnav down # DVDNav DOWN | |
156 LEFT {dvdnav} dvdnav left # DVDNav LEFT | |
157 RIGHT {dvdnav} dvdnav right # DVDNav RIGHT | |
158 ESC {dvdnav} dvdnav menu # DVDNav MENU | |
159 ENTER {dvdnav} dvdnav select # DVDNav SELECT (ok) | |
160 BS {dvdnav} dvdnav prev # DVDNav PREVIOUS menu (in the order chapter->title->root) | |
21380
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
161 |
27068 | 162 AR_VUP {dvdnav} dvdnav up # DVDNav UP |
163 AR_VDOWN {dvdnav} dvdnav down # DVDNav DOWN | |
164 AR_PREV {dvdnav} dvdnav left # DVDNav LEFT | |
165 AR_NEXT {dvdnav} dvdnav right # DVDNav RIGHT | |
166 AR_MENU {dvdnav} dvdnav menu # DVDNav MENU | |
167 AR_PLAY {dvdnav} dvdnav select # DVDNav SELECT (ok) | |
26768 | 168 |
21380
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
169 #? seek_chapter -1 # skip to previous dvd chapter |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
170 #? seek_chapter +1 # next |