aboutsummaryrefslogtreecommitdiff
path: root/output.py
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-01-29 01:07:42 -0700
committerMelody Horn <melody@boringcactus.com>2021-01-29 01:07:42 -0700
commite90e0008de62dbe51bf2c8ef17587e368967d280 (patch)
treeea005a97d1a2c40d0fe1c2a9e6bc9639a5c29417 /output.py
parent9045791ade39f464b6fdb42483490526ad439475 (diff)
downloadvidslice-e90e0008de62dbe51bf2c8ef17587e368967d280.tar.gz
vidslice-e90e0008de62dbe51bf2c8ef17587e368967d280.zip
add crop settings
Diffstat (limited to 'output.py')
-rw-r--r--output.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/output.py b/output.py
index 5aa6084..c3197aa 100644
--- a/output.py
+++ b/output.py
@@ -9,7 +9,7 @@ from options import FFmpegOptions
class OutputPanel(ttk.LabelFrame):
- def __init__(self, *args, get_ffmpeg_args=lambda: FFmpegOptions([], []), get_frame_count=lambda: 0, **kw):
+ def __init__(self, *args, get_ffmpeg_args=lambda: FFmpegOptions([], [], []), get_frame_count=lambda: 0, **kw):
super(OutputPanel, self).__init__(*args, text='Output', **kw)
self.update_listeners = []
self.input_path = None
@@ -90,7 +90,7 @@ class OutputPanel(ttk.LabelFrame):
self.progress['maximum'] = float(self.get_frame_count())
print(self.get_frame_count())
input_args = real_args.input
- output_args = real_args.output
+ output_args = real_args.output_with_vf()
output_path = self.file_text.get()
(folder, name) = os.path.split(output_path)
(name, ext) = os.path.splitext(name)