mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 22:55:18 +00:00 
			
		
		
		
	Filenames are padded according to the playlist length
This commit is contained in:
		| @@ -424,7 +424,7 @@ class YoutubeDL(object): | |||||||
|             autonumber_templ = '%0' + str(autonumber_size) + 'd' |             autonumber_templ = '%0' + str(autonumber_size) + 'd' | ||||||
|             template_dict['autonumber'] = autonumber_templ % self._num_downloads |             template_dict['autonumber'] = autonumber_templ % self._num_downloads | ||||||
|             if template_dict.get('playlist_index') is not None: |             if template_dict.get('playlist_index') is not None: | ||||||
|                 template_dict['playlist_index'] = '%05d' % template_dict['playlist_index'] |                 template_dict['playlist_index'] = '%0*d' % (len(str(template_dict['n_playlist'])), template_dict['playlist_index']) | ||||||
|             if template_dict.get('resolution') is None: |             if template_dict.get('resolution') is None: | ||||||
|                 if template_dict.get('width') and template_dict.get('height'): |                 if template_dict.get('width') and template_dict.get('height'): | ||||||
|                     template_dict['resolution'] = '%dx%d' % (template_dict['width'], template_dict['height']) |                     template_dict['resolution'] = '%dx%d' % (template_dict['width'], template_dict['height']) | ||||||
| @@ -636,6 +636,7 @@ class YoutubeDL(object): | |||||||
|             for i, entry in enumerate(entries, 1): |             for i, entry in enumerate(entries, 1): | ||||||
|                 self.to_screen('[download] Downloading video #%s of %s' % (i, n_entries)) |                 self.to_screen('[download] Downloading video #%s of %s' % (i, n_entries)) | ||||||
|                 extra = { |                 extra = { | ||||||
|  |                     'n_playlist': n_entries, | ||||||
|                     'playlist': playlist, |                     'playlist': playlist, | ||||||
|                     'playlist_index': i + playliststart, |                     'playlist_index': i + playliststart, | ||||||
|                     'extractor': ie_result['extractor'], |                     'extractor': ie_result['extractor'], | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Gjorgji Jankovski
					Gjorgji Jankovski