Spaces:
Running
Running
File size: 12,523 Bytes
48c9cae cdb1fca 97e80ab c68d210 97e80ab cdb1fca 8979d67 7d39313 fec90c5 eb9414e d356604 ac062f7 e4d1c33 ac062f7 2f9b3e2 cdb1fca e4d1c33 cdb1fca 2f9b3e2 d356604 e4d1c33 ac062f7 cdb1fca 016e08c c2b2970 016e08c f742df5 016e08c f742df5 016e08c fec90c5 52b276e d356604 016e08c 8979d67 52b276e ebd096a 52b276e 0db4793 52b276e cdb1fca 016e08c 9386e92 016e08c 52b276e b8f21b1 016e08c b8f21b1 52b276e b8f21b1 52b276e 016e08c 52b276e 739896a 016e08c 52b276e 016e08c 1b639c6 52b276e 016e08c 9386e92 016e08c 9386e92 f742df5 fec90c5 016e08c 2f9b3e2 016e08c 52b276e f742df5 debe9ae 016e08c debe9ae 52b276e 016e08c 52b276e 016e08c 52b276e 016e08c 2f9b3e2 52b276e 016e08c 52b276e 016e08c 52b276e c2b2970 52b276e 016e08c 52b276e 016e08c c2b2970 016e08c c2b2970 52b276e 016e08c 52b276e d356604 52b276e ac062f7 52b276e e4d1c33 52b276e 016e08c ffd52cf 52b276e e4d1c33 52b276e cdb1fca 52b276e 016e08c 52b276e cdb1fca 52b276e cdb1fca 52b276e cdb1fca 5d2c281 cdb1fca 5d2c281 cdb1fca 5d2c281 c68d210 7d39313 eb9414e 5d2c281 eb9414e c68d210 5d2c281 c68d210 cdb1fca 7d39313 cdb1fca 5d2c281 7d39313 cdb1fca 7d39313 cdb1fca 7d39313 cdb1fca 563718a d34b744 ffd52cf f742df5 ac062f7 f2c28d2 e4d1c33 eb9414e cdb1fca 78280d0 cdb1fca 78280d0 d34b744 cdb1fca eb9414e d356604 ac062f7 e4d1c33 ac062f7 2f9b3e2 78280d0 cdb1fca |
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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 |
# =================================================================================================
# https://huggingface.co/spaces/asigalov61/MIDI-Chords-Mixer
# =================================================================================================
import time as reqtime
import datetime
from pytz import timezone
import copy
import gradio as gr
import random
from midi_to_colab_audio import midi_to_colab_audio
import TMIDIX
# =================================================================================================
def Mix_Chords(input_output_as_solo_piano,
input_remove_drums,
input_output_tempo,
input_transform,
input_transpose_to_C4,
input_transpose_value
):
print('=' * 70)
print('Req start time: {:%Y-%m-%d %H:%M:%S}'.format(datetime.datetime.now(PDT)))
start_time = reqtime.time()
print('=' * 70)
print('-' * 70)
print('Requested settings:')
print('-' * 70)
print('Output as Solo Piano:', input_output_as_solo_piano)
print('Remove drums:', input_remove_drums)
print('Output tempo:', input_output_tempo)
print('Transform:', input_transform)
print('Transpose to C4:', input_transpose_to_C4)
print('Transpose value:', input_transpose_value)
print('-' * 70)
print('Loading source and target MIDIs...')
#=============================================================================================================
sidx = random.randint(0, len(all_chords_chunks)-1)
src_score = all_chords_chunks[sidx]
sfn = src_score[0]
src_score_chords = src_score[1]
src_escore_notes = []
for s in src_score_chords:
chord_notes = [['note'] + list(c)[:2] + [(list(c)[2] // 16)+1] + list(c)[3:] + [list(c)[2]] for c in s]
for c in chord_notes[1:]:
c[1] = 0
src_escore_notes.extend(chord_notes)
src_escore_notes = TMIDIX.recalculate_score_timings(TMIDIX.delta_score_to_abs_score(src_escore_notes))
src_cscore = TMIDIX.chordify_score([1000, src_escore_notes])
src_counts = [chunks_lens[sidx]] + chords_drums_counts[sidx]
src_cidxs = all_chords_indexes[sidx]
src_avg_time = TMIDIX.escore_notes_averages(src_escore_notes)[0]
#=============================================================================================================
sidx = random.randint(0, len(all_chords_chunks)-1)
trg_score = all_chords_chunks[sidx]
tfn = trg_score[0]
trg_score_chords = trg_score[1]
trg_escore_notes = []
for s in trg_score_chords:
chord_notes = [['note'] + list(c)[:2] + [(list(c)[2] // 16)+1] + list(c)[3:] + [list(c)[2]] for c in s]
for c in chord_notes[1:]:
c[1] = 0
trg_escore_notes.extend(chord_notes)
trg_escore_notes = TMIDIX.recalculate_score_timings(TMIDIX.delta_score_to_abs_score(trg_escore_notes))
trg_cscore = TMIDIX.chordify_score([1000, trg_escore_notes])
trg_counts = [chunks_lens[sidx]] + chords_drums_counts[sidx]
trg_cidxs = all_chords_indexes[sidx]
trg_avg_time = TMIDIX.escore_notes_averages(trg_escore_notes)[0]
#=============================================================================================================
print('=' * 70)
print('Done loading source and target MIDIs...!')
print('=' * 70)
print('Mixing...')
max_chords_count = min(src_counts[1], trg_counts[1])
mixed_score = []
cidx = 0
for i, c in enumerate(src_cscore):
if i == src_cidxs[cidx]:
stime = c[0][1]
sdurs = [cc[2] for cc in c]
tchord = copy.deepcopy(trg_cscore[trg_cidxs[cidx]])
sdurs = sdurs + random.choices(sdurs, k=abs(len(tchord)-len(c)))
for j, n in enumerate(tchord):
n[1] = stime
n[2] = sdurs[j]
mixed_score.extend(tchord)
cidx += 1
if cidx == max_chords_count:
break
else:
mixed_score.extend(c)
print('=' * 70)
print('Done!')
print('=' * 70)
#===============================================================================
if input_output_as_solo_piano:
csong = TMIDIX.chordify_score([1000, mixed_score])
mixed_score = []
for c in csong:
pitches = []
for cc in c:
ccc = copy.deepcopy(cc)
if cc[3] != 9:
if cc[4] not in pitches:
ccc[3] = 0
ccc[6] = 0
mixed_score.append(ccc)
pitches.append(cc[4])
else:
mixed_score.append(ccc)
if input_remove_drums:
mixed_score = [e for e in mixed_score if e[3] != 9]
if input_output_tempo == 'Source MIDI':
time_k = src_avg_time / trg_avg_time
mixed_score = TMIDIX.adjust_escore_notes_timings(mixed_score, time_k)
elif input_output_tempo == 'Target MIDI':
time_k = trg_avg_time / src_avg_time
mixed_score = TMIDIX.adjust_escore_notes_timings(mixed_score, time_k)
if input_transform == 'Flip Mix':
mixed_score = TMIDIX.flip_enhanced_score_notes(mixed_score)
elif input_transform == 'Reverse Mix':
mixed_score = TMIDIX.reverse_enhanced_score_notes(mixed_score)
if input_transpose_value != 0:
mixed_score = TMIDIX.transpose_escore_notes(mixed_score, input_transpose_value)
if input_transpose_to_C4:
mixed_score = TMIDIX.transpose_escore_notes_to_pitch(mixed_score)
#===============================================================================
print('Rendering results...')
print('=' * 70)
print('Sample INTs', mixed_score[:5])
print('=' * 70)
fn1 = 'MIDI_Chords_Mixer_' + sfn + '_' + tfn
output_score, patches, overflow_patches = TMIDIX.patch_enhanced_score_notes(mixed_score)
detailed_stats = TMIDIX.Tegridy_ms_SONG_to_MIDI_Converter(output_score,
output_signature = 'MIDI Chords Mixer',
output_file_name = fn1,
track_name='Project Los Angeles',
list_of_MIDI_patches=patches,
timings_multiplier=16
)
new_fn = fn1+'.mid'
audio = midi_to_colab_audio(new_fn,
soundfont_path=soundfont,
sample_rate=16000,
volume_scale=10,
output_for_gradio=True
)
print('Done!')
print('=' * 70)
#========================================================
output_midi_title = str(fn1)
output_midi_summary = 'Source MIDI MD5: ' + sfn + '\n'
output_midi_summary += 'Target MIDI MD5: ' + tfn
output_midi = str(new_fn)
output_audio = (16000, audio)
for o in output_score:
o[1] *= 16
o[2] *= 16
output_plot = TMIDIX.plot_ms_SONG(output_score, plot_title=output_midi_title, return_plt=True)
print('Output MIDI file name:', output_midi)
print('Output MIDI title:', output_midi_title)
print('Output MIDI summary:', output_midi_summary)
print('=' * 70)
#========================================================
print('-' * 70)
print('Req end time: {:%Y-%m-%d %H:%M:%S}'.format(datetime.datetime.now(PDT)))
print('-' * 70)
print('Req execution time:', (reqtime.time() - start_time), 'sec')
return output_midi_title, output_midi_summary, output_midi, output_audio, output_plot
# =================================================================================================
if __name__ == "__main__":
#=====================================================================
PDT = timezone('US/Pacific')
print('=' * 70)
print('App start time: {:%Y-%m-%d %H:%M:%S}'.format(datetime.datetime.now(PDT)))
print('=' * 70)
#=====================================================================
soundfont = "SGM-v2.01-YamahaGrand-Guit-Bass-v2.7.sf2"
#=====================================================================
all_chords_chunks = TMIDIX.Tegridy_Any_Pickle_File_Reader('Los_Angeles_Chords_Songs_MIDI_Dataset_79898_128_256')
print('=' * 70)
print('Prepping loaded data...')
#=====================================================================
chunks_lens = [len(a[1]) for a in all_chords_chunks]
#=====================================================================
chords_drums_counts = []
for a in all_chords_chunks:
score = a[1]
ccount = 0
dcount = 0
for s in score:
if any(a[2] < 80 for a in s):
ccount += 1
if all(a[2] == 128 for a in s):
dcount += 1
chords_drums_counts.append([ccount, dcount])
#=====================================================================
all_chords_indexes = []
for a in all_chords_chunks:
score = a[1]
chords_indexes = []
for i, s in enumerate(score):
if any(a[2] < 80 for a in s):
chords_indexes.append(i)
all_chords_indexes.append(chords_indexes)
#=====================================================================
print('Done!')
print('=' * 70)
#=====================================================================
app = gr.Blocks()
with app:
gr.Markdown("<h1 style='text-align: center; margin-bottom: 1rem'>MIDI Chords Mixer</h1>")
gr.Markdown("<h1 style='text-align: center; margin-bottom: 1rem'>Mix chords from one MIDI to another MIDI</h1>")
gr.Markdown(
"![Visitors](https://api.visitorbadge.io/api/visitors?path=asigalov61.MIDI-Chords-Mixer&style=flat)\n\n"
"This is a demo for TMIDIX Python module from tegridy-tools and Los Angeles MIDI Dataset\n\n"
"Check out [tegridy-tools](https://github.com/asigalov61/tegridy-tools) on GitHub!\n\n"
"Check out [Los Angeles MIDI Dataset](https://github.com/asigalov61/Los-Angeles-MIDI-Dataset) on GitHub!\n\n"
)
gr.Markdown("## Select mixing options")
input_output_as_solo_piano = gr.Checkbox(label="Output as Solo Piano", value=False)
input_remove_drums = gr.Checkbox(label="Remove drums from output", value=False)
input_output_tempo = gr.Radio(["Source MIDI", "Target MIDI", "MIDI Mix"], value="MIDI Mix", label="Output tempo")
input_transform = gr.Radio(["As-is", "Flip Mix", "Reverse Mix"], value="As-is", label="Transform")
input_transpose_value = gr.Slider(-12, 12, value=0, step=1, label="Transpose value")
input_transpose_to_C4 = gr.Checkbox(label="Transpose to C4", value=False)
run_btn = gr.Button("Mix Chords", variant="primary")
gr.Markdown("## Mixing results")
output_midi_title = gr.Textbox(label="Output MIDI title")
output_midi_summary = gr.Textbox(label="Output MIDI summary")
output_audio = gr.Audio(label="Output MIDI audio", format="mp3", elem_id="midi_audio")
output_plot = gr.Plot(label="Output MIDI score plot")
output_midi = gr.File(label="Output MIDI file", file_types=[".mid"])
run_event = run_btn.click(Mix_Chords, [input_output_as_solo_piano,
input_remove_drums,
input_output_tempo,
input_transform,
input_transpose_to_C4,
input_transpose_value
],
[output_midi_title, output_midi_summary, output_midi, output_audio, output_plot])
app.queue().launch() |