Mercurial > mplayer.hg
annotate etc/input.conf @ 26511:31efc4586a2f
Only add vidix to parts when VIDIX is enabled.
author | diego |
---|---|
date | Sat, 26 Apr 2008 09:27:58 +0000 |
parents | 74188a3a558d |
children | 581d694db6a4 |
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 |
826a0faa2a0f
Switch audio delay keys to something more sane (+ to increase, - to decrease)
diego
parents:
17179
diff
changeset
|
23 - audio_delay -0.100 |
13710 | 24 [ speed_mult 0.9091 # scale playback speed |
25 ] speed_mult 1.1 | |
26 { speed_mult 0.5 | |
27 } speed_mult 2.0 | |
28 BS speed_set 1.0 # reset speed to normal | |
4909 | 29 q quit |
30 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
|
31 ENTER pt_step 1 1 # skip to next file |
4909 | 32 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
|
33 . frame_step # advance one frame and pause |
4909 | 34 SPACE pause |
35 HOME pt_up_step 1 | |
36 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
|
37 > 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
|
38 < pt_step -1 # previous |
4909 | 39 INS alt_src_step 1 |
40 DEL alt_src_step -1 | |
41 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
|
42 I osd_show_property_text "${filename}" # display filename in osd |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
43 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
|
44 x sub_delay +0.1 # add |
4909 | 45 9 volume -1 |
46 / volume -1 | |
47 0 volume 1 | |
48 * volume 1 | |
49 1 contrast -1 | |
50 2 contrast 1 | |
51 3 brightness -1 | |
52 4 brightness 1 | |
53 5 hue -1 | |
54 6 hue 1 | |
55 7 saturation -1 | |
56 8 saturation 1 | |
23568 | 57 ( balance -0.1 # adjust audio balance in favor of left |
58 ) balance +0.1 # right | |
4909 | 59 d frame_drop |
25731 | 60 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
|
61 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
|
62 t sub_pos +1 # down |
8399 | 63 #? sub_step +1 # immediately display next subtitle |
64 #? sub_step -1 # previous | |
23725 | 65 #? sub_scale +0.1 # increase subtitle font size |
66 #? sub_scale -0.1 # decrease subtitle font size | |
5113 | 67 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
|
68 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
|
69 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
|
70 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
|
71 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
|
72 # S will take a png screenshot of every frame |
4909 | 73 |
74 h tv_step_channel 1 | |
75 l tv_step_channel -1 | |
76 n tv_step_norm | |
77 b tv_step_chanlist | |
78 | |
79 ## | |
5113 | 80 ## GUI |
81 ## | |
82 | |
83 #l gui_loadfile | |
84 #t gui_loadsubtitle | |
85 #a gui_about | |
86 #s gui_stop | |
87 #p gui_playlist | |
88 #r gui_preferences | |
89 #c gui_skinbrowser | |
90 | |
91 ## | |
4909 | 92 ## Joystick section |
93 ## WARNING: joystick support has to be explicitly enabled at | |
94 ## compiletime with --enable-joystick | |
95 ## | |
96 | |
97 JOY_RIGHT seek 10 | |
98 JOY_LEFT seek -10 | |
99 JOY_UP seek 60 | |
100 JOY_DOWN seek -60 | |
101 JOY_BTN0 pause | |
102 JOY_BTN1 osd | |
5195 | 103 JOY_BTN2 volume 1 |
104 JOY_BTN3 volume -1 | |
25337 | 105 JOY_BTN4 set_menu main |
8261 | 106 |
107 ## | |
24037 | 108 ## Apple Remote section |
109 ## | |
25344 | 110 ## To use OSD menu with Apple Remote, set key AR_MENU to any OSD menu command, |
111 ## or just comment out the 'AR_MENU osd' line and uncomment the line after it. | |
112 ## | |
24037 | 113 |
114 AR_PLAY pause | |
115 AR_PLAY_HOLD quit | |
116 AR_NEXT seek 30 | |
117 AR_NEXT_HOLD seek 120 | |
118 AR_PREV seek -10 | |
119 AR_PREV_HOLD seek -120 | |
120 AR_MENU osd | |
25497
68dcca125c25
Change the default osd menu command for AR_MENU in comment of input.conf.
ulion
parents:
25344
diff
changeset
|
121 #AR_MENU menu cancel |
24037 | 122 AR_MENU_HOLD mute |
123 AR_VUP volume 1 | |
124 AR_VDOWN volume -1 | |
125 | |
126 ## | |
8261 | 127 ## OSD Menu movement keys |
128 ## | |
129 ## If you are using only the keyboard it is enough to define one command (like | |
10070 | 130 ## "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
|
131 ## then be navigated with the cursor keys and ENTER (defined in menu.conf). |
8261 | 132 ## |
133 ## LIRC users should bind each "menu" command to a button on their remote. | |
134 ## | |
10070 | 135 ## The set_menu command directly displays the (sub)menu specified as |
8261 | 136 ## its argument. Usage should be self-explanatory (although not likely |
137 ## to be needed), after reading input.conf. | |
138 ## | |
139 | |
140 #MOUSE_BTN0 menu up | |
141 #y menu down | |
142 #y menu ok | |
143 #y menu cancel | |
144 #y menu hide | |
145 #y set_menu general_pref | |
19770
0b8e84663cb2
added unallocated keys to navigate the dvdnav menus
nicodvb
parents:
18222
diff
changeset
|
146 |
21380
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
147 ## |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
148 ## DVDNAV |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
149 ## Requires dvdnav:// |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
150 ## |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
151 |
21381 | 152 KP8 dvdnav 1 # DVDNav UP |
153 KP2 dvdnav 2 # DVDNav DOWN | |
154 KP4 dvdnav 3 # DVDNav LEFT | |
155 KP6 dvdnav 4 # DVDNav RIGHT | |
156 KP5 dvdnav 5 # DVDNav MENU | |
157 KP_ENTER dvdnav 6 # DVDNav SELECT (ok) | |
158 KP7 dvdnav 7 # 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
|
159 |
f44dbada8898
add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents:
19778
diff
changeset
|
160 #? 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
|
161 #? seek_chapter +1 # next |