Files
videobeaux/programs/resize.py
Agamemnon Juunes 2f30c6c18b initial commit
2024-06-19 12:44:55 -04:00

13 lines
354 B
Python

from utils.ffmpeg_operations import run_ffmpeg_command
def resize_video(input_file, output_file, width, height):
command = [
"ffmpeg",
"-i", input_file,
"-vf", f"scale={width}:{height}",
output_file
]
run_ffmpeg_command(command)
print(f"Video resized to {width}x{height} and saved as {output_file}")