Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -85,7 +85,12 @@ def get_audio_row(dataset, index):
|
|
85 |
return [sentence, phonemized_text, gender] + raw_audio_data
|
86 |
|
87 |
# --- Build the Gradio Interface ---
|
88 |
-
|
|
|
|
|
|
|
|
|
|
|
89 |
# Change the app title
|
90 |
gr.Markdown("# Vibravox Viewer")
|
91 |
|
|
|
85 |
return [sentence, phonemized_text, gender] + raw_audio_data
|
86 |
|
87 |
# --- Build the Gradio Interface ---
|
88 |
+
transparent_css = """
|
89 |
+
body, .gradio-container { background-color: transparent !important; }
|
90 |
+
.gr-panel { background-color: transparent !important; border: none !important; }
|
91 |
+
"""
|
92 |
+
|
93 |
+
with gr.Blocks(css=transparent_css) as demo:
|
94 |
# Change the app title
|
95 |
gr.Markdown("# Vibravox Viewer")
|
96 |
|