mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[YoutubeDL] Support new _type multi_video
This commit is contained in:
parent
be53e2a737
commit
dfd5313afd
1 changed files with 1 additions and 1 deletions
|
@ -624,7 +624,7 @@ def make_result(embedded_info):
|
|||
|
||||
return self.process_ie_result(
|
||||
new_result, download=download, extra_info=extra_info)
|
||||
elif result_type == 'playlist':
|
||||
elif result_type == 'playlist' or playlist == 'multi_video':
|
||||
# We process each entry in the playlist
|
||||
playlist = ie_result.get('title', None) or ie_result.get('id', None)
|
||||
self.to_screen('[download] Downloading playlist: %s' % playlist)
|
||||
|
|
Loading…
Reference in a new issue