Fixes format template in VideoCodec.size

This commit is contained in:
Giovanni Collazo 2014-05-14 16:35:10 -05:00
parent 5ad21350cc
commit da751e1beb

View file

@ -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