Update app.py
Browse files
app.py
CHANGED
@@ -79,7 +79,7 @@ def render_midi(input_midi, render_type, soundfont_bank, render_sample_rate, cus
|
|
79 |
output_score = copy.deepcopy(escore)
|
80 |
|
81 |
elif render_type == "Extract melody":
|
82 |
-
output_score = TMIDIX.extract_melody(cscore, melody_range=[
|
83 |
|
84 |
elif render_type == "Transform":
|
85 |
output_score = TMIDIX.flip_enhanced_score_notes(escore)
|
|
|
79 |
output_score = copy.deepcopy(escore)
|
80 |
|
81 |
elif render_type == "Extract melody":
|
82 |
+
output_score = TMIDIX.extract_melody(cscore, melody_range=[48, 72])
|
83 |
|
84 |
elif render_type == "Transform":
|
85 |
output_score = TMIDIX.flip_enhanced_score_notes(escore)
|