diff options
Diffstat (limited to 'yt_dlp')
-rw-r--r-- | yt_dlp/YoutubeDL.py | 2 | ||||
-rw-r--r-- | yt_dlp/__init__.py | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 19fc5bdb6..978f43054 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -404,7 +404,7 @@ class YoutubeDL(object): compat_opts: Compatibility options. See "Differences in default behavior". The following options do not work when used through the API: filename, abort-on-error, multistreams, no-live-chat, - no-clean-infojson, no-playlist-metafiles. + no-clean-infojson, no-playlist-metafiles, no-keep-subs. Refer __init__.py for their implementation The following parameters are not used by YoutubeDL itself, they are used by diff --git a/yt_dlp/__init__.py b/yt_dlp/__init__.py index fb0f46a4a..532d004c3 100644 --- a/yt_dlp/__init__.py +++ b/yt_dlp/__init__.py @@ -280,7 +280,7 @@ def _real_main(argv=None): 'filename', 'format-sort', 'abort-on-error', 'format-spec', 'no-playlist-metafiles', 'multistreams', 'no-live-chat', 'playlist-index', 'list-formats', 'no-direct-merge', 'no-youtube-channel-redirect', 'no-youtube-unavailable-videos', 'no-attach-info-json', - 'embed-thumbnail-atomicparsley', 'seperate-video-versions', 'no-clean-infojson', + 'embed-thumbnail-atomicparsley', 'seperate-video-versions', 'no-clean-infojson', 'no-keep-subs', ] compat_opts = parse_compat_opts() @@ -458,13 +458,13 @@ def _real_main(argv=None): if opts.addmetadata: postprocessors.append({'key': 'FFmpegMetadata'}) if opts.embedsubtitles: - already_have_subtitle = opts.writesubtitles + already_have_subtitle = opts.writesubtitles and 'no-keep-subs' not in compat_opts postprocessors.append({ 'key': 'FFmpegEmbedSubtitle', # already_have_subtitle = True prevents the file from being deleted after embedding 'already_have_subtitle': already_have_subtitle }) - if not already_have_subtitle: + if not opts.writeautomaticsub and 'no-keep-subs' not in compat_opts: opts.writesubtitles = True # --all-sub automatically sets --write-sub if --write-auto-sub is not given # this was the old behaviour if only --all-sub was given. |