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