Spaces:
Running
on
Zero
Running
on
Zero
File size: 9,858 Bytes
92acab8 dbc6fc5 92acab8 784b974 92acab8 dbc6fc5 92acab8 b50d4ec 92acab8 b50d4ec 784b974 92acab8 784b974 b50d4ec 784b974 b50d4ec 784b974 dbc6fc5 92acab8 784b974 dbc6fc5 92acab8 b50d4ec 92acab8 b50d4ec 92acab8 b50d4ec 92acab8 dbc6fc5 92acab8 784b974 b50d4ec 92acab8 dbc6fc5 92acab8 b50d4ec 92acab8 dbc6fc5 92acab8 dbc6fc5 92acab8 dbc6fc5 b50d4ec 92acab8 dbc6fc5 b50d4ec dbc6fc5 92acab8 784b974 b50d4ec 784b974 92acab8 dbc6fc5 92acab8 b50d4ec 92acab8 b50d4ec 784b974 92acab8 784b974 dbc6fc5 784b974 dbc6fc5 b50d4ec 92acab8 784b974 b50d4ec 92acab8 dbc6fc5 784b974 dbc6fc5 b50d4ec dbc6fc5 784b974 dbc6fc5 b50d4ec 92acab8 b50d4ec 92acab8 dbc6fc5 92acab8 dbc6fc5 b50d4ec 784b974 92acab8 dbc6fc5 b50d4ec 784b974 92acab8 dbc6fc5 b50d4ec 92acab8 b50d4ec 92acab8 dbc6fc5 b50d4ec dbc6fc5 92acab8 |
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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 |
import random
import gradio as gr
import numpy as np
import rtmidi
import MIDI
import base64
import io
import os
from huggingface_hub import hf_hub_download
from midi_synthesizer import MidiSynthesizer
MAX_SEED = np.iinfo(np.int32).max
# Example song data (simplified from original)
SONG_DATA = {
"title": "Do You Believe in Love",
"progression": ["G", "D", "Em", "C"],
"lyrics": ["I was walking down a one-way street", "Just a-looking for someone to meet"]
}
class MIDIDeviceManager:
def __init__(self):
self.midiout = rtmidi.MidiOut()
self.midiin = rtmidi.MidiIn()
def get_available_devices(self):
return self.midiout.get_ports() or ["No MIDI devices"]
def get_device_info(self):
devices = self.get_available_devices()
return "\n".join([f"Port {i}: {name}" for i, name in enumerate(devices)]) if devices else "No MIDI devices detected"
class MIDIManager:
def __init__(self):
self.soundfont_path = hf_hub_download(repo_id="skytnt/midi-model", filename="soundfont.sf2")
self.synthesizer = MidiSynthesizer(self.soundfont_path)
self.loaded_midi = {} # midi_id: (file_path, midi_obj)
self.modified_files = []
self.is_playing = False
self.example_files = self.load_example_midis()
def load_example_midis(self):
examples = {}
example_dir = "examples"
if os.path.exists(example_dir):
for file in os.listdir(example_dir):
if file.endswith(".mid") or file.endswith(".midi"):
midi_id = f"example_{len(examples)}"
file_path = os.path.join(example_dir, file)
examples[midi_id] = (file_path, MIDI.load(file_path))
if not examples:
midi = MIDI.MIDIFile(1)
midi.addTrack()
midi.addNote(0, 0, 60, 0, 100, 100) # Default C4
examples["example_0"] = ("Simple C4.mid", midi)
return examples
def load_midi(self, file_path):
midi = MIDI.load(file_path)
midi_id = f"midi_{len(self.loaded_midi) - len(self.example_files)}"
self.loaded_midi[midi_id] = (file_path, midi)
return midi_id
def extract_notes_and_instruments(self, midi):
notes = []
instruments = set()
for track in midi.tracks:
for event in track.events:
if event.type == 'note_on' and event.velocity > 0:
notes.append((event.note, event.velocity, event.time))
if hasattr(event, 'program'):
instruments.add(event.program)
return notes, list(instruments)
def generate_variation(self, midi_id, length_factor=2, variation=0.3):
if midi_id not in self.loaded_midi:
return None
_, midi = self.loaded_midi[midi_id]
notes, instruments = self.extract_notes_and_instruments(midi)
new_notes = []
for _ in range(int(length_factor)):
for note, vel, time in notes:
if random.random() < variation:
new_note = min(127, max(0, note + random.randint(-2, 2)))
new_vel = min(127, max(0, vel + random.randint(-10, 10)))
new_notes.append((new_note, new_vel, time))
else:
new_notes.append((note, vel, time))
new_midi = MIDI.MIDIFile(len(instruments) or 1)
for i, inst in enumerate(instruments or [0]):
new_midi.addTrack()
new_midi.addProgramChange(i, 0, 0, inst)
for note, vel, time in new_notes:
new_midi.addNote(i, 0, note, time, 100, vel)
output = io.BytesIO()
new_midi.writeFile(output)
midi_data = base64.b64encode(output.getvalue()).decode('utf-8')
self.modified_files.append(midi_data)
return midi_data
def apply_synth_effect(self, midi_data, effect, intensity):
midi = MIDI.load(io.BytesIO(base64.b64decode(midi_data)))
if effect == "tempo":
factor = 1 + (intensity - 0.5) * 0.4
for track in midi.tracks:
for event in track.events:
event.time = int(event.time * factor)
output = io.BytesIO()
midi.writeFile(output)
midi_data = base64.b64encode(output.getvalue()).decode('utf-8')
self.modified_files.append(midi_data)
return midi_data
def play_with_loop(self, midi_data):
self.is_playing = True
midi_file = MIDI.load(io.BytesIO(base64.b64decode(midi_data)))
while self.is_playing:
self.synthesizer.play_midi(midi_file)
return "Stopped"
def stop_playback(self):
self.is_playing = False
return "Stopping..."
midi_manager = MIDIDeviceManager()
midi_processor = MIDIManager()
def create_download_list():
html = "<h3>Downloads</h3><ul>"
for i, data in enumerate(midi_processor.modified_files):
html += f'<li><a href="data:audio/midi;base64,{data}" download="midi_{i}.mid">MIDI {i}</a></li>'
html += "</ul>"
return html
def get_midi_choices():
return [(os.path.basename(path), midi_id) for midi_id, (path, _) in midi_processor.loaded_midi.items()]
with gr.Blocks(theme=gr.themes.Soft()) as app:
gr.Markdown("<h1>🎵 MIDI Composer 🎵</h1>")
with gr.Tabs():
# Tab 1: Upload MIDI
with gr.Tab("Upload MIDI"):
midi_files = gr.File(label="Upload MIDI Files", file_count="multiple")
loaded_display = gr.HTML(value="No files loaded")
output = gr.Audio(label="Generated Preview", type="bytes", autoplay=True)
def load_and_generate(files):
html = "<h3>Loaded Files</h3>"
midi_data = None
for file in files or []:
midi_id = midi_processor.load_midi(file.name)
html += f"<div>{file.name} <button onclick=\"remove_midi('{midi_id}')\">X</button></div>"
midi_data = midi_processor.generate_variation(midi_id) # Auto-generate
return html, (io.BytesIO(base64.b64decode(midi_data)) if midi_data else None), get_midi_choices()
midi_files.change(load_and_generate, inputs=[midi_files],
outputs=[loaded_display, output, gr.State(get_midi_choices())])
# Tab 2: Generate & Perform
with gr.Tab("Generate & Perform"):
midi_select = gr.Dropdown(label="Select MIDI", choices=get_midi_choices(), value=None)
length_factor = gr.Slider(1, 5, value=2, step=1, label="Length Factor")
variation = gr.Slider(0, 1, value=0.3, label="Variation")
generate_btn = gr.Button("Generate")
effect = gr.Radio(["tempo"], label="Synth Effect", value="tempo")
intensity = gr.Slider(0, 1, value=0.5, label="Effect Intensity")
apply_btn = gr.Button("Apply Effect")
stop_btn = gr.Button("Stop Playback")
output = gr.Audio(label="Preview", type="bytes", autoplay=True)
status = gr.Textbox(label="Status", value="Ready")
midi_device = gr.Dropdown(label="MIDI Output Device", choices=midi_manager.get_available_devices(), type="index")
tempo = gr.Slider(label="Tempo (BPM)", minimum=40, maximum=200, value=120, step=1)
def update_dropdown(choices):
return gr.update(choices=choices)
gr.State(get_midi_choices()).change(update_dropdown, inputs=[gr.State()], outputs=[midi_select])
def generate(midi_id, length, var):
if not midi_id:
return None, "Select a MIDI file"
midi_data = midi_processor.generate_variation(midi_id, length, var)
midi_processor.play_with_loop(midi_data)
return io.BytesIO(base64.b64decode(midi_data)), "Playing"
def apply_effect(midi_data, fx, inten):
if not midi_data:
return None, "Generate a MIDI first"
new_data = midi_processor.apply_synth_effect(midi_data.decode('utf-8'), fx, inten)
midi_processor.play_with_loop(new_data)
return io.BytesIO(base64.b64decode(new_data)), "Playing"
generate_btn.click(generate, inputs=[midi_select, length_factor, variation],
outputs=[output, status])
apply_btn.click(apply_effect, inputs=[output, effect, intensity],
outputs=[output, status])
stop_btn.click(midi_processor.stop_playback, inputs=None, outputs=[status])
# Tab 3: Downloads
with gr.Tab("Downloads"):
downloads = gr.HTML(value="No files yet")
def update_downloads(*args):
return create_download_list()
gr.on(triggers=[midi_files.change, generate_btn.click, apply_btn.click],
fn=update_downloads, inputs=None, outputs=[downloads])
gr.Markdown("""
<div style='text-align: center; margin-top: 20px;'>
<img src='https://huggingface.co/front/assets/huggingface_logo-noborder.svg' alt='Hugging Face Logo' style='width: 50px;'><br>
<strong>Hugging Face</strong><br>
<a href='https://huggingface.co/models'>Models</a> |
<a href='https://huggingface.co/datasets'>Datasets</a> |
<a href='https://huggingface.co/spaces'>Spaces</a> |
<a href='https://huggingface.co/posts'>Posts</a> |
<a href='https://huggingface.co/docs'>Docs</a> |
<a href='https://huggingface.co/enterprise'>Enterprise</a> |
<a href='https://huggingface.co/pricing'>Pricing</a>
</div>
""")
app.queue().launch(inbrowser=True) |