Spaces:
Running
Running
Metadata Update
Browse files
README.md
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: AIML430 Transcriber
|
3 |
+
emoji: 🗣️
|
4 |
+
colorFrom: black
|
5 |
+
colorTo: yellow
|
6 |
+
sdk: gradio
|
7 |
+
sdk_version: "5.36.2"
|
8 |
+
app_file: app.py
|
9 |
+
short_description: >
|
10 |
+
An interactive tool for audio transcription using WhisperX and Gradio.
|
11 |
+
pinned: false
|
12 |
+
---
|
app.py
CHANGED
@@ -61,7 +61,7 @@ with gr.Blocks(theme="monochrome", css="""
|
|
61 |
}
|
62 |
""") as demo:
|
63 |
with gr.Column(elem_classes="centered-container"):
|
64 |
-
gr.Markdown("# AIML430
|
65 |
gr.Markdown("## Upload a video file and click 'Transcribe' to begin.", elem_id="subtitle")
|
66 |
with gr.Row():
|
67 |
with gr.Column(scale=1, min_width=320):
|
|
|
61 |
}
|
62 |
""") as demo:
|
63 |
with gr.Column(elem_classes="centered-container"):
|
64 |
+
gr.Markdown("# AIML430 Transcriber", elem_id="title")
|
65 |
gr.Markdown("## Upload a video file and click 'Transcribe' to begin.", elem_id="subtitle")
|
66 |
with gr.Row():
|
67 |
with gr.Column(scale=1, min_width=320):
|