tianhk commited on
Commit
c8b5524
·
1 Parent(s): 4a1dd9d

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +22 -0
app.py ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import os
3
+ from pathlib import Path
4
+
5
+ os.system("midi_ddsp_download_model_weights")
6
+
7
+ def inference(audio):
8
+ os.system("midi_ddsp_synthesize --midi_path "+audio.name)
9
+ return Path(audio.name).stem+"/0_violin.wav"
10
+
11
+ # title = "Midi-DDSP"
12
+ # description = "Gradio demo for MIDI-DDSP: Detailed Control of Musical Performance via Hierarchical Modeling. To use it, simply upload your midi file, or click one of the examples to load them. Read more at the links below."
13
+
14
+ article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2112.09312' target='_blank'>MIDI-DDSP: Detailed Control of Musical Performance via Hierarchical Modeling</a> | <a href='https://github.com/magenta/midi-ddsp' target='_blank'>Github Repo</a></p>"
15
+
16
+ gr.Interface(
17
+ inference,
18
+ gr.inputs.File(type="file", label="Input"),
19
+ [gr.outputs.Audio(type="file", label="Output")],
20
+ article=article,
21
+ enable_queue=True
22
+ ).launch(debug=True)