Spaces:
Sleeping
Sleeping
fix: update project name from Codecomp to compare-codec in app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
"""
|
| 2 |
|
| 3 |
from __future__ import annotations
|
| 4 |
|
|
@@ -57,9 +57,9 @@ def build_ui() -> gr.Blocks:
|
|
| 57 |
all_choices = _codec_choices()
|
| 58 |
max_codecs = len(all_choices)
|
| 59 |
|
| 60 |
-
with gr.Blocks(title="
|
| 61 |
gr.Markdown(
|
| 62 |
-
"#
|
| 63 |
"Upload audio, select one or more codec configurations, "
|
| 64 |
"and listen to the reconstructions side by side."
|
| 65 |
)
|
|
|
|
| 1 |
+
"""compare-codec — upload audio, pick codecs, hear reconstructions side by side."""
|
| 2 |
|
| 3 |
from __future__ import annotations
|
| 4 |
|
|
|
|
| 57 |
all_choices = _codec_choices()
|
| 58 |
max_codecs = len(all_choices)
|
| 59 |
|
| 60 |
+
with gr.Blocks(title="compare-codec") as demo:
|
| 61 |
gr.Markdown(
|
| 62 |
+
"# compare-codec\n\n"
|
| 63 |
"Upload audio, select one or more codec configurations, "
|
| 64 |
"and listen to the reconstructions side by side."
|
| 65 |
)
|