Spaces:
Runtime error
Runtime error
File size: 2,247 Bytes
c8b5524 63dbe00 d56142e c8b5524 d56142e c8b5524 d56142e 63dbe00 d56142e 63dbe00 d56142e ed4639a d56142e f6b63b7 c8b5524 f6b63b7 c8b5524 d56142e 63dbe00 681c9db d56142e 6507e86 f6b63b7 52219b5 d56142e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
import os
import gradio as gr
from midi_ddsp.midi_ddsp_synthesize import load_pretrained_model
from midi_ddsp.utils.midi_synthesis_utils import synthesize_mono_midi
from midi_ddsp.data_handling.instrument_name_utils import INST_NAME_TO_ID_DICT, INST_NAME_LIST
os.system('midi_ddsp_download_model_weights')
synthesis_generator, expression_generator = load_pretrained_model()
def midi_ddsp_synth(instrument, midi_file):
'''
Paras:
midi_file: the directory of the midi file
instrument: instrument type, choose from 'violin', 'viola', 'cello', 'double bass',
'flute', 'oboe', 'clarinet', 'saxophone',
'bassoon', 'trumpet', 'horn', 'trombone', 'tuba'
Returns:
output_file_path: path of the output wav file
'''
if not (os.path.isfile(midi_file.name) and midi_file.name[-4:] == '.mid'):
raise FileNotFoundError('Error: not a valid midi file')
if instrument not in INST_NAME_LIST:
raise ValueError('Error: not an available instrument type')
instrument_id = INST_NAME_TO_ID_DICT[instrument]
_ = synthesize_mono_midi(synthesis_generator, expression_generator, midi_file.name,
instrument_id, output_dir='/tmp', pitch_offset=0, speed_rate=1)
return os.path.join('/tmp', os.path.basename(midi_file.name).replace('.mid', '.wav'))
title = "Midi-DDSP"
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>"
gr.Interface(
fn = midi_ddsp_synth,
inputs = [
gr.inputs.Textbox(
lines=1, placeholder=None, default='', label='Input instrument type, choose from: violin, viola, cello, double bass,\
flute, oboe, clarinet, saxophone, bassoon, trumpet, horn, trombone, tuba'),
gr.File(type="file", label="Upload .mid file here")
],
outputs = "audio",
title = title,
article = article,
).launch(debug=True) |