Last active
March 19, 2021 13:58
-
-
Save tado/a62f8aa794629e34dc6325fa6c1fd82c to your computer and use it in GitHub Desktop.
Forwarding TidalCycles OSC messages via SuperCollider
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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