eternalBlissard commited on
Commit
4f609b4
·
verified ·
1 Parent(s): 302f5d8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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(["ffmpeg","-version"], 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.")
 
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.")