Python has nothing to do with it - it's a wrapper.
Call
$ python convert.py -i 'video_*'
and it will be held in this template.
The remaining six values were passed as args, not bound to -i, in the same way as if you were running python convert.py -i video_1 video_2 video_3 video_4 video_5 video_6, but -ibound only to the next next parameter.
However, the best choice is to simply read your input file names from args, rather than use options.input.
source
share