aboutsummaryrefslogtreecommitdiff
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
parent9045791ade39f464b6fdb42483490526ad439475 (diff)
downloadvidslice-e90e0008de62dbe51bf2c8ef17587e368967d280.tar.gz
vidslice-e90e0008de62dbe51bf2c8ef17587e368967d280.zip
add crop settings
-rw-r--r--options.py58
-rw-r--r--output.py4
2 files changed, 57 insertions, 5 deletions
diff --git a/options.py b/options.py
index 3f7eb0f..016fbda 100644
--- a/options.py
+++ b/options.py
@@ -9,6 +9,10 @@ DURATION_ROW = 3
WIDTH_ROW = 4
HEIGHT_ROW = 5
FRAMERATE_ROW = 6
+CROP_TOP_ROW = 7
+CROP_BOTTOM_ROW = 8
+CROP_LEFT_ROW = 9
+CROP_RIGHT_ROW = 10
LABEL_COL = 0
ORIG_COL = 1
EDIT_BOX_COL = 2
@@ -16,9 +20,16 @@ NEW_COL = 3
class FFmpegOptions:
- def __init__(self, input, output):
+ def __init__(self, input, output, vf):
self.input = input
self.output = output
+ self.vf = vf
+
+ def output_with_vf(self):
+ if len(self.vf) > 0:
+ return self.output + ['-vf', ','.join(self.vf)]
+ else:
+ return self.output
class Property:
@@ -125,6 +136,18 @@ class OptionsPanel(ttk.LabelFrame):
self.framerate = Property(self, "Framerate", FRAMERATE_ROW, float)
self.framerate.on_change(self.enforce_constraints)
+ self.crop_top = Property(self, "Crop Top", CROP_TOP_ROW, int)
+ self.crop_top.on_change(self.enforce_constraints)
+
+ self.crop_bottom = Property(self, "Crop Bottom", CROP_BOTTOM_ROW, int)
+ self.crop_bottom.on_change(self.enforce_constraints)
+
+ self.crop_left = Property(self, "Crop Left", CROP_LEFT_ROW, int)
+ self.crop_left.on_change(self.enforce_constraints)
+
+ self.crop_right = Property(self, "Crop Right", CROP_RIGHT_ROW, int)
+ self.crop_right.on_change(self.enforce_constraints)
+
for child in self.winfo_children():
child.grid_configure(padx=2, pady=2)
@@ -186,6 +209,16 @@ class OptionsPanel(ttk.LabelFrame):
self.width.set_calc_new(round(orig_width / orig_height * new_height))
self.height.set_calc_new(round(orig_height / orig_width * new_width))
+ self.crop_top.set_calc_new(0)
+ self.crop_top.set_range(0, int(self.height.get_final()) - int(self.crop_bottom.get_final()))
+ self.crop_bottom.set_calc_new(0)
+ self.crop_bottom.set_range(0, int(self.height.get_final()) - int(self.crop_top.get_final()))
+
+ self.crop_right.set_calc_new(0)
+ self.crop_right.set_range(0, int(self.width.get_final()) - int(self.crop_left.get_final()))
+ self.crop_left.set_calc_new(0)
+ self.crop_left.set_range(0, int(self.width.get_final()) - int(self.crop_right.get_final()))
+
if self.framerate.is_enabled():
orig_framerate = float(self.framerate.get_orig())
self.framerate.set_range(0, orig_framerate)
@@ -215,6 +248,14 @@ class OptionsPanel(ttk.LabelFrame):
self.width.set_orig(video_stream['width'])
self.height.enable()
self.height.set_orig(video_stream['height'])
+ self.crop_top.enable()
+ self.crop_top.set_orig(0)
+ self.crop_bottom.enable()
+ self.crop_bottom.set_orig(0)
+ self.crop_left.enable()
+ self.crop_left.set_orig(0)
+ self.crop_right.enable()
+ self.crop_right.set_orig(0)
framerate = round(float(fractions.Fraction(video_stream['avg_frame_rate'])), 3)
self.framerate.enable()
@@ -223,6 +264,10 @@ class OptionsPanel(ttk.LabelFrame):
self.width.disable()
self.height.disable()
self.framerate.disable()
+ self.crop_top.disable()
+ self.crop_bottom.disable()
+ self.crop_left.disable()
+ self.crop_right.disable()
self.state(['!disabled'])
self.enforce_constraints()
@@ -230,6 +275,7 @@ class OptionsPanel(ttk.LabelFrame):
def ffmpeg_opts(self):
input_opts = []
output_opts = []
+ vf = []
if self.start_time.is_edit():
input_opts += ['-ss', str(self.start_time.get_final())]
@@ -250,12 +296,18 @@ class OptionsPanel(ttk.LabelFrame):
width = "-1"
if not self.height.is_edit():
height = "-1"
- output_opts += ['-vf', 'scale=' + width + ':' + height]
+ vf += ['scale=' + width + ':' + height]
+
+ if self.crop_top.is_edit() or self.crop_bottom.is_edit() or \
+ self.crop_left.is_edit() or self.crop_right.is_edit():
+ out_w = int(self.width.get_final()) - int(self.crop_left.get_final()) - int(self.crop_right.get_final())
+ out_h = int(self.height.get_final()) - int(self.crop_top.get_final()) - int(self.crop_bottom.get_final())
+ vf += [f'crop={out_w}:{out_h}:{self.crop_left.get_final()}:{self.crop_top.get_final()}']
if self.framerate.is_edit():
output_opts += ['-r', str(self.framerate.get_final())]
- return FFmpegOptions(input_opts, output_opts)
+ return FFmpegOptions(input_opts, output_opts, vf)
def frame_count(self):
return float(self.duration.get_final()) * float(self.framerate.get_final())
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)