mirror of
https://github.com/vondas-network/videobeaux.git
synced 2025-12-20 06:40:02 +01:00
initial commit
This commit is contained in:
7
utils/ffmpeg_operations.py
Normal file
7
utils/ffmpeg_operations.py
Normal 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}")
|
||||
Reference in New Issue
Block a user