diff options
author | Costy Petrisor <costy.petrisor@gmail.com> | 2016-05-01 12:34:11 +0000 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-01-29 00:00:45 +0700 |
commit | acbb2374bce27eda16764b80832f88cf833a51e5 (patch) | |
tree | df4854de1dea45a4290456d0acb5ed34f9c3552d /youtube_dl/YoutubeDL.py | |
parent | 4edeac5bfae76966fd14f636bd68850ea0403ece (diff) |
added --autonumber-start NUMBER as a command line option to be able to offset the index at which autonumber formats filenames
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 41d9a63ee..c71e94518 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -584,7 +584,7 @@ class YoutubeDL(object): if autonumber_size is None: autonumber_size = 5 autonumber_templ = '%0' + str(autonumber_size) + 'd' - template_dict['autonumber'] = autonumber_templ % self._num_downloads + template_dict['autonumber'] = autonumber_templ % (self.params.get('autonumber_start', 1) - 1 + self._num_downloads) if template_dict.get('playlist_index') is not None: template_dict['playlist_index'] = '%0*d' % (len(str(template_dict['n_entries'])), template_dict['playlist_index']) if template_dict.get('resolution') is None: |