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/__init__.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/__init__.py')
-rw-r--r-- | youtube_dl/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index dfa4ae839..577bc880f 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -321,6 +321,7 @@ def _real_main(argv=None): 'listformats': opts.listformats, 'outtmpl': outtmpl, 'autonumber_size': opts.autonumber_size, + 'autonumber_start': opts.autonumber_start, 'restrictfilenames': opts.restrictfilenames, 'ignoreerrors': opts.ignoreerrors, 'force_generic_extractor': opts.force_generic_extractor, |