diff options
author | Jesús Eduardo <heckyel@hyperbola.info> | 2017-08-25 16:39:49 -0500 |
---|---|---|
committer | Jesús Eduardo <heckyel@hyperbola.info> | 2017-08-25 16:39:49 -0500 |
commit | 9dbf5be102d8c6fc80a2444302c1fba78556540d (patch) | |
tree | b113d12bb7453c32f87bc60d4d8f27c328f01dba /mvc/converter.py | |
parent | 4093673bdfa347b56c480f686b11f35434dc0a96 (diff) | |
download | librevideoconverter-9dbf5be102d8c6fc80a2444302c1fba78556540d.tar.lz librevideoconverter-9dbf5be102d8c6fc80a2444302c1fba78556540d.tar.xz librevideoconverter-9dbf5be102d8c6fc80a2444302c1fba78556540d.zip |
fixed space
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 |