cstr commited on
Commit
b157f4b
·
verified ·
1 Parent(s): ba420b4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -6
app.py CHANGED
@@ -9,12 +9,13 @@ from urllib.parse import urlparse
9
  from pydub import AudioSegment
10
 
11
  # Clone and install faster-whisper from GitHub
12
- try:
13
- subprocess.run(["git", "clone", "https://github.com/SYSTRAN/faster-whisper.git"], check=True)
14
- subprocess.run(["pip", "install", "-e", "./faster-whisper"], check=True)
15
- except subprocess.CalledProcessError as e:
16
- print(f"Error during faster-whisper installation: {e}")
17
- sys.exit(1)
 
18
 
19
  # Add the faster-whisper directory to the Python path
20
  sys.path.append("./faster-whisper")
 
9
  from pydub import AudioSegment
10
 
11
  # Clone and install faster-whisper from GitHub
12
+ # (we should be able to do this in build.sh in a hf space)
13
+ #try:
14
+ # subprocess.run(["git", "clone", "https://github.com/SYSTRAN/faster-whisper.git"], check=True)
15
+ # subprocess.run(["pip", "install", "-e", "./faster-whisper"], check=True)
16
+ #except subprocess.CalledProcessError as e:
17
+ # print(f"Error during faster-whisper installation: {e}")
18
+ # sys.exit(1)
19
 
20
  # Add the faster-whisper directory to the Python path
21
  sys.path.append("./faster-whisper")