ryanlinjui commited on
Commit
cef4c32
1 Parent(s): a6cd87b

feat: change ui title and disable sharing

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -31,10 +31,10 @@ def handle(chart_path, music_path):
31
 
32
  if __name__ == "__main__":
33
  inputs = [
34
- gr.File(label="太鼓達人譜面Json/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(share=True)
 
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()