Skip to content

avantcontra/osc-websocket-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

osc-websocket-example

Examples about receiving OSC data through WebSocket.

p5js-max

Background

Sometimes I meet situations where I need OSC but cannot use UDP.

Such as sending OSC message from browser-based p5js to Processing / MaxMSP / Unity.
And my OSC controller called BugOSC, a WeChat Mini Program, which also does not support UDP. WeChat Mini Program has supported UDP at May 2019.

However, although they don't support UDP, they support WebSocket, another network transmission protocol.

Here are examples about receiving OSC data through WebSocket sent from p5js for example.
The transporting data are binary packets (ArrayBuffer, byte[]) following the standard OSC format.

p5js-processing

WebSocket Client

The p5js sketch in p5js-client.

Use library osc.js to pack and parse OSC data.
And osc.js itself supports UDP (NodeJS), Serial port, WebSocket (browser and NodeJS) and TCP, Wow!

WebSocket Server

Click the first level links for detail README.

*Bridge

Of course also can make a third party NodeJS/Processing/Python/etc BRIDGE focus on receiving data through WebSocket and forwarding to other OSC receivers:
p5js-client <---WebSocket---> BRIDGE <---OSC---> Max/Processing/Unity/Arduino/etc


Welcome PR! 👏

Cheers~

Contra

About

Examples about receiving OSC data through WebSocket.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published