Filenames are padded according to the playlist length
authorGjorgji Jankovski <j.gjorgji@gmail.com>
Sun, 24 Aug 2014 16:23:32 +0000 (18:23 +0200)
committerGjorgji Jankovski <j.gjorgji@gmail.com>
Sun, 24 Aug 2014 16:23:32 +0000 (18:23 +0200)
youtube_dl/YoutubeDL.py

index a671d6450469167381f1649f54108d1ea6ab5533..320793b022e6cbed6f79defae3719cae51823d84 100755 (executable)
@@ -424,7 +424,7 @@ class YoutubeDL(object):
             autonumber_templ = '%0' + str(autonumber_size) + 'd'
             template_dict['autonumber'] = autonumber_templ % self._num_downloads
             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('width') and template_dict.get('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):
                 self.to_screen('[download] Downloading video #%s of %s' % (i, n_entries))
                 extra = {
+                    'n_playlist': n_entries,
                     'playlist': playlist,
                     'playlist_index': i + playliststart,
                     'extractor': ie_result['extractor'],