1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 11:39:28 +00:00

warn --convert-sub with --skip-download

This commit is contained in:
kikuyan 2021-08-13 11:28:04 +09:00
parent a803582717
commit ad419c540d

View file

@ -458,6 +458,10 @@ def _real_main(argv=None):
'You must provide at least one URL.\n'
'Type youtube-dl --help to see a list of all options.')
# Remove this `if` block when PR #9738 is finished
if opts.convertsubtitles and opts.skip_download:
ydl.report_warning('--convert-subs is a post-processing option and doesn\'t work with --skip-download')
try:
if opts.load_info_filename is not None:
retcode = ydl.download_with_info_file(expand_path(opts.load_info_filename))