Merge pull request #4 from gcollazo/patch-1
Fixes format template in VideoCodec.size
This commit is contained in:
commit
f3b5137f5e
|
|
@ -46,7 +46,7 @@ class VideoCodec(Codec):
|
|||
return self
|
||||
|
||||
def size(self, x, y):
|
||||
filter = "{x}x{y}".format(x, y)
|
||||
filter = "{0}x{1}".format(x, y)
|
||||
self.add_formatparam('-s', filter)
|
||||
return self
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue