mirror of
https://github.com/vondas-network/videobeaux.git
synced 2026-01-11 09:25:29 +01:00
7 lines
192 B
Python
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}") |