1
1
mirror of https://github.com/ytdl-org/youtube-dl synced 2024-09-01 10:55:08 +02:00
This commit is contained in:
Deleted user 2024-07-28 01:28:19 +09:00 committed by GitHub
commit 9fea6a3cca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -460,6 +460,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))