1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-03 10:39:12 +02:00

Better warning when requested subs format not found (#9873)

Closes #9760
Authored by: DaPotato69
This commit is contained in:
DaPotato69 2024-05-12 07:11:40 +10:00 committed by GitHub
parent f1f158976e
commit 7e4259dff0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3071,7 +3071,7 @@ def process_subtitles(self, video_id, normal_subtitles, automatic_captions):
f = formats[-1]
self.report_warning(
'No subtitle format found matching "%s" for language %s, '
'using %s' % (formats_query, lang, f['ext']))
'using %s. Use --list-subs for a list of available subtitles' % (formats_query, lang, f['ext']))
subs[lang] = f
return subs