Spaces:
Running
on
Zero
Running
on
Zero
Ankush Rana
commited on
Commit
·
9c4478d
1
Parent(s):
45eb9bc
fix bug wav audio int8
Browse files
app.py
CHANGED
@@ -4,7 +4,6 @@ import gradio as gr
|
|
4 |
import yt_dlp as youtube_dl
|
5 |
from transformers import pipeline
|
6 |
from transformers.pipelines.audio_utils import ffmpeg_read
|
7 |
-
from AinaTheme import theme
|
8 |
|
9 |
import tempfile
|
10 |
import os
|
@@ -49,7 +48,7 @@ file_transcribe = gr.Interface(
|
|
49 |
)
|
50 |
|
51 |
|
52 |
-
demo = gr.TabbedInterface([file_transcribe], ["Fitxer"]
|
53 |
|
54 |
if __name__ == "__main__":
|
55 |
demo.launch()
|
|
|
4 |
import yt_dlp as youtube_dl
|
5 |
from transformers import pipeline
|
6 |
from transformers.pipelines.audio_utils import ffmpeg_read
|
|
|
7 |
|
8 |
import tempfile
|
9 |
import os
|
|
|
48 |
)
|
49 |
|
50 |
|
51 |
+
demo = gr.TabbedInterface([file_transcribe], ["Fitxer"])
|
52 |
|
53 |
if __name__ == "__main__":
|
54 |
demo.launch()
|