Update app.py
Browse files
app.py
CHANGED
@@ -15,11 +15,16 @@ import subprocess
|
|
15 |
|
16 |
# Command to find the location of ffmpeg.exe
|
17 |
try:
|
18 |
-
ffmpeg_location = subprocess.check_output(["
|
19 |
print(f"Location of ffmpeg.exe: {ffmpeg_location.strip()}")
|
20 |
except subprocess.CalledProcessError:
|
21 |
print("ffmpeg.exe not found in the system PATH.")
|
22 |
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
ACCESS_TOKEN = os.getenv("HF_TOKEN")
|
25 |
|
|
|
15 |
|
16 |
# Command to find the location of ffmpeg.exe
|
17 |
try:
|
18 |
+
ffmpeg_location = subprocess.check_output(["which", "ffmpeg"], shell=True, text=True)
|
19 |
print(f"Location of ffmpeg.exe: {ffmpeg_location.strip()}")
|
20 |
except subprocess.CalledProcessError:
|
21 |
print("ffmpeg.exe not found in the system PATH.")
|
22 |
|
23 |
+
try:
|
24 |
+
ffmpeg_location = subprocess.check_output(["ffmpeg","-version"], shell=True, text=True)
|
25 |
+
print(f"Location of ffmpeg.exe: {ffmpeg_location.strip()}")
|
26 |
+
except subprocess.CalledProcessError:
|
27 |
+
print("ffmpeg.exe not found in the system PATH.")
|
28 |
|
29 |
ACCESS_TOKEN = os.getenv("HF_TOKEN")
|
30 |
|