initial commit

This commit is contained in:
Agamemnon Juunes
2024-06-19 12:44:55 -04:00
parent cb7965d7e1
commit 2f30c6c18b
9 changed files with 269 additions and 0 deletions

View File

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