Spaces:
Runtime error
Runtime error
Commit ·
7320deb
1
Parent(s): a030363
Update app.py
Browse files
app.py
CHANGED
|
@@ -12,9 +12,9 @@ import ffmpeg
|
|
| 12 |
# UI
|
| 13 |
import gradio as gr
|
| 14 |
|
| 15 |
-
from
|
| 16 |
-
from
|
| 17 |
-
from
|
| 18 |
|
| 19 |
# Limitations (set to -1 to disable)
|
| 20 |
DEFAULT_INPUT_AUDIO_MAX_DURATION = 600 # seconds
|
|
|
|
| 12 |
# UI
|
| 13 |
import gradio as gr
|
| 14 |
|
| 15 |
+
from download import ExceededMaximumDuration, download_url
|
| 16 |
+
from utils import slugify, write_srt, write_vtt
|
| 17 |
+
from vad import NonSpeechStrategy, PeriodicTranscriptionConfig, TranscriptionConfig, VadPeriodicTranscription, VadSileroTranscription
|
| 18 |
|
| 19 |
# Limitations (set to -1 to disable)
|
| 20 |
DEFAULT_INPUT_AUDIO_MAX_DURATION = 600 # seconds
|