mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-05 17:12:36 +00:00
parent
14294236bf
commit
d39919c03e
@ -492,8 +492,10 @@ class FileDownloader(object):
|
||||
if info_dict.get('_type','video') == 'playlist':
|
||||
playlist = info_dict.get('title', None) or info_dict.get('id', None)
|
||||
self.to_screen(u'[download] Downloading playlist: %s' % playlist)
|
||||
for video in info_dict['entries']:
|
||||
n_videos = len(info_dict['entries'])
|
||||
for i,video in enumerate(info_dict['entries'],1):
|
||||
video['playlist'] = playlist
|
||||
self.to_screen(u'[download] Downloading video #%s of %s' %(i, n_videos))
|
||||
self.process_info(video)
|
||||
return
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user