Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -168,10 +168,8 @@ def load_midi(midi_file):
|
|
168 |
#==================================================================================
|
169 |
|
170 |
def Remix_MIDI(input_midi,
|
171 |
-
max_num_loops,
|
172 |
-
comp_loops_mult,
|
173 |
chords_chunks_len,
|
174 |
-
|
175 |
):
|
176 |
|
177 |
#===============================================================================
|
@@ -188,10 +186,8 @@ def Remix_MIDI(input_midi,
|
|
188 |
print('Requested settings:')
|
189 |
print('=' * 70)
|
190 |
print('Input MIDI file name:', fn)
|
191 |
-
print('
|
192 |
-
print('Num
|
193 |
-
print('Matches chords chunks len:', chords_chunks_len)
|
194 |
-
print('Min number of unique chords in each loops:', loops_chords_set_len)
|
195 |
|
196 |
print('=' * 70)
|
197 |
|
@@ -203,7 +199,7 @@ def Remix_MIDI(input_midi,
|
|
203 |
|
204 |
print('Prepping chords chunks...')
|
205 |
|
206 |
-
chunk_len =
|
207 |
|
208 |
all_chords_chunks = Counter()
|
209 |
|
@@ -231,7 +227,9 @@ def Remix_MIDI(input_midi,
|
|
231 |
match_chunks = [l for l in split_by_sublist(tones_chords, mc_chunk) if len(l) in chunk_lens]
|
232 |
all_match_chunks[tuple(mc_chunk)] = match_chunks
|
233 |
|
234 |
-
|
|
|
|
|
235 |
|
236 |
#==================================================================
|
237 |
|
@@ -400,10 +398,8 @@ with gr.Blocks() as demo:
|
|
400 |
|
401 |
gr.Markdown("## Mixing options")
|
402 |
|
403 |
-
|
404 |
-
|
405 |
-
chords_chunks_len = gr.Slider(6, 10, value=6, step=1, label="Number of loops chords to match")
|
406 |
-
loops_chords_set_len = gr.Slider(16, 24, value=16, step=1, label="Minimum number of unique chords in each loop")
|
407 |
|
408 |
mix_btn = gr.Button("Remix", variant="primary")
|
409 |
|
@@ -415,10 +411,8 @@ with gr.Blocks() as demo:
|
|
415 |
|
416 |
mix_btn.click(Remix_MIDI,
|
417 |
[input_midi,
|
418 |
-
max_num_loops,
|
419 |
-
comp_loops_mult,
|
420 |
chords_chunks_len,
|
421 |
-
|
422 |
],
|
423 |
[output_audio,
|
424 |
output_plot,
|
|
|
168 |
#==================================================================================
|
169 |
|
170 |
def Remix_MIDI(input_midi,
|
|
|
|
|
171 |
chords_chunks_len,
|
172 |
+
num_mix_chunks
|
173 |
):
|
174 |
|
175 |
#===============================================================================
|
|
|
186 |
print('Requested settings:')
|
187 |
print('=' * 70)
|
188 |
print('Input MIDI file name:', fn)
|
189 |
+
print('Chords chunks len:', chords_chunks_len)
|
190 |
+
print('Num mix chunks:', num_mix_chunks)
|
|
|
|
|
191 |
|
192 |
print('=' * 70)
|
193 |
|
|
|
199 |
|
200 |
print('Prepping chords chunks...')
|
201 |
|
202 |
+
chunk_len = chords_chunks_len
|
203 |
|
204 |
all_chords_chunks = Counter()
|
205 |
|
|
|
227 |
match_chunks = [l for l in split_by_sublist(tones_chords, mc_chunk) if len(l) in chunk_lens]
|
228 |
all_match_chunks[tuple(mc_chunk)] = match_chunks
|
229 |
|
230 |
+
#==================================================================
|
231 |
+
|
232 |
+
chunks_map = random.choices(other_chunks, k=num_mix_chunks)
|
233 |
|
234 |
#==================================================================
|
235 |
|
|
|
398 |
|
399 |
gr.Markdown("## Mixing options")
|
400 |
|
401 |
+
chords_chunks_len = gr.Slider(3, 7, value=4, step=1, label="Number of chords to match for each repeating chunk")
|
402 |
+
num_mix_chunks = gr.Slider(4, 20, value=10, step=1, label="Number of repeating chunks to mix")
|
|
|
|
|
403 |
|
404 |
mix_btn = gr.Button("Remix", variant="primary")
|
405 |
|
|
|
411 |
|
412 |
mix_btn.click(Remix_MIDI,
|
413 |
[input_midi,
|
|
|
|
|
414 |
chords_chunks_len,
|
415 |
+
num_mix_chunks
|
416 |
],
|
417 |
[output_audio,
|
418 |
output_plot,
|