Spaces:
Running
Running
Update app.py
Browse files
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 |
-
|
13 |
-
|
14 |
-
subprocess.run(["
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
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")
|