mirror of
https://github.com/mpv-player/mpv
synced 2025-01-03 13:32:16 +00:00
options: set subs-with-matching-audio to off by default
This means that subtitles won't be displayed unless the user asks for them
This commit is contained in:
parent
78285e98f1
commit
1669c4698d
@ -78,6 +78,7 @@ Interface changes
|
||||
- remove the `--tone-mapping-crosstalk` option
|
||||
- add `--gamut-mapping-mode=perceptual|relative|saturation|absolute|linear`
|
||||
- add `--corner-rounding` option
|
||||
- change `--subs-with-matching-audio` default from `yes` to `no`
|
||||
--- mpv 0.35.0 ---
|
||||
- add the `--vo=gpu-next` video output driver, as well as the options
|
||||
`--allow-delayed-peak-detect`, `--builtin-scalers`,
|
||||
|
@ -136,9 +136,8 @@ Track Selection
|
||||
referenced tracks are always selected.
|
||||
|
||||
``--subs-with-matching-audio=<yes|no>``
|
||||
When autoselecting a subtitle track, select a non-forced one even if the selected
|
||||
audio stream matches your preferred subtitle language (default: yes). Disable this
|
||||
if you'd like to only show subtitles for foreign audio or onscreen text.
|
||||
When autoselecting a subtitle track, select a full/non-forced one even if the selected
|
||||
audio stream matches your preferred subtitle language (default: no).
|
||||
|
||||
|
||||
Playback Control
|
||||
|
@ -1031,7 +1031,7 @@ static const struct MPOpts mp_default_opts = {
|
||||
[STREAM_VIDEO] = -2,
|
||||
[STREAM_SUB] = -2, }, },
|
||||
.stream_auto_sel = true,
|
||||
.subs_with_matching_audio = true,
|
||||
.subs_with_matching_audio = false,
|
||||
.audio_display = 1,
|
||||
.audio_output_format = 0, // AF_FORMAT_UNKNOWN
|
||||
.playback_speed = 1.,
|
||||
|
Loading…
Reference in New Issue
Block a user