Skip to content

Commit

Permalink
quality pass
Browse files Browse the repository at this point in the history
  • Loading branch information
okorach committed Oct 19, 2024
1 parent 3b748c6 commit 870fab2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mediatools/filters/filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def __init__(self, x: int, y: int, x_formula: str = 'x', y_formula: str = 'y') -
self.y_formula = y_formula

def __str__(self) -> str:
return f"crop=" + ":".join([str(p) for p in (self.x, self.y, self.x_formula, self.y_formula)])
return "crop=" + ":".join([str(p) for p in (self.x, self.y, self.x_formula, self.y_formula)])

class Reverse(Simple):
"""Reverses a video clip see https://ffmpeg.org/ffmpeg-filters.html#toc-reverse"""
Expand Down

0 comments on commit 870fab2

Please sign in to comment.