Update app.py
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ except subprocess.CalledProcessError:
|
|
27 |
print("ffmpeg.exe not found in the system PATH.")
|
28 |
|
29 |
try:
|
30 |
-
ffmpeg_location = subprocess.check_output(["
|
31 |
print(f"Location of ffmpeg.exe: {ffmpeg_location.strip()}")
|
32 |
except subprocess.CalledProcessError:
|
33 |
print("ffmpeg.exe not found in the system PATH.")
|
|
|
27 |
print("ffmpeg.exe not found in the system PATH.")
|
28 |
|
29 |
try:
|
30 |
+
ffmpeg_location = subprocess.check_output(["whereis","ffmpeg"], shell=True, text=True)
|
31 |
print(f"Location of ffmpeg.exe: {ffmpeg_location.strip()}")
|
32 |
except subprocess.CalledProcessError:
|
33 |
print("ffmpeg.exe not found in the system PATH.")
|