View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide

ArdourControl

Home   How To   Code Pool   Public Library   Theory   Events
ArdourControl

Class to control the Ardour DAW via OSC. The class provides a set of commands to control playback and editing features of Ardour across a network, providing the ability to synchronise and automate recording and editing processes.



//create a new controller - if no arguments are given a local installtion is being searched for and, if found, used
g = ArdourControl.new;

//or on a remote machine
h = ArdourControl.new("10.10.10.5",3910);

//start playback
g.transportPlay;

//to get a list of commands use:
g.commands;



ArdourControl.sc

Link to this Page