1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-11-30 13:25:18 +00:00

Add option --skip-playlist-after-errors

Allows to skip the rest of a playlist after a given number of errors are encountered
This commit is contained in:
pukkandan
2021-04-21 11:30:43 +05:30
parent 3b4775e021
commit 26e2805c3f
4 changed files with 17 additions and 0 deletions

View File

@@ -544,6 +544,7 @@ def _real_main(argv=None):
'download_archive': download_archive_fn,
'break_on_existing': opts.break_on_existing,
'break_on_reject': opts.break_on_reject,
'skip_playlist_after_errors': opts.skip_playlist_after_errors,
'cookiefile': opts.cookiefile,
'nocheckcertificate': opts.no_check_certificate,
'prefer_insecure': opts.prefer_insecure,