Spaces:
Runtime error
Runtime error
Update audioex.py
Browse files- audioex.py +1 -1
audioex.py
CHANGED
@@ -14,7 +14,7 @@ def ex():
|
|
14 |
os.rename(mp4_file_path, "video.mp4")
|
15 |
print("Command started")
|
16 |
try:
|
17 |
-
result = subprocess.run(["sudo", "apt", "install", "ffmpeg"], capture_output=True, text=True, check=True)
|
18 |
print("FFmpeg installed successfully.")
|
19 |
print("Command Output of ffmpeg:\n", result.stdout)
|
20 |
except subprocess.CalledProcessError as e:
|
|
|
14 |
os.rename(mp4_file_path, "video.mp4")
|
15 |
print("Command started")
|
16 |
try:
|
17 |
+
result = subprocess.run(["sudo", "apt", "install", "ffmpeg"], capture_output=True, text=True, check=True,shell=True)
|
18 |
print("FFmpeg installed successfully.")
|
19 |
print("Command Output of ffmpeg:\n", result.stdout)
|
20 |
except subprocess.CalledProcessError as e:
|