Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

javascript osc library?

Tags:

javascript

osc

Does an open sound control library exists for javascript? I cant seem to find any information on this.

like image 229
davivid Avatar asked Mar 30 '11 13:03

davivid


3 Answers

Implemented, client-side, in my KievII library. Here's a link to the code. Works nicely with my server-side, node.js, OSC Proxy.

like image 134
janesconference Avatar answered Sep 27 '22 17:09

janesconference


I've recently worked on a OSC library (UMD module written in ES6) named osc-js for different JavaScript applications (Node.js, Electron, Chrome Apps, webpages) with address pattern matching, WebSocket-/UDP Plugins and some solutions to connect it to MaxMSP/PureData/etc.:

https://github.com/adzialocha/osc-js

like image 45
adz Avatar answered Sep 27 '22 17:09

adz


Web sockets are, indeed, the best way to implement OSC in a browser - but, with lacking support, the next-best thing is a custom HTTP server. An effort is underway to build one - I've not checked out the process, so have a look yourself to see if it fits your purposes.

like image 32
appas Avatar answered Sep 27 '22 17:09

appas