Merge pull request #6 from lxylxy123456/master
Fix Issue 5: allow file name to start with '-' Thanks lxylxy123456 :)
This commit is contained in:
commit
be2216e40c
|
|
@ -55,7 +55,7 @@ class Output(ParameterContainer):
|
||||||
return self
|
return self
|
||||||
|
|
||||||
def __iter__(self):
|
def __iter__(self):
|
||||||
return chain(ParameterContainer.__iter__(self), [self.file_path])
|
return chain(ParameterContainer.__iter__(self), ['--', self.file_path])
|
||||||
|
|
||||||
|
|
||||||
class FFmpegProcess(object):
|
class FFmpegProcess(object):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue