Online Sequencer Forums

Full Version: Accelerando/ritenuto
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to make the music go faster or slow down (accelerando/ritenuto), probably by coding?
multiplier = parseFloat(prompt("How much do you want to scale the note lengths?"))

for(i = 0; i < selectedNotes.length; i++){
note = selectedNotes[i]
song.moveNote(note, note.instrument, note.instrument, note.time, note.time*multiplier, note.type, note.type)
song.update(note)
}
Tbh Frank. You should develope your own online sequencer. You are great at programming.
(05-19-2018, 07:34 AM)alex32124 Wrote: [ -> ]Tbh  Frank. You should develope your own online sequencer. You are great at programming.

You the second person who suggested this to me? Unfortunately, I am more of a reverse engineering sort of guy. Maybe some day.