Mercurial > mplayer.hg
annotate DOCS/tech/slave.txt @ 15493:3d17af80dca8
Consistency fixes
author | gpoirier |
---|---|
date | Mon, 16 May 2005 21:13:20 +0000 |
parents | 39eb8a327ea9 |
children | cec4a515061f |
rev | line source |
---|---|
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
1 SLAVE MODE PROTOCOL |
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
2 ------------------- |
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
3 |
15267 | 4 The -slave option switches on slave mode, in which MPlayer works as a backend |
5 for other programs. Instead of intercepting keyboard events, MPlayer will read | |
6 commands separated by a newline (\n) from stdin. | |
7 | |
8 To try slave mode out by hand, run | |
15264 | 9 |
15267 | 10 mplayer -slave -quiet <movie> |
11 | |
12 and type slave commands into the console window. | |
13 | |
14 Most slave mode commands are equivalent to command line options, though not | |
15 necessarily under the same name. Detailed descriptions can be found in the | |
16 man page. | |
13108 | 17 |
15264 | 18 All commands can be prefixed with "pausing ", causing MPlayer to pause as soon |
19 as possible after processing the command. Please note that this can be before | |
20 the command is fully executed. | |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
21 |
15267 | 22 Available commands ('mplayer -input cmdlist' will print a list): |
15264 | 23 |
14688 | 24 |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
25 seek <value> [<type>] |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
26 Seek to some place in the movie. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
27 0 is a relative seek of +/- <value> seconds (default). |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
28 1 is a seek to <value> % in the movie. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
29 2 is a seek to an absolute position of <value> seconds. |
11932
a3e5b0b07ba8
change_rectangle documentation by Angel <knight@sunflower.com>
diego
parents:
11542
diff
changeset
|
30 |
13710 | 31 speed_set <value> |
32 Set the speed to <value>. | |
33 | |
34 speed_incr <value> | |
35 Add <value> to the current playback speed. | |
36 | |
37 speed_mult <value> | |
13714 | 38 Multiply the current speed by <value>. |
13710 | 39 |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
40 edl_mark |
14329
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
41 Write the current position into the EDL file. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
42 |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
43 audio_delay <value> |
13244
aa4114c517ea
switch_vsync patch by Aurelien Jacobs <aurel @ gnuage.org>, small fix
diego
parents:
13109
diff
changeset
|
44 Adjust the audio delay by <value> seconds. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
45 |
13366
a75512de0dad
Quit now sends an optional return value, based on patch sent by Aurelien
diego
parents:
13244
diff
changeset
|
46 quit [<value>] |
a75512de0dad
Quit now sends an optional return value, based on patch sent by Aurelien
diego
parents:
13244
diff
changeset
|
47 Quit MPlayer. The optional integer value is used as the return code |
a75512de0dad
Quit now sends an optional return value, based on patch sent by Aurelien
diego
parents:
13244
diff
changeset
|
48 for the mplayer process (default: 0). |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
49 |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
50 pause |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
51 Pause/unpause the playback. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
52 |
13626
741649fe31cb
allow to step only one frame forward by pressing s.
reimar
parents:
13390
diff
changeset
|
53 frame_step |
741649fe31cb
allow to step only one frame forward by pressing s.
reimar
parents:
13390
diff
changeset
|
54 Play one frame, then pause again. |
741649fe31cb
allow to step only one frame forward by pressing s.
reimar
parents:
13390
diff
changeset
|
55 |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
56 grab_frames |
14323
862fab5f5fde
grab_frame, osd_show_text, sub_step, screenshot documented.
diego
parents:
13991
diff
changeset
|
57 Currently unimplemented. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
58 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
59 pt_step <value> [<force>] |
13715 | 60 Go to the next/previous entry in the playtree. The sign of <value> tells |
61 the direction. If no entry is available in the given direction it will do | |
62 nothing unless force is non-zero. | |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
63 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
64 pt_up_step <value> [<force>] |
13715 | 65 Similar to pt_step but jumps to the next/previous entry in the parent list. |
66 Useful to break out of the inner loop in the playtree. | |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
67 |
13715 | 68 alt_src_step <value> (ASX playlist only) |
69 When more than one source is available it selects the next/previous one. | |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
70 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
71 sub_delay <value> [<abs>] |
13108 | 72 Adjust the subtitle delay by +/- <value> seconds or set it to <value> |
73 seconds when <abs> is nonzero. | |
74 | |
14323
862fab5f5fde
grab_frame, osd_show_text, sub_step, screenshot documented.
diego
parents:
13991
diff
changeset
|
75 sub_step <value> |
862fab5f5fde
grab_frame, osd_show_text, sub_step, screenshot documented.
diego
parents:
13991
diff
changeset
|
76 Step forward in the subtitle list by <value> steps or backwards if <value> |
862fab5f5fde
grab_frame, osd_show_text, sub_step, screenshot documented.
diego
parents:
13991
diff
changeset
|
77 is negative. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
78 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
79 osd [<level>] |
13108 | 80 Toggle OSD mode or set it to level when <level> >= 0. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
81 |
14323
862fab5f5fde
grab_frame, osd_show_text, sub_step, screenshot documented.
diego
parents:
13991
diff
changeset
|
82 osd_show_text <string> |
14329
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
83 Show <string> on the OSD. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
84 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
85 volume <value> |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
86 Increase/decrease volume. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
87 |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
88 use_master |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
89 Switch volume control between master and PCM. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
90 |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
91 mute |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
92 Mute/unmute sound output. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
93 |
15285
39eb8a327ea9
adds a parameter to the switch_audio command to directly select a track.
reimar
parents:
15267
diff
changeset
|
94 switch_audio [<value>] (MPEG and Matroska only) |
39eb8a327ea9
adds a parameter to the switch_audio command to directly select a track.
reimar
parents:
15267
diff
changeset
|
95 Switch to the audio track with the id <value>. Cycle through the |
39eb8a327ea9
adds a parameter to the switch_audio command to directly select a track.
reimar
parents:
15267
diff
changeset
|
96 available tracks if <value> is omitted or negative. |
15047
c9eb0a051ed8
The online switching patch also features a slave command: switch_audio
gpoirier
parents:
14691
diff
changeset
|
97 |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
98 [contrast|gamma|brightness|hue|saturation] <-100 - 100> [<abs>] |
13108 | 99 Set/adjust video parameters. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
100 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
101 frame_drop [<value>] |
13108 | 102 Toggle/set frame dropping mode. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
103 |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
104 sub_pos <value> |
13108 | 105 Adjust subtitle position. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
106 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
107 sub_alignment <value> |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
108 Set subtitle alignment. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
109 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
110 sub_visibility |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
111 Toggle subtitle visibility. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
112 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
113 get_sub_visibility |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
114 Print out subtitle visibility (1 == on, 0 == off). |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
115 |
15128
96512bcb2eca
allow sub_select and vobsub_lang to select particular subtitle
henry
parents:
15049
diff
changeset
|
116 sub_select [<value>] |
96512bcb2eca
allow sub_select and vobsub_lang to select particular subtitle
henry
parents:
15049
diff
changeset
|
117 Display subtitle with index <value>. Turn subtitle display off if |
96512bcb2eca
allow sub_select and vobsub_lang to select particular subtitle
henry
parents:
15049
diff
changeset
|
118 <value> is -1 or greater than the highest available subtitle index. |
96512bcb2eca
allow sub_select and vobsub_lang to select particular subtitle
henry
parents:
15049
diff
changeset
|
119 Cycle through the available subtitles if <value> is omitted or less |
96512bcb2eca
allow sub_select and vobsub_lang to select particular subtitle
henry
parents:
15049
diff
changeset
|
120 than -1. Supported subtitle sources are -sub options on the command |
96512bcb2eca
allow sub_select and vobsub_lang to select particular subtitle
henry
parents:
15049
diff
changeset
|
121 line, VOBsubs, DVD subtitles, and Ogg and Matroska text streams. |
13089 | 122 |
14684 | 123 sub_log |
124 Logs the current or last displayed subtitle together with filename | |
125 and time information to ~/.mplayer/subtitle_log. Intended purpose | |
126 is to allow convenient marking of bogus subtitles which need to be | |
127 fixed while watching the movie. | |
128 | |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
129 vobsub_lang |
13089 | 130 This is a stub linked to sub_select for backwards compatibility. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
131 |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
132 get_percent_pos |
13108 | 133 Print out the current position in the file, as integer percentage [0-100). |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
134 |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
135 get_time_length |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
136 Print out the length of the current file in seconds. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
137 |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
138 vo_fullscreen |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
139 Switch to fullscreen mode. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
140 |
10927
3037e30057bc
Typo fix + some additions by Mike Swieton <swietonm@student.gvsu.edu>.
diego
parents:
10897
diff
changeset
|
141 get_vo_fullscreen |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
142 Print out fullscreen status (1 == fullscreened, 0 == windowed). |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
143 |
11542 | 144 vo_ontop |
13109 | 145 Toggle stay-on-top. |
11542 | 146 |
13091 | 147 vo_rootwin |
13109 | 148 Toggle playback on the root window. |
13091 | 149 |
13244
aa4114c517ea
switch_vsync patch by Aurelien Jacobs <aurel @ gnuage.org>, small fix
diego
parents:
13109
diff
changeset
|
150 switch_vsync [<value>] |
aa4114c517ea
switch_vsync patch by Aurelien Jacobs <aurel @ gnuage.org>, small fix
diego
parents:
13109
diff
changeset
|
151 Toggle vsync (1 == on, 0 == off). If no value is provided, |
aa4114c517ea
switch_vsync patch by Aurelien Jacobs <aurel @ gnuage.org>, small fix
diego
parents:
13109
diff
changeset
|
152 vsync status is inverted. |
aa4114c517ea
switch_vsync patch by Aurelien Jacobs <aurel @ gnuage.org>, small fix
diego
parents:
13109
diff
changeset
|
153 |
13367
81ca72fd45f6
runtime aspect switching, patch by Aurelien Jacobs <aurel at gnuage . org>
diego
parents:
13366
diff
changeset
|
154 switch_ratio [<value>] |
81ca72fd45f6
runtime aspect switching, patch by Aurelien Jacobs <aurel at gnuage . org>
diego
parents:
13366
diff
changeset
|
155 Change aspect ratio at runtime. Value is the new aspect ratio expressed |
81ca72fd45f6
runtime aspect switching, patch by Aurelien Jacobs <aurel at gnuage . org>
diego
parents:
13366
diff
changeset
|
156 as a float (e.g. 1.77778 for 16/9). |
13390 | 157 There might be problems with some video filters. |
13367
81ca72fd45f6
runtime aspect switching, patch by Aurelien Jacobs <aurel at gnuage . org>
diego
parents:
13366
diff
changeset
|
158 |
14329
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
159 panscan <-1.0 - 1.0> | <0.0 - 1.0> <absolute> |
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
160 Increase or decrease the pan-and-scan range by <value>, 1.0 is the maximum. |
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
161 Negative values decrease the pan-and-scan range. |
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
162 If <absolute> is != 0, then the pan-and scan range is interpreted as an |
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
163 absolute range. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
164 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
165 loadfile <file|url> |
13108 | 166 Load the given file/URL. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
167 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
168 loadlist <file> |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
169 Load the given playlist file. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
170 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
171 change_rectangle <val1> <val2> |
11932
a3e5b0b07ba8
change_rectangle documentation by Angel <knight@sunflower.com>
diego
parents:
11542
diff
changeset
|
172 Change the position of the rectangle filter rectangle. |
13109 | 173 <val1> |
174 Must be one of the following: | |
175 0 = width | |
176 1 = height | |
177 2 = x position | |
178 3 = y position | |
179 <val2> | |
180 If <val1> is 0 or 1: | |
181 Integer amount to add/subtract from the width/height. | |
182 Positive values add to width/height and negative values | |
183 subtract from it. | |
184 If <val1> is 2 or 3: | |
185 Relative integer amount by which to move the upper left | |
186 rectangle corner. Positive values move the rectangle | |
187 right/down and negative values move the rectangle left/up. | |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
188 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
189 dvdnav <button> |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
190 Press the given dvdnav button. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
191 1 up |
13714 | 192 2 down |
193 3 left | |
194 4 right | |
195 5 menu | |
196 6 select | |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
197 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
198 dvdnav_event <value> |
14329
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
199 Send <value> as DVDNAV event. DVDNAV support in MPlayer is disabled. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
200 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
201 tv_step_channel <channel> |
13108 | 202 Select next/previous TV channel. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
203 |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
204 tv_step_norm |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
205 Change TV norm. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
206 |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
207 tv_step_chanlist |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
208 Change channel list. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
209 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
210 tv_set_channel <channel> |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
211 Set the current TV channel. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
212 |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
213 tv_last_channel |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
214 Set the current TV channel to the last one. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
215 |
10521
141141fdd250
I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents:
10218
diff
changeset
|
216 tv_set_freq <frequency in MHz> |
13108 | 217 Set the TV tuner frequency. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
218 |
10521
141141fdd250
I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents:
10218
diff
changeset
|
219 tv_set_norm <norm> |
13108 | 220 Set the TV tuner norm (PAL, SECAM, NTSC, ...). |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
221 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
222 tv_set_brightness <-100 - 100> |
13108 | 223 Set TV tuner brightness. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
224 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
225 tv_set_contrast <-100 -100> |
13108 | 226 Set TV tuner contrast. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
227 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
228 tv_set_hue <-100 - 100> |
13108 | 229 Set TV tuner hue. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
230 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
231 tv_set_saturation <-100 - 100> |
13108 | 232 Set TV tuner saturation. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
233 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
234 gui_[loadfile|loadsubtitle|about|play|stop|gui_playlist|gui_preferences|skinbrowser] |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
235 GUI actions |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
236 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
237 forced_subs_only |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
238 Display forced subtitles only. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
239 |
12314
c81c4930cadc
dvb_set_channel now has two parameters, patch by Nico Sabbi.
diego
parents:
11932
diff
changeset
|
240 dvb_set_channel <channel_number> <card_number> |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
241 Set DVB channel. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
242 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
243 screenshot |
14323
862fab5f5fde
grab_frame, osd_show_text, sub_step, screenshot documented.
diego
parents:
13991
diff
changeset
|
244 Take a screenshot. Currently not implemented in any video output driver. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
245 |
14329
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
246 menu <command> |
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
247 Execute an OSD menu command. |
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
248 up Move cursor up. |
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
249 down Move cursor down. |
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
250 ok Accept selection. |
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
251 cancel Cancel selection. |
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
252 hide Hide the OSD menu. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
253 |
14329
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
254 set_menu <menu_name> |
74e323b9e5db
More commands documented, based on Reimar's findings.
diego
parents:
14323
diff
changeset
|
255 Display the menu named <menu_name>. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
256 |
14691 | 257 The following commands are really only useful for OSD menu console mode: |
258 | |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
259 help |
14691 | 260 Displays help text, currently empty. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
261 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
262 exit |
14691 | 263 Exits from OSD menu console. Unlike 'quit', does not quit MPlayer. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
264 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
265 hide |
14691 | 266 Hides the OSD menu console. Clicking a menu command unhides it. Other |
267 keybindings act as usual. | |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
268 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
269 run <value> |
14691 | 270 Run <value> as shell command. In OSD menu console mode stdout and stdin |
271 are through the video output driver. |