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

7 lines
192 B
Python

import subprocess
def run_ffmpeg_command(command):
try:
subprocess.run(command, check=True)
except subprocess.CalledProcessError as e:
print(f"An error occurred: {e}")