Another small UI cleanup by mainly reordering the text on the interface
Browse files
app.py
CHANGED
|
@@ -100,14 +100,14 @@ with gr.Blocks() as demo:
|
|
| 100 |
session_state = gr.State(lambda: ASRSession())
|
| 101 |
|
| 102 |
gr.Markdown("### HOW TO USE THE APP:")
|
| 103 |
-
gr.Markdown("Please **refresh or close** the tab when finished so the next person can use it.")
|
| 104 |
-
gr.Markdown("The session isolation mechanism is ON and allows only one User to use the app at a time")
|
| 105 |
-
|
| 106 |
gr.Video(value="demo0__5-24-2025.mp4", autoplay=False,
|
| 107 |
width=384,
|
| 108 |
height=216
|
| 109 |
)
|
| 110 |
|
|
|
|
|
|
|
|
|
|
| 111 |
with gr.Row():
|
| 112 |
with gr.Column():
|
| 113 |
gr.HTML(
|
|
@@ -122,9 +122,7 @@ with gr.Blocks() as demo:
|
|
| 122 |
"<ol>"
|
| 123 |
"<li>Click “Record”</li>"
|
| 124 |
"<li><strong>Allow microphone</strong> access and start speaking.</li>"
|
| 125 |
-
"<li>Watch live text appear in the <strong>Transcription</strong> box
|
| 126 |
-
"<strong>Stalled UI?</strong> Refresh the browser tab — this fully restarts the Space and "
|
| 127 |
-
"clears any stuck threads.</li>"
|
| 128 |
"</ol>"
|
| 129 |
)
|
| 130 |
tech_data = [
|
|
|
|
| 100 |
session_state = gr.State(lambda: ASRSession())
|
| 101 |
|
| 102 |
gr.Markdown("### HOW TO USE THE APP:")
|
|
|
|
|
|
|
|
|
|
| 103 |
gr.Video(value="demo0__5-24-2025.mp4", autoplay=False,
|
| 104 |
width=384,
|
| 105 |
height=216
|
| 106 |
)
|
| 107 |
|
| 108 |
+
gr.Markdown("### Please **refresh or close** the tab when finished so the next person can use it.")
|
| 109 |
+
gr.Markdown("### The session isolation mechanism is ENABLED and ALLOWS ONLY ONE USER to use the app at a time.")
|
| 110 |
+
|
| 111 |
with gr.Row():
|
| 112 |
with gr.Column():
|
| 113 |
gr.HTML(
|
|
|
|
| 122 |
"<ol>"
|
| 123 |
"<li>Click “Record”</li>"
|
| 124 |
"<li><strong>Allow microphone</strong> access and start speaking.</li>"
|
| 125 |
+
"<li>Watch live text appear in the <strong>Transcription</strong> box.</li>"
|
|
|
|
|
|
|
| 126 |
"</ol>"
|
| 127 |
)
|
| 128 |
tech_data = [
|