diff options
author | Gjorgji Jankovski <j.gjorgji@gmail.com> | 2014-08-24 18:23:32 +0200 |
---|---|---|
committer | Gjorgji Jankovski <j.gjorgji@gmail.com> | 2014-08-24 18:23:32 +0200 |
commit | ad260c90abc6361051d7ae8f9226260f82d63c53 (patch) | |
tree | ebb7b6c1b157af3a36317e630a06ef5bef63efe0 /youtube_dl/YoutubeDL.py | |
parent | b8313f07bc8c7565c9255b131d307d10b8d02538 (diff) |
Filenames are padded according to the playlist length
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index a671d6450..320793b02 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -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'], |