mirror of https://github.com/mpv-player/mpv
options: add more properties to default watch-later-options
Adds: --secondary-sub-visibility --video-aspect-method --video-unscaled --video-pan-x --video-pan-y --video-rotate --video-crop --video-zoom --video-scale-x --video-scale-y --video-align-x --video-align-y Those properties are related to playback state and are likely expected to be restored when resuming playback.
This commit is contained in:
parent
cb30c497c2
commit
e669493e6e
|
@ -120,6 +120,7 @@ Interface changes
|
|||
- remove OpenGL cocoa backend that was deprecated in 0.29
|
||||
- remove `--border`, `--fullscreen`, `--ontop`, `--osd-level` and `--pause`
|
||||
from default `--watch-later-options`
|
||||
- add `--video-*` and `--secondary-sub-visibility` to default `--watch-later-options`
|
||||
--- mpv 0.36.0 ---
|
||||
- add `--target-contrast`
|
||||
- Target luminance value is now also applied when ICC profile is used.
|
||||
|
|
|
@ -1069,9 +1069,21 @@ static const struct MPOpts mp_default_opts = {
|
|||
"sub-ass-force-margins",
|
||||
"sub-ass-vsfilter-aspect-compat",
|
||||
"sub-ass-override",
|
||||
"secondary-sub-visibility",
|
||||
"ab-loop-a",
|
||||
"ab-loop-b",
|
||||
"video-aspect-override",
|
||||
"video-aspect-method",
|
||||
"video-unscaled",
|
||||
"video-pan-x",
|
||||
"video-pan-y",
|
||||
"video-rotate",
|
||||
"video-crop",
|
||||
"video-zoom",
|
||||
"video-scale-x",
|
||||
"video-scale-y",
|
||||
"video-align-x",
|
||||
"video-align-y",
|
||||
NULL
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue