I need to control several parameters live from the web audio api from another location
not audio streaming, just parameters data
so for instance I could modify a synth sound with a slider in one location and the website that holds that web audio api synth changes parameters in real time
how could I do that?
JomoPipi
@JomoPipi
@Deschutter What have you tried?
Steve Mason
@hysteve
@Deschutter I'm trying to build something similar, using the npm midi library to create a virtual midi instrument that other DAWs can use the CC MIDI signal values from. This lib runs on a nodejs server, so a UI requires the server to serve a webpage and handle events. For this, I built an express server that hosts the midi instrument and a single-page web app, with a websocket connection. This allows the server and client to message each other in an open stream.