Replies: 1 comment
-
The const inputChannel = WebMidi.inputs[1].channels[1];
const outputChannel = WebMidi.outputs[2].channels[15];
inputChannel.addListener("noteon", e => outputChannel.sendNoteOn(e.note)); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
Its possible to receive a midi messsage from a input on channel 1 and send the same note on to a output but in another channel?
Like this
Input Note on Channel 1 --> Output Note on Channel 15
WebMidi.inputs[1].addForwarder(WebMidi.outputs[0])
Input 1 is one midi controller channel 1
output 2 is a Roland Synth that i want to receive message on channel15
Beta Was this translation helpful? Give feedback.
All reactions