Mercurial > mplayer.hg
annotate DOCS/tech/slave.txt @ 27428:bea545589195
fixes spotted by diego
author | compn |
---|---|
date | Wed, 13 Aug 2008 18:22:10 +0000 |
parents | d7e0e33c546f |
children | 6a7cdd00599f |
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 | |
26235
635327338b41
add complete fifo instructions, user didnt know to use mkfifo first.
compn
parents:
25822
diff
changeset
|
14 You can also use a fifo file (named pipe): |
24932
230f1e6a7c2d
Add an example on how to use slave mode with a fifo
reimar
parents:
24258
diff
changeset
|
15 |
26235
635327338b41
add complete fifo instructions, user didnt know to use mkfifo first.
compn
parents:
25822
diff
changeset
|
16 mkfifo </tmp/fifofile> |
24932
230f1e6a7c2d
Add an example on how to use slave mode with a fifo
reimar
parents:
24258
diff
changeset
|
17 mplayer -input file=<fifofile> <movie> |
230f1e6a7c2d
Add an example on how to use slave mode with a fifo
reimar
parents:
24258
diff
changeset
|
18 |
15267 | 19 Most slave mode commands are equivalent to command line options, though not |
20 necessarily under the same name. Detailed descriptions can be found in the | |
21 man page. | |
13108 | 22 |
17241
3ab613cdf96a
add "pausing_keep" and "pausing_toggle" input cmd prefixes
ods15
parents:
17182
diff
changeset
|
23 All commands can be prefixed with one of "pausing ", "pausing_keep ", or |
3ab613cdf96a
add "pausing_keep" and "pausing_toggle" input cmd prefixes
ods15
parents:
17182
diff
changeset
|
24 "pausing_toggle ". "pausing " tells MPlayer to pause as soon as possible |
3ab613cdf96a
add "pausing_keep" and "pausing_toggle" input cmd prefixes
ods15
parents:
17182
diff
changeset
|
25 after processing the command. "pausing_keep " tells MPlayer to do so only if |
3ab613cdf96a
add "pausing_keep" and "pausing_toggle" input cmd prefixes
ods15
parents:
17182
diff
changeset
|
26 it was already in paused mode. "pausing_toggle " tells MPlayer to do so |
3ab613cdf96a
add "pausing_keep" and "pausing_toggle" input cmd prefixes
ods15
parents:
17182
diff
changeset
|
27 only if it was not already in paused mode. Please note that "as soon as |
3ab613cdf96a
add "pausing_keep" and "pausing_toggle" input cmd prefixes
ods15
parents:
17182
diff
changeset
|
28 possible" can be before the command is fully executed. |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
29 |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
30 |
15267 | 31 Available commands ('mplayer -input cmdlist' will print a list): |
15264 | 32 |
14688 | 33 |
13715 | 34 alt_src_step <value> (ASX playlist only) |
35 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
|
36 |
17954 | 37 audio_delay <value> [abs] |
17937 | 38 Set/adjust the audio delay. |
17954 | 39 If [abs] is not given or is zero, adjust the delay by <value> seconds. |
40 If [abs] is nonzero, set the delay to <value> seconds. | |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
41 |
17954 | 42 [brightness|contrast|gamma|hue|saturation] <value> [abs] |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
43 Set/adjust video parameters. |
17954 | 44 If [abs] is not given or is zero, modifies parameter by <value>. |
45 If [abs] is non-zero, parameter is set to <value>. | |
17182
3a892a5656db
minor grammar clarification to the last commit, + omitted periods
wanderer
parents:
17178
diff
changeset
|
46 <value> is in the range [-100, 100]. |
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 change_rectangle <val1> <val2> |
11932
a3e5b0b07ba8
change_rectangle documentation by Angel <knight@sunflower.com>
diego
parents:
11542
diff
changeset
|
49 Change the position of the rectangle filter rectangle. |
13109 | 50 <val1> |
51 Must be one of the following: | |
52 0 = width | |
53 1 = height | |
54 2 = x position | |
55 3 = y position | |
56 <val2> | |
57 If <val1> is 0 or 1: | |
58 Integer amount to add/subtract from the width/height. | |
59 Positive values add to width/height and negative values | |
60 subtract from it. | |
61 If <val1> is 2 or 3: | |
62 Relative integer amount by which to move the upper left | |
63 rectangle corner. Positive values move the rectangle | |
64 right/down and negative values move the rectangle left/up. | |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
65 |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
66 dvb_set_channel <channel_number> <card_number> |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
67 Set DVB channel. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
68 |
27068 | 69 dvdnav <button_name> |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
70 Press the given dvdnav button. |
27068 | 71 up |
72 down | |
73 left | |
74 right | |
75 menu | |
76 select | |
77 prev | |
78 mouse | |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
79 |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
80 edl_mark |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
81 Write the current position into the EDL file. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
82 |
17954 | 83 frame_drop [value] |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
84 Toggle/set frame dropping mode. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
85 |
19534 | 86 get_audio_bitrate |
87 Print out the audio bitrate of the current file. | |
88 | |
89 get_audio_codec | |
90 Print out the audio codec name of the current file. | |
91 | |
92 get_audio_samples | |
93 Print out the audio frequency and number of channels of the current file. | |
94 | |
95 get_file_name | |
96 Print out the name of the current file. | |
97 | |
98 get_meta_album | |
99 Print out the 'Album' metadata of the current file. | |
100 | |
101 get_meta_artist | |
102 Print out the 'Artist' metadata of the current file. | |
103 | |
104 get_meta_comment | |
105 Print out the 'Comment' metadata of the current file. | |
106 | |
107 get_meta_genre | |
108 Print out the 'Genre' metadata of the current file. | |
109 | |
110 get_meta_title | |
111 Print out the 'Title' metadata of the current file. | |
112 | |
113 get_meta_track | |
114 Print out the 'Track Number' metadata of the current file. | |
115 | |
116 get_meta_year | |
117 Print out the 'Year' metadata of the current file. | |
118 | |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
119 get_percent_pos |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
120 Print out the current position in the file, as integer percentage [0-100). |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
121 |
17924
0eac85e451cb
Add get/set_property and update volume/mute to the last changes.
albeu
parents:
17241
diff
changeset
|
122 get_property <property> |
0eac85e451cb
Add get/set_property and update volume/mute to the last changes.
albeu
parents:
17241
diff
changeset
|
123 Print out the current value of a property. |
0eac85e451cb
Add get/set_property and update volume/mute to the last changes.
albeu
parents:
17241
diff
changeset
|
124 |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
125 get_sub_visibility |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
126 Print out subtitle visibility (1 == on, 0 == off). |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
127 |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
128 get_time_length |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
129 Print out the length of the current file in seconds. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
130 |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
131 get_time_pos |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
132 Print out the current position in the file in seconds, as float. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
133 |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
134 get_vo_fullscreen |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
135 Print out fullscreen status (1 == fullscreened, 0 == windowed). |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
136 |
19534 | 137 get_video_bitrate |
138 Print out the video bitrate of the current file. | |
139 | |
140 get_video_codec | |
141 Print out the video codec name of the current file. | |
142 | |
143 get_video_resolution | |
144 Print out the video resolution of the current file. | |
145 | |
19833 | 146 screenshot <value> |
16479
e56a4aea6512
The screenshot command is now implemented, wording/spelling fixes.
diego
parents:
16445
diff
changeset
|
147 Take a screenshot. Requires the screenshot filter to be loaded. |
19858 | 148 0 Take a single screenshot. |
149 1 Start/stop taking screenshot of each frame. | |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
150 |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
151 gui_[about|loadfile|loadsubtitle|play|playlist|preferences|skinbrowser|stop] |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
152 GUI actions |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
153 |
16445 | 154 key_down_event <value> |
20109 | 155 Inject <value> key code event into MPlayer. |
16445 | 156 |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
157 loadfile <file|url> <append> |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
158 Load the given file/URL, stopping playback of the current file/URL. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
159 If <append> is nonzero playback continues and the file/URL is |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
160 appended to the current playlist instead. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
161 |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
162 loadlist <file> <append> |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
163 Load the given playlist file, stopping playback of the current file. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
164 If <append> is nonzero playback continues and the playlist file is |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
165 appended to the current playlist instead. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
166 |
23727 | 167 loop <value> [abs] |
168 Adjust/set how many times the movie should be looped. -1 means no loop, | |
169 and 0 forever. | |
170 | |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
171 menu <command> |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
172 Execute an OSD menu command. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
173 up Move cursor up. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
174 down Move cursor down. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
175 ok Accept selection. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
176 cancel Cancel selection. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
177 hide Hide the OSD menu. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
178 |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
179 set_menu <menu_name> |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
180 Display the menu named <menu_name>. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
181 |
17954 | 182 mute [value] |
17955 | 183 Toggle sound output muting or set it to [value] when [value] >= 0 |
17924
0eac85e451cb
Add get/set_property and update volume/mute to the last changes.
albeu
parents:
17241
diff
changeset
|
184 (1 == on, 0 == off). |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
185 |
17954 | 186 osd [level] |
187 Toggle OSD mode or set it to [level] when [level] >= 0. | |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
188 |
18222
8c35bd43135f
Add a new command: osd_show_property_text that show an expanded property
albeu
parents:
18208
diff
changeset
|
189 osd_show_property_text <string> [duration] [level] |
8c35bd43135f
Add a new command: osd_show_property_text that show an expanded property
albeu
parents:
18208
diff
changeset
|
190 Show an expanded property string on the OSD, see -playing-msg for a |
8c35bd43135f
Add a new command: osd_show_property_text that show an expanded property
albeu
parents:
18208
diff
changeset
|
191 description of the available expansions. If [duration] is >= 0 the text |
18224 | 192 is shown for [duration] ms. [level] sets the minimum OSD level needed |
193 for the message to be visible (default: 0 - always show). | |
18222
8c35bd43135f
Add a new command: osd_show_property_text that show an expanded property
albeu
parents:
18208
diff
changeset
|
194 |
18223 | 195 osd_show_text <string> [duration] [level] |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
196 Show <string> on the OSD. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
197 |
17955 | 198 panscan <-1.0 - 1.0> | <0.0 - 1.0> <abs> |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
199 Increase or decrease the pan-and-scan range by <value>, 1.0 is the maximum. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
200 Negative values decrease the pan-and-scan range. |
17955 | 201 If <abs> is != 0, then the pan-and scan range is interpreted as an |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
202 absolute range. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
203 |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
204 pause |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
205 Pause/unpause the playback. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
206 |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
207 frame_step |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
208 Play one frame, then pause again. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
209 |
17954 | 210 pt_step <value> [force] |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
211 Go to the next/previous entry in the playtree. The sign of <value> tells |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
212 the direction. If no entry is available in the given direction it will do |
17954 | 213 nothing unless [force] is non-zero. |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
214 |
17954 | 215 pt_up_step <value> [force] |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
216 Similar to pt_step but jumps to the next/previous entry in the parent list. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
217 Useful to break out of the inner loop in the playtree. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
218 |
17954 | 219 quit [value] |
220 Quit MPlayer. The optional integer [value] is used as the return code | |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
221 for the mplayer process (default: 0). |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
222 |
19589
d5c80704c04c
description of radio slave commands, copied from TV command descriptions :-)
reimar
parents:
19534
diff
changeset
|
223 radio_set_channel <channel> |
19607 | 224 Switch to <channel>. The 'channels' radio parameter needs to be set. |
19589
d5c80704c04c
description of radio slave commands, copied from TV command descriptions :-)
reimar
parents:
19534
diff
changeset
|
225 |
d5c80704c04c
description of radio slave commands, copied from TV command descriptions :-)
reimar
parents:
19534
diff
changeset
|
226 radio_set_freq <frequency in MHz> |
d5c80704c04c
description of radio slave commands, copied from TV command descriptions :-)
reimar
parents:
19534
diff
changeset
|
227 Set the radio tuner frequency. |
d5c80704c04c
description of radio slave commands, copied from TV command descriptions :-)
reimar
parents:
19534
diff
changeset
|
228 |
19607 | 229 radio_step_channel <-1|1> |
230 Step forwards (1) or backwards (-1) in channel list. Works only when the | |
231 'channels' radio parameter was set. | |
232 | |
21042 | 233 radio_step_freq <value> |
234 Tune frequency by the <value> (positive - up, negative - down). | |
235 | |
17954 | 236 seek <value> [type] |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
237 Seek to some place in the movie. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
238 0 is a relative seek of +/- <value> seconds (default). |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
239 1 is a seek to <value> % in the movie. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
240 2 is a seek to an absolute position of <value> seconds. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
241 |
19342 | 242 seek_chapter <value> [type] |
243 Seek to the start of a chapter. | |
19346 | 244 0 is a relative seek of +/- <value> chapters (default). |
245 1 is a seek to chapter <value>. | |
19342 | 246 |
25579 | 247 switch_angle <value> |
25822 | 248 Switch to the angle with the ID [value]. Cycle through the |
25579 | 249 available angles if [value] is omitted or negative. |
250 | |
19855 | 251 set_mouse_pos <x> <y> |
19871 | 252 Tells MPlayer the coordinates of the mouse in the window. |
253 This command doesn't move the mouse! | |
19855 | 254 |
17924
0eac85e451cb
Add get/set_property and update volume/mute to the last changes.
albeu
parents:
17241
diff
changeset
|
255 set_property <property> <value> |
0eac85e451cb
Add get/set_property and update volume/mute to the last changes.
albeu
parents:
17241
diff
changeset
|
256 Set a property. |
0eac85e451cb
Add get/set_property and update volume/mute to the last changes.
albeu
parents:
17241
diff
changeset
|
257 |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
258 speed_incr <value> |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
259 Add <value> to the current playback speed. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
260 |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
261 speed_mult <value> |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
262 Multiply the current speed by <value>. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
263 |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
264 speed_set <value> |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
265 Set the speed to <value>. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
266 |
23412
f6c225ffe60d
Allow setting the direction in the step_property command.
albeu
parents:
22667
diff
changeset
|
267 step_property <property> [value] [direction] |
f6c225ffe60d
Allow setting the direction in the step_property command.
albeu
parents:
22667
diff
changeset
|
268 Change a property by value, or increase by a default if value is |
f6c225ffe60d
Allow setting the direction in the step_property command.
albeu
parents:
22667
diff
changeset
|
269 not given or zero. The direction is reversed if direction is less |
f6c225ffe60d
Allow setting the direction in the step_property command.
albeu
parents:
22667
diff
changeset
|
270 than zero. |
20915 | 271 |
26877 | 272 stop |
273 Stop playback. | |
274 | |
17976 | 275 sub_alignment [value] |
17937 | 276 Toggle/set subtitle alignment. |
17976 | 277 0 top alignment |
278 1 center alignment | |
279 2 bottom alignment | |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
280 |
17954 | 281 sub_delay <value> [abs] |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
282 Adjust the subtitle delay by +/- <value> seconds or set it to <value> |
17954 | 283 seconds when [abs] is nonzero. |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
284 |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
285 sub_load <subtitle_file> |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
286 Loads subtitles from <subtitle_file>. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
287 |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
288 sub_log |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
289 Logs the current or last displayed subtitle together with filename |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
290 and time information to ~/.mplayer/subtitle_log. Intended purpose |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
291 is to allow convenient marking of bogus subtitles which need to be |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
292 fixed while watching the movie. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
293 |
17954 | 294 sub_pos <value> [abs] |
17937 | 295 Adjust/set subtitle position. |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
296 |
17954 | 297 sub_remove [value] |
298 If the [value] argument is present and non-negative, removes the subtitle | |
299 file with index [value]. If the argument is omitted or negative, removes | |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
300 all subtitle files. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
301 |
17954 | 302 sub_select [value] |
303 Display subtitle with index [value]. Turn subtitle display off if | |
304 [value] is -1 or greater than the highest available subtitle index. | |
305 Cycle through the available subtitles if [value] is omitted or less | |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
306 than -1. Supported subtitle sources are -sub options on the command |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
307 line, VOBsubs, DVD subtitles, and Ogg and Matroska text streams. |
25129
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
308 This command is mainly for cycling all subtitles, if you want to set |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
309 a specific subtitle, use sub_file, sub_vob, or sub_demux. |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
310 |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
311 sub_source [source] |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
312 Display first subtitle from [source]. Here [source] is an integer: |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
313 SUB_SOURCE_SUBS (0) for file subs |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
314 SUB_SOURCE_VOBSUB (1) for VOBsub files |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
315 SUB_SOURCE_DEMUX (2) for subtitle embedded in the media file or DVD subs. |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
316 If [source] is -1, will turn off subtitle display. If [source] less than -1, |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
317 will cycle between the first subtitle of each currently available sources. |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
318 |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
319 sub_file [value] |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
320 Display subtitle specifid by [value] for file subs. The [value] is |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
321 corresponding to ID_FILE_SUB_ID values reported by '-identify'. |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
322 If [value] is -1, will turn off subtitle display. If [value] less than -1, |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
323 will cycle all file subs. |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
324 |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
325 sub_vob [value] |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
326 Display subtitle specifid by [value] for vobsubs. The [value] is |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
327 corresponding to ID_VOBSUB_ID values reported by '-identify'. |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
328 If [value] is -1, will turn off subtitle display. If [value] less than -1, |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
329 will cycle all vobsubs. |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
330 |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
331 sub_demux [value] |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
332 Display subtitle specifid by [value] for subtitles from DVD or embedded |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
333 in media file. The [value] is corresponding to ID_SUBTITLE_ID values |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
334 reported by '-identify'. If [value] is -1, will turn off subtitle display. |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
335 If [value] less than -1, will cycle all DVD subs or embedded subs. |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
336 |
23725 | 337 sub_scale <value> [abs] |
338 Adjust the subtitle size by +/- <value> or set it to <value> when [abs] | |
339 is nonzero. | |
340 | |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
341 vobsub_lang |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
342 This is a stub linked to sub_select for backwards compatibility. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
343 |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
344 sub_step <value> |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
345 Step forward in the subtitle list by <value> steps or backwards if <value> |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
346 is negative. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
347 |
17954 | 348 sub_visibility [value] |
17937 | 349 Toggle/set subtitle visibility. |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
350 |
17954 | 351 forced_subs_only [value] |
17937 | 352 Toggle/set forced subtitles only. |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
353 |
24985
e09187679c34
switch_audio works with many other formats than described
nicodvb
parents:
24932
diff
changeset
|
354 switch_audio [value] (currently MPEG*, AVI, Matroska and streams handled by libavformat) |
25822 | 355 Switch to the audio track with the ID [value]. Cycle through the |
17954 | 356 available tracks if [value] is omitted or negative. |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
357 |
25821
ff2e44f77e52
add documentation about switch_angle and switch_title slave commands
ben
parents:
25579
diff
changeset
|
358 switch_angle [value] (DVDs only) |
25822 | 359 Switch to the DVD angle with the ID [value]. Cycle through the |
25821
ff2e44f77e52
add documentation about switch_angle and switch_title slave commands
ben
parents:
25579
diff
changeset
|
360 available angles if [value] is omitted or negative. |
ff2e44f77e52
add documentation about switch_angle and switch_title slave commands
ben
parents:
25579
diff
changeset
|
361 |
17954 | 362 switch_ratio [value] |
363 Change aspect ratio at runtime. [value] is the new aspect ratio expressed | |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
364 as a float (e.g. 1.77778 for 16/9). |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
365 There might be problems with some video filters. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
366 |
25821
ff2e44f77e52
add documentation about switch_angle and switch_title slave commands
ben
parents:
25579
diff
changeset
|
367 switch_title [value] (DVDNAV only) |
25822 | 368 Switch to the DVD title with the ID [value]. Cycle through the |
25821
ff2e44f77e52
add documentation about switch_angle and switch_title slave commands
ben
parents:
25579
diff
changeset
|
369 available titles if [value] is omitted or negative. |
ff2e44f77e52
add documentation about switch_angle and switch_title slave commands
ben
parents:
25579
diff
changeset
|
370 |
17954 | 371 switch_vsync [value] |
372 Toggle vsync (1 == on, 0 == off). If [value] is not provided, | |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
373 vsync status is inverted. |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
374 |
23904 | 375 teletext_add_digit <value> |
376 Enter/leave teletext page number editing mode and append given digit to | |
377 previously entered one. | |
378 0..9 - Append apropriate digit. (Enables editing mode if called from normal | |
379 mode, and switches to normal mode when third digit is entered.) | |
380 - - Delete last digit from page number. (Backspace emulation, works only | |
381 in page number editing mode.) | |
382 | |
24244 | 383 teletext_go_link <1-6> |
24258 | 384 Follow given link on current teletext page. |
24244 | 385 |
24105
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
23904
diff
changeset
|
386 tv_start_scan |
24258 | 387 Start automatic TV channel scanning. |
24105
9e71e0345c35
Automatic TV channels scanning ability for MPlayer.
voroshil
parents:
23904
diff
changeset
|
388 |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
389 tv_step_channel <channel> |
13108 | 390 Select next/previous TV channel. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
391 |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
392 tv_step_norm |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
393 Change TV norm. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
394 |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
395 tv_step_chanlist |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
396 Change channel list. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
397 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
398 tv_set_channel <channel> |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
399 Set the current TV channel. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
400 |
10218
f82646fc1431
Moved video filters to a separate section, moved slave mode section to the
jonas
parents:
diff
changeset
|
401 tv_last_channel |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
402 Set the current TV channel to the last one. |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
403 |
10521
141141fdd250
I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents:
10218
diff
changeset
|
404 tv_set_freq <frequency in MHz> |
13108 | 405 Set the TV tuner frequency. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
406 |
22667 | 407 tv_step_freq <frequency offset in MHz> |
408 Set the TV tuner frequency relative to current value. | |
409 | |
10521
141141fdd250
I'd like to change tv tuner frequency in the slave mode. So this patch
gabucino
parents:
10218
diff
changeset
|
410 tv_set_norm <norm> |
13108 | 411 Set the TV tuner norm (PAL, SECAM, NTSC, ...). |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
412 |
18208
70edbfdeca61
The tv color control commands can now also adjust the values.
albeu
parents:
17976
diff
changeset
|
413 tv_set_brightness <-100 - 100> [abs] |
70edbfdeca61
The tv color control commands can now also adjust the values.
albeu
parents:
17976
diff
changeset
|
414 Set TV tuner brightness or adjust it if [abs] is set to 0. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
415 |
18208
70edbfdeca61
The tv color control commands can now also adjust the values.
albeu
parents:
17976
diff
changeset
|
416 tv_set_contrast <-100 -100> [abs] |
70edbfdeca61
The tv color control commands can now also adjust the values.
albeu
parents:
17976
diff
changeset
|
417 Set TV tuner contrast or adjust it if [abs] is set to 0. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
418 |
18208
70edbfdeca61
The tv color control commands can now also adjust the values.
albeu
parents:
17976
diff
changeset
|
419 tv_set_hue <-100 - 100> [abs] |
70edbfdeca61
The tv color control commands can now also adjust the values.
albeu
parents:
17976
diff
changeset
|
420 Set TV tuner hue or adjust it if [abs] is set to 0. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
421 |
18208
70edbfdeca61
The tv color control commands can now also adjust the values.
albeu
parents:
17976
diff
changeset
|
422 tv_set_saturation <-100 - 100> [abs] |
70edbfdeca61
The tv color control commands can now also adjust the values.
albeu
parents:
17976
diff
changeset
|
423 Set TV tuner saturation or adjust it if [abs] is set to 0. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
424 |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
425 use_master |
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
426 Switch volume control between master and PCM. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
427 |
17954 | 428 vo_border [value] |
17937 | 429 Toggle/set borderless display. |
16969 | 430 |
17954 | 431 vo_fullscreen [value] |
17937 | 432 Toggle/set fullscreen mode. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
433 |
17954 | 434 vo_ontop [value] |
17937 | 435 Toggle/set stay-on-top. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
436 |
17954 | 437 vo_rootwin [value] |
17937 | 438 Toggle/set playback on the root window. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
439 |
17954 | 440 volume <value> [abs] |
441 Increase/decrease volume or set it to <value> if [abs] is nonzero. | |
16386
9e1ba1ac3c7d
Reorder slave mode commands to appear in alphabetical order with a few
diego
parents:
16254
diff
changeset
|
442 |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
443 |
14691 | 444 The following commands are really only useful for OSD menu console mode: |
445 | |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
446 help |
14691 | 447 Displays help text, currently empty. |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
448 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
449 exit |
14691 | 450 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
|
451 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
452 hide |
14691 | 453 Hides the OSD menu console. Clicking a menu command unhides it. Other |
454 keybindings act as usual. | |
11413
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
455 |
e250b0e9e608
Missing commands added, parameters checked, explanations improved.
diego
parents:
10927
diff
changeset
|
456 run <value> |
14691 | 457 Run <value> as shell command. In OSD menu console mode stdout and stdin |
458 are through the video output driver. | |
22046 | 459 |
460 | |
461 Available properties: | |
462 | |
22047 | 463 name type min max get set step comment |
464 ================================================================= | |
22046 | 465 |
22047 | 466 osdlevel int 0 3 X X X as -osdlevel |
467 speed float 0.01 100 X X X as -speed | |
23727 | 468 loop int -1 X X X as -loop |
22047 | 469 filename string X file playing wo path |
470 path string X file playing | |
471 demuxer string X demuxer used | |
472 stream_pos pos 0 X X position in stream | |
473 stream_start pos 0 X start pos in stream | |
474 stream_end pos 0 X end pos in stream | |
475 stream_length pos 0 X (end - start) | |
25363 | 476 chapter int 0 X X X select chapter |
25579 | 477 angle int 0 X X X select angle |
23417 | 478 length time X length of file in seconds |
23418 | 479 percent_pos int 0 100 X X X position in percent |
480 time_pos time 0 X X X position in seconds | |
23413
62018ec2eb35
Add the recently introduced properties to the documentation.
albeu
parents:
23412
diff
changeset
|
481 metadata str list X list of metadata key/value |
62018ec2eb35
Add the recently introduced properties to the documentation.
albeu
parents:
23412
diff
changeset
|
482 metadata/* string X metadata values |
22047 | 483 volume float 0 100 X X X change volume |
23568 | 484 balance float -1 1 X X X change audio balance |
22047 | 485 mute flag 0 1 X X X |
486 audio_delay float -100 100 X X X | |
487 audio_format int X | |
23413
62018ec2eb35
Add the recently introduced properties to the documentation.
albeu
parents:
23412
diff
changeset
|
488 audio_codec string X |
22047 | 489 audio_bitrate int X |
490 samplerate int X | |
491 channels int X | |
492 switch_audio int -2 255 X X X select audio stream | |
25821
ff2e44f77e52
add documentation about switch_angle and switch_title slave commands
ben
parents:
25579
diff
changeset
|
493 switch_angle int -2 255 X X X select DVD angle |
ff2e44f77e52
add documentation about switch_angle and switch_title slave commands
ben
parents:
25579
diff
changeset
|
494 switch_title int -2 255 X X X select DVD title |
22047 | 495 fullscreen flag 0 1 X X X |
496 deinterlace flag 0 1 X X X | |
497 ontop flag 0 1 X X X | |
498 rootwin flag 0 1 X X X | |
499 border flag 0 1 X X X | |
500 framedropping int 0 2 X X X 1 = soft, 2 = hard | |
501 gamma int -100 100 X X X | |
502 brightness int -100 100 X X X | |
503 contrast int -100 100 X X X | |
504 saturation int -100 100 X X X | |
505 hue int -100 100 X X X | |
506 panscan float 0 1 X X X | |
507 vsync flag 0 1 X X X | |
508 video_format int X | |
23413
62018ec2eb35
Add the recently introduced properties to the documentation.
albeu
parents:
23412
diff
changeset
|
509 video_codec string X |
22047 | 510 video_bitrate int X |
511 width int X "display" width | |
512 height int X "display" height | |
513 fps float X | |
514 aspect float X | |
515 switch_video int -2 255 X X X select video stream | |
516 switch_program int -1 65535 X X X (see TAB default keybind) | |
517 sub int -1 X X X select subtitle stream | |
25129
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
518 sub_source int -1 2 X X X select subtitle source |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
519 sub_file int -1 X X X select file subtitles |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
520 sub_vob int -1 X X X select vobsubs |
c04b64054255
Support select subtitle by source, add 4 properties:
ulion
parents:
24985
diff
changeset
|
521 sub_demux int -1 X X X select subs from demux |
22047 | 522 sub_delay float X X X |
523 sub_pos int 0 100 X X X subtitle position | |
524 sub_alignment int 0 2 X X X subtitle alignment | |
525 sub_visibility flag 0 1 X X X show/hide subtitles | |
526 sub_forced_only flag 0 1 X X X | |
23725 | 527 sub_scale float 0 100 X X X subtitles font size |
22047 | 528 tv_brightness int -100 100 X X X |
529 tv_contrast int -100 100 X X X | |
530 tv_saturation int -100 100 X X X | |
531 tv_hue int -100 100 X X X | |
23904 | 532 teletext_page int 0 799 X X X |
533 teletext_subpage int 0 64 X X X | |
534 teletext_mode flag 0 1 X X X 0 - off, 1 - on | |
535 teletext_format int 0 3 X X X 0 - opaque, | |
536 1 - transparent, | |
537 2 - opaque inverted, | |
538 3 - transp. inv. | |
539 teletext_half_page int 0 2 X X X 0 - off, 1 - top half, | |
540 2- bottom half | |
23573 | 541 |