1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-05 19:40:08 +02:00
This commit is contained in:
pukkandan 2022-08-02 04:04:05 +05:30
parent d8657ff76f
commit a6ca61d427
No known key found for this signature in database
GPG Key ID: 7EEE9E1E817D0A39

View File

@ -1799,6 +1799,10 @@ def __process_playlist(self, ie_result, download):
self.to_screen('[download] Downloading video %s of %s' % (
self._format_screen(i + 1, self.Styles.ID), self._format_screen(n_entries, self.Styles.EMPHASIS)))
extra.update({
'playlist_index': playlist_index,
'playlist_autonumber': i + 1,
})
entry_result = self.__process_iterable_entry(entry, download, extra)
if not entry_result:
failures += 1