mirror of
https://github.com/mpv-player/mpv
synced 2024-12-27 01:22:30 +00:00
video/image_writer: change screenshot-tag-colorspace default to yes
With significant improvements to the color tagging support in various screenshot formats, e.g. cICP in FFmpeg, and JPEG XL's generally robust color support, it's safe to default this to yes.
This commit is contained in:
parent
a3340645be
commit
8ba7b8f0d2
@ -50,6 +50,7 @@ Interface changes
|
||||
- in wayland, hidpi window scaling now scales the window by the compositor's
|
||||
dpi scale factor by default (can be disabled with --no-hidpi-window-scale
|
||||
if fractional scaling support exists).
|
||||
- change --screenshot-tag-colorspace default value from `no` to `yes`
|
||||
--- mpv 0.35.0 ---
|
||||
- add the `--vo=gpu-next` video output driver, as well as the options
|
||||
`--allow-delayed-peak-detect`, `--builtin-scalers`,
|
||||
|
@ -4275,7 +4275,7 @@ Screenshot
|
||||
|
||||
Note that not all formats are supported.
|
||||
|
||||
Default: ``no``.
|
||||
Default: ``yes``.
|
||||
|
||||
``--screenshot-high-bit-depth=<yes|no>``
|
||||
If possible, write screenshots with a bit depth similar to the source
|
||||
|
@ -53,7 +53,7 @@ const struct image_writer_opts image_writer_opts_defaults = {
|
||||
.webp_compression = 4,
|
||||
.jxl_distance = 1.0,
|
||||
.jxl_effort = 3,
|
||||
.tag_csp = 0,
|
||||
.tag_csp = 1,
|
||||
};
|
||||
|
||||
const struct m_opt_choice_alternatives mp_image_writer_formats[] = {
|
||||
|
Loading…
Reference in New Issue
Block a user