Spaces:
Runtime error
Runtime error
Commit
路
e486aab
1
Parent(s):
72284ae
Whisper X implementation
Browse files- app.py +1 -1
- requirements.txt +1 -1
app.py
CHANGED
@@ -106,7 +106,7 @@ transcribeII = gr.Interface(
|
|
106 |
|
107 |
demo = gr.Blocks()
|
108 |
with demo:
|
109 |
-
gr.Markdown("#
|
110 |
gr.TabbedInterface([transcribeI, transcribeII], ["Transcripci贸n con Whisper", "Transcripci贸n y diarizaci贸n con WhisperX"])
|
111 |
|
112 |
#demo.queue(concurrency_count=1).launch(enable_queue=True, auth=(os.environ['USER'], os.environ['PASSWORD']))
|
|
|
106 |
|
107 |
demo = gr.Blocks()
|
108 |
with demo:
|
109 |
+
gr.Markdown("# Amanuensis. Transcripci贸n de audios basada en OpenAI Whisper.")
|
110 |
gr.TabbedInterface([transcribeI, transcribeII], ["Transcripci贸n con Whisper", "Transcripci贸n y diarizaci贸n con WhisperX"])
|
111 |
|
112 |
#demo.queue(concurrency_count=1).launch(enable_queue=True, auth=(os.environ['USER'], os.environ['PASSWORD']))
|
requirements.txt
CHANGED
@@ -3,7 +3,7 @@ torch
|
|
3 |
yt-dlp
|
4 |
openai
|
5 |
pydub
|
6 |
-
whisperx
|
7 |
faster-whisper
|
8 |
scikit-learn
|
9 |
pandas
|
|
|
3 |
yt-dlp
|
4 |
openai
|
5 |
pydub
|
6 |
+
git+https://github.com/m-bain/whisperx.git
|
7 |
faster-whisper
|
8 |
scikit-learn
|
9 |
pandas
|