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