mirror of
https://github.com/vondas-network/videobeaux.git
synced 2025-12-20 06:40:02 +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}") |