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