added --autonumber-start NUMBER as a command line option to be able to offset the index at which autonumber formats filenames
This commit is contained in:
parent
4edeac5bfa
commit
acbb2374bc
3 changed files with 6 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue