Spaces:
Runtime error
Runtime error
ryanlinjui
commited on
Commit
•
cef4c32
1
Parent(s):
a6cd87b
feat: change ui title and disable sharing
Browse files
app.py
CHANGED
@@ -31,10 +31,10 @@ def handle(chart_path, music_path):
|
|
31 |
|
32 |
if __name__ == "__main__":
|
33 |
inputs = [
|
34 |
-
gr.File(label="
|
35 |
gr.File(label="譜面音樂/Chart Music (Optional)")
|
36 |
]
|
37 |
outputs = [gr.Audio(label=course["label"]) for course in COURSE]
|
38 |
|
39 |
-
demo = gr.Interface(fn=handle, inputs=inputs, outputs=outputs, title="
|
40 |
-
demo.launch(
|
|
|
31 |
|
32 |
if __name__ == "__main__":
|
33 |
inputs = [
|
34 |
+
gr.File(label="太鼓達人譜面/Taiko Chart Json Data"),
|
35 |
gr.File(label="譜面音樂/Chart Music (Optional)")
|
36 |
]
|
37 |
outputs = [gr.Audio(label=course["label"]) for course in COURSE]
|
38 |
|
39 |
+
demo = gr.Interface(fn=handle, inputs=inputs, outputs=outputs, title="程設二作業HW0105 / Taiko Music Generator")
|
40 |
+
demo.launch()
|