diff options
Diffstat (limited to 'mvc/converter.py')
-rw-r--r-- | mvc/converter.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mvc/converter.py b/mvc/converter.py index ef3d5c5..f845826 100644 --- a/mvc/converter.py +++ b/mvc/converter.py @@ -98,7 +98,7 @@ class ConverterInfo(object): :returns: (width, height) tuple """ - return utils.rescale_video((video.width, video.height), + return utils.rescale_video((video.width, video.height), (self.width, self.height), dont_upsize=self.dont_upsize) @@ -140,7 +140,7 @@ class FFmpegConverterInfo(ConverterInfo): return args def convert_output_path(self, output_path): - """Convert our output path so that it can be passed to ffmpeg.""" + """Convert our output path so that it can be passed to ffmpeg.""" # this is a bit tricky, because output_path doesn't exist on windows # yet, so we can't just call convert_path_for_subprocess(). Instead, # call convert_path_for_subprocess() on the output directory, and |