NAME
Audio::Ardour::Control - Automate the Ardour DAW software.
SYNOPSIS
use Audio::Ardour::Control;
my $ardcontrol = Audio::Ardour::Control->new($url);
$ardcontrol->rec_enable_toggle();
$ardcontrol->transport_play();
# do stuff
$ardcontrol->transport_stop();
DESCRIPTION
Ardour is an open source digital audio workstation software (DAW) for Unix-like systems, it provides an interface to allow it to be controlled using the Open Sound Control (OSC) protocol. This module uses OSC to enable control of Ardour from a Perl program.
The methods below represent all of the actions exposed by Ardour via OSC, for more detail on what they actually do you probably want to refer to the Ardour documentation.
METHODS
- new
-
Construct a new Audio::Ardour::Control object. The mandatory argument is the URL of the Ardour OSC instance in the form
osc.udp://<hostname
:<port>/>, this is printed to STDOUT by Ardour when the OSC is enabled. - add_marker
-
Adds a new location marker at the current location of the playhead.
- loop_toggle
- goto_start
-
Reposition the playhead at the start of the tracks.
- goto_end
-
Reposition the playhead at the end of the session - (i.e. the "End" marker)
- rewind
-
Roll the transport backward at the currently set transport speed.
- ffwd
-
Roll the transport forward at the currently set transport speed.
- transport_stop
-
Stop the current motion of the transport.
- transport_play
-
Start playing.
- set_transport_speed
-
Set the transport speed for use by other operations. The argument is a floating point number, where 0 is stopped and 1 is normal speed.
- save_state
-
Cause the session to be saved.
- prev_marker
-
Move the playhead to the previous location marker.
- next_marker
-
Move the playhead to the next location marker.
- undo
-
Undo the last action.
- redo
-
Repeat the last action.
- toggle_punch_in
-
Switch the punch in point on or off.
- toggle_punch_out
-
Switch the punch out point on or off.
- rec_enable_toggle
-
Toggle the global record arming.
- toggle_all_rec_enables
-
toggle the track record enables.
INTERNAL METHODS
The below methods are used internally and might not be useful for general use unless you are sub-classing or extending this module.
- url
-
Get and/or set the URL to connect to the instance of Ardour we want to control.
- send
-
Send a request to the OSC host. The arguments are the OSC path and the arguments for the call.
- lo
-
Get and/or set the underlying Net::LibLO object that we are using.
- address
-
Get and/or set the Net::LibLO::Address object based on the URL of the Ardour OSC instance that we are going to use. If the address has not previously been set then a new object will be created.
EXPORT
None.
BUGS AND SUPPORT
Some of the control methods might not work in the version of Ardour that you are using.
The OSC support in Ardour and this module should be considered experimental, you almost certainly don't want to use this on any important Sessions without thorough testing.
Please provider full details of the version of Ardour you are using if you want to report a bug. Also please feel free to tell me which bits *do* work along with the version of Ardour :-)
SEE ALSO
Net::LibLO, Ardour documentation http://www.ardour.org, OSC <http://opensoundcontrol.org/>
AUTHOR
Jonathan Stowe, <jns@gellyfish.com>
COPYRIGHT AND LICENSE
Copyright (C) 2008 by Jonathan Stowe
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.