Skip to content

Instantly share code, notes, and snippets.

@tado
Last active March 19, 2021 13:58
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tado/a62f8aa794629e34dc6325fa6c1fd82c to your computer and use it in GitHub Desktop.
Save tado/a62f8aa794629e34dc6325fa6c1fd82c to your computer and use it in GitHub Desktop.
Forwarding TidalCycles OSC messages via SuperCollider
SuperDirt.start
(
//forward OSC message (localhost, port 3333)
var addr = NetAddr.new("127.0.0.1", 3333);
OSCdef(\tidalplay2, {
arg msg;
addr.sendMsg("/play2", *msg);
}, '/play2', n);
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment