Skip to content

Instantly share code, notes, and snippets.

@pedrocss
Created August 26, 2015 15:36
Show Gist options
  • Save pedrocss/96cb34e3324c6f97b82d to your computer and use it in GitHub Desktop.
Save pedrocss/96cb34e3324c6f97b82d to your computer and use it in GitHub Desktop.
Code to connect to Resolume using Bespoke.osc
IPAddress ip = IPAddress.Parse("127.0.0.1");
int port = 7321;
IPEndPoint destination = new IPEndPoint(ip, port);
OscMessage oscMessage = new OscMessage(destination, "/activeclip/video/position/direction");
oscMessage.Append(0);
oscMessage.Send(destination);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment