diff options
author | Anthony Wang | 2023-03-19 00:38:23 -0400 |
---|---|---|
committer | Anthony Wang | 2023-03-19 00:38:23 -0400 |
commit | b253cb7a2a62302fbcaf652bacea64e38d664767 (patch) | |
tree | 1624c6257d23edf1ee72b646b8d65b7047de9670 /blend.py | |
parent | ab901fe0aac50adde6ff4dc3cede73ea16c5eb14 (diff) |
Implement different waveforms
Diffstat (limited to 'blend.py')
-rw-r--r-- | blend.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -250,11 +250,11 @@ yue.process(melody, 24, 4, blend=1) yue.process(bass, 24, gain=1.5, blend=1) yue.process(bass, 32, gain=1.5, blend=1) yue.process(melody, 40, 4, blend=1) -yue.process(melody2, 40, 4, blend=1) +yue.process(melody2, 40, 4, blend=1, waveform=yue.seething) yue.process(bass, 40, gain=1.5, blend=1) yue.process(bass, 48, gain=1.5, blend=1) yue.process(melody, 56, 4, blend=1) -yue.process(melody3, 56, 4, blend=1) +yue.process(melody3, 56, 4, blend=1, waveform=yue.seething) yue.process(bass, 56, gain=1.5, blend=1) yue.process(bass, 64, gain=1.5, blend=1) yue.process(outro, 72, 4, blend=1) |