annotate etc/input.conf @ 32282:606e4157cd4c

Split alloc and init of context so that parameters can be set in the context instead of requireing being passed through function parameters. This also makes sws work with AVOptions.
author michael
date Sun, 26 Sep 2010 19:33:57 +0000
parents 5b1fe711b5c7
children bec4b99cda2a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4909
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
1 ##
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
2 ## MPlayer input control file
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
3 ##
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
4 ## You are able to redefine default keyboard/joystick/mouse/LIRC bindings, or
10070
1782c233cd29 Spelling and wording corrections.
diego
parents: 9117
diff changeset
5 ## add new ones here.
17179
9306cec64702 add hint to slave.txt
reimar
parents: 13710
diff changeset
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
1782c233cd29 Spelling and wording corrections.
diego
parents: 9117
diff changeset
8 ## The file should be placed in the $HOME/.mplayer directory.
4909
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
9 ##
26348
74188a3a558d document ignore option
compn
parents: 25731
diff changeset
10 ## If you wish to unbind a key, use key ignore.
74188a3a558d document ignore option
compn
parents: 25731
diff changeset
11 ## e.g. ENTER ignore
74188a3a558d document ignore option
compn
parents: 25731
diff changeset
12 ##
4909
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
13
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
14 RIGHT seek +10
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
15 LEFT seek -10
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
16 DOWN seek -60
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
17 UP seek +60
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
18 PGUP seek 600
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
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
d7af73cc38da allow changing playback speed during playback.
reimar
parents: 13642
diff changeset
25 [ speed_mult 0.9091 # scale playback speed
d7af73cc38da allow changing playback speed during playback.
reimar
parents: 13642
diff changeset
26 ] speed_mult 1.1
d7af73cc38da allow changing playback speed during playback.
reimar
parents: 13642
diff changeset
27 { speed_mult 0.5
d7af73cc38da allow changing playback speed during playback.
reimar
parents: 13642
diff changeset
28 } speed_mult 2.0
d7af73cc38da allow changing playback speed during playback.
reimar
parents: 13642
diff changeset
29 BS speed_set 1.0 # reset speed to normal
4909
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
30 q quit
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
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
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
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
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
35 SPACE pause
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
36 HOME pt_up_step 1
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
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
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
40 INS alt_src_step 1
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
41 DEL alt_src_step -1
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
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
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
47 9 volume -1
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
48 / volume -1
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
49 0 volume 1
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
50 * volume 1
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
51 1 contrast -1
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
52 2 contrast 1
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
53 3 brightness -1
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
54 4 brightness 1
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
55 5 hue -1
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
56 6 hue 1
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
57 7 saturation -1
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
58 8 saturation 1
23568
519e42b716aa The audio balance feature implemented with af_pan.
zuxy
parents: 22614
diff changeset
59 ( balance -0.1 # adjust audio balance in favor of left
519e42b716aa The audio balance feature implemented with af_pan.
zuxy
parents: 22614
diff changeset
60 ) balance +0.1 # right
4909
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
61 d frame_drop
25731
7b0af0594814 add default deinterlace key
compn
parents: 25497
diff changeset
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
866fae3d5700 added sub_step
gabucino
parents: 8261
diff changeset
65 #? sub_step +1 # immediately display next subtitle
866fae3d5700 added sub_step
gabucino
parents: 8261
diff changeset
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
gabucino
parents: 5017
diff changeset
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
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
75
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
76 h tv_step_channel 1
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
77 l tv_step_channel -1
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
78 n tv_step_norm
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
79 b tv_step_chanlist
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
80
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
81 ##
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
82 ## Joystick section
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
83 ## WARNING: joystick support has to be explicitly enabled at
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
84 ## compiletime with --enable-joystick
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
85 ##
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
86
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
87 JOY_RIGHT seek 10
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
88 JOY_LEFT seek -10
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
89 JOY_UP seek 60
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
90 JOY_DOWN seek -60
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
91 JOY_BTN0 pause
4920ed827496 initial version. Needs extending, especially LIRC.
gabucino
parents:
diff changeset
92 JOY_BTN1 osd
5195
3a0d9f577c45 Fix a typo error with JOY_BTN2 and JOY_BTN3
albeu
parents: 5136
diff changeset
93 JOY_BTN2 volume 1
3a0d9f577c45 Fix a typo error with JOY_BTN2 and JOY_BTN3
albeu
parents: 5136
diff changeset
94 JOY_BTN3 volume -1
25337
6a7cf06be2e8 allow osd menu being controlled by joystick
ben
parents: 24037
diff changeset
95 JOY_BTN4 set_menu main
8261
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
96
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
97 ##
24037
c7f95196dfe5 Apple Remote support
diego
parents: 23725
diff changeset
98 ## Apple Remote section
c7f95196dfe5 Apple Remote support
diego
parents: 23725
diff changeset
99 ##
25344
5733d840e9fb Add OSD menu keybindings for Apple Remote.
ulion
parents: 25343
diff changeset
100 ## To use OSD menu with Apple Remote, set key AR_MENU to any OSD menu command,
5733d840e9fb Add OSD menu keybindings for Apple Remote.
ulion
parents: 25343
diff changeset
101 ## or just comment out the 'AR_MENU osd' line and uncomment the line after it.
5733d840e9fb Add OSD menu keybindings for Apple Remote.
ulion
parents: 25343
diff changeset
102 ##
24037
c7f95196dfe5 Apple Remote support
diego
parents: 23725
diff changeset
103
c7f95196dfe5 Apple Remote support
diego
parents: 23725
diff changeset
104 AR_PLAY pause
c7f95196dfe5 Apple Remote support
diego
parents: 23725
diff changeset
105 AR_PLAY_HOLD quit
c7f95196dfe5 Apple Remote support
diego
parents: 23725
diff changeset
106 AR_NEXT seek 30
c7f95196dfe5 Apple Remote support
diego
parents: 23725
diff changeset
107 AR_NEXT_HOLD seek 120
c7f95196dfe5 Apple Remote support
diego
parents: 23725
diff changeset
108 AR_PREV seek -10
c7f95196dfe5 Apple Remote support
diego
parents: 23725
diff changeset
109 AR_PREV_HOLD seek -120
26769
d6b7b1c4e652 Make "Menu" button of AppleIR remote call OSD Menu instead
ben
parents: 26768
diff changeset
110 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
111 #AR_MENU menu cancel
24037
c7f95196dfe5 Apple Remote support
diego
parents: 23725
diff changeset
112 AR_MENU_HOLD mute
c7f95196dfe5 Apple Remote support
diego
parents: 23725
diff changeset
113 AR_VUP volume 1
c7f95196dfe5 Apple Remote support
diego
parents: 23725
diff changeset
114 AR_VDOWN volume -1
c7f95196dfe5 Apple Remote support
diego
parents: 23725
diff changeset
115
c7f95196dfe5 Apple Remote support
diego
parents: 23725
diff changeset
116 ##
8261
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
117 ## OSD Menu movement keys
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
118 ##
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
119 ## If you are using only the keyboard it is enough to define one command (like
10070
1782c233cd29 Spelling and wording corrections.
diego
parents: 9117
diff changeset
120 ## "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
121 ## then be navigated with the cursor keys and ENTER (defined in menu.conf).
8261
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
122 ##
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
123 ## LIRC users should bind each "menu" command to a button on their remote.
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
124 ##
10070
1782c233cd29 Spelling and wording corrections.
diego
parents: 9117
diff changeset
125 ## The set_menu command directly displays the (sub)menu specified as
8261
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
126 ## its argument. Usage should be self-explanatory (although not likely
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
127 ## to be needed), after reading input.conf.
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
128 ##
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
129
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
130 #MOUSE_BTN0 menu up
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
131 #y menu down
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
132 #y menu ok
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
133 #y menu cancel
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
134 #y menu hide
6922b04d0d10 OSD Menu section, description, sample defines
gabucino
parents: 5195
diff changeset
135 #y set_menu general_pref
19770
0b8e84663cb2 added unallocated keys to navigate the dvdnav menus
nicodvb
parents: 18222
diff changeset
136
21380
f44dbada8898 add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents: 19778
diff changeset
137 ##
f44dbada8898 add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents: 19778
diff changeset
138 ## DVDNAV
f44dbada8898 add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents: 19778
diff changeset
139 ## Requires dvdnav://
f44dbada8898 add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents: 19778
diff changeset
140 ##
f44dbada8898 add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents: 19778
diff changeset
141
27068
d7e0e33c546f Change DVDNAV command key names.
ben
parents: 26769
diff changeset
142 UP {dvdnav} dvdnav up # DVDNav UP
d7e0e33c546f Change DVDNAV command key names.
ben
parents: 26769
diff changeset
143 DOWN {dvdnav} dvdnav down # DVDNav DOWN
d7e0e33c546f Change DVDNAV command key names.
ben
parents: 26769
diff changeset
144 LEFT {dvdnav} dvdnav left # DVDNav LEFT
d7e0e33c546f Change DVDNAV command key names.
ben
parents: 26769
diff changeset
145 RIGHT {dvdnav} dvdnav right # DVDNav RIGHT
d7e0e33c546f Change DVDNAV command key names.
ben
parents: 26769
diff changeset
146 ESC {dvdnav} dvdnav menu # DVDNav MENU
d7e0e33c546f Change DVDNAV command key names.
ben
parents: 26769
diff changeset
147 ENTER {dvdnav} dvdnav select # DVDNav SELECT (ok)
d7e0e33c546f Change DVDNAV command key names.
ben
parents: 26769
diff changeset
148 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
149
27068
d7e0e33c546f Change DVDNAV command key names.
ben
parents: 26769
diff changeset
150 AR_VUP {dvdnav} dvdnav up # DVDNav UP
d7e0e33c546f Change DVDNAV command key names.
ben
parents: 26769
diff changeset
151 AR_VDOWN {dvdnav} dvdnav down # DVDNav DOWN
d7e0e33c546f Change DVDNAV command key names.
ben
parents: 26769
diff changeset
152 AR_PREV {dvdnav} dvdnav left # DVDNav LEFT
d7e0e33c546f Change DVDNAV command key names.
ben
parents: 26769
diff changeset
153 AR_NEXT {dvdnav} dvdnav right # DVDNav RIGHT
d7e0e33c546f Change DVDNAV command key names.
ben
parents: 26769
diff changeset
154 AR_MENU {dvdnav} dvdnav menu # DVDNav MENU
d7e0e33c546f Change DVDNAV command key names.
ben
parents: 26769
diff changeset
155 AR_PLAY {dvdnav} dvdnav select # DVDNav SELECT (ok)
26768
e92b50bfea22 Allow DVD Menus to be controlled by AppleIR Remote.
ben
parents: 26729
diff changeset
156
21380
f44dbada8898 add more comments to input.conf, patch by compn % tempn A twmi P rr P com %
gpoirier
parents: 19778
diff changeset
157 #? 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
158 #? seek_chapter +1 # next