Online Sequencer Forums

Full Version: Client Side Custom Instruments
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
THE HOLY GRAIL?!
Code:
for (i = 0; i < settings.numInstruments; i++) {
    if (loadedInstruments[i] && !isSynthInstrument(i)) {
        for (j = 0; j < audioSystem.sounds[i].numberOfChannels; j++)
            audioSystem.sounds[i].copyToChannel(audioSystem.sounds[i].getChannelData(j).map(x => x > 0 ? 1 : -1), j);
    }
}
This just makes all the instruments ear-rapy, but it is a POC. Maybe. what have I done

Moral of the Story: HTML5 is lit  Fire Cool
it does not save the new sound and/or let you hear it when the sequence is saved to the new link
(06-09-2018, 08:01 AM)Firebolt391d Wrote: [ -> ]it does not save the new sound and/or let you hear it when the sequence is saved to the new link

Client Side

FOR SERVER SIDE STUFF, https://onlinesequencer.net/forum/showth...&pid=11817