PyLive is a framework for querying and controlling Ableton Live from a standalone Python script, mediated via Open Sound Control. It is effectively an interface to the Live Control Surfaces paradigm, which means it can do anything that a hardware control surface can do, including:
- query and modify global parameters such as tempo, volume, pan, quantize, arrangement time
- query and modify properties of tracks, clips, scenes and devices
- trigger and stop clips and scenes
It can perform most of the operations described in the LiveOSC OSC API.
If you are looking simply to send MIDI messages to Live, this module is not what you want. Instead, try setting up a virtual MIDI bus and using isobar to generate MIDI sequences.
- Ableton Live 9+
- Python 2.6+
- LiveOSC (fork): A maintained fork of the LiveOSC MIDI control script, updated to work with Live 9.6 and 10. Must be installed in Live's
MIDI Remote Scripts(see README) - liblo: Install via Homebrew with
brew install liblo. See "Alternate installation without liblo" below if you can't install liblo.
From PyPi:
pip3 install Cython # needed for pyliblo
pip3 install pylive
Or via git:
git clone https://github.com/ideoforms/pylive.git
cd pylive
python3 setup.py install
To check that pylive is communicating successfully with Ableton Live, try running one of the examples, or run the test suite with:
python3 setup.py test
In some environments (particularly Windows), liblo can be a pain to get running. In these scenarios, an alternative backend is provided that uses the pythonosc backend for OSC communications.
If you want to install without liblo support:
- clone the repo from GitHub
- remove the
install_requiresline fromsetup.py - install pylive with
python3 setup.py install
You will then need to set an environmental variable specifying the pythonosc backend before running scripts using pylive:
export PYLIVE_BACKEND='pythonosc'
python3 your-script.py
#------------------------------------------------------------------------
# Basic example of pylive usage: scan a Live set, trigger a clip,
# and modulate some device parameters.
#------------------------------------------------------------------------
import live
import random
#------------------------------------------------------------------------
# Scan the set's contents and set its tempo to 110bpm.
#------------------------------------------------------------------------
set = live.Set()
set.scan(scan_clip_names = True, scan_devices = True)
set.tempo = 110.0
#------------------------------------------------------------------------
# Each Set contains a list of Track objects.
#------------------------------------------------------------------------
track = set.tracks[0]
print("Track name %s" % track.name)
#------------------------------------------------------------------------
# Each Track contains a list of Clip objects.
#------------------------------------------------------------------------
clip = track.clips[0]
print("Clip name %s, length %d beats" % (clip.name, clip.length))
clip.play()
#------------------------------------------------------------------------
# We can determine our internal timing based on Live's timeline using
# Set.wait_for_next_beat(), and trigger clips accordingly.
#------------------------------------------------------------------------
set.wait_for_next_beat()
clip.get_next_clip().play()
#------------------------------------------------------------------------
# Now let's modulate the parameters of a Device object.
#------------------------------------------------------------------------
device = track.devices[0]
parameter = random.choice(device.parameters)
parameter.value = random.uniform(parameter.minimum, parameter.maximum)To begin interacting with an Ableton Live set, the typical workflow is as follows. Live should normally be running on localhost, with LiveOSC enabled as a Control Surface.
- Create a
live.Setobject. - Call
set.scan(), which queries Live for an index of tracks, clip statuses, and (optionally) clip names and devices - Interact with Live by setting and getting properties on your
Set:set.tempo,set.time,set.overdubare global Set propertiesset.tracksis a list of Track objectsset.tracks[N].name,set.tracks[N].mute, are Track propertiesset.tracks[N].clipsis a list of Clip objects (with empty slots containingNone)set.tracks[N].devicesis a list of Device objectsset.tracks[N].devices[M].parametersis a list of Parameter objects
Getters and setters use Python's @property idiom, meaning that accessing set.tempo will query or update your Live set.
If you know that no other processes will interact with Live, set set.caching = True to cache properties such as tempo. This will query the Live set on the first instance, and subsequently return locally-stored values.
For further help, see pydoc live.
Set: Represents a single Ableton Live set in its entirety.Track: A single Live track object. ContainsDeviceandClipobjects. May be a member of aGroup.Group: A grouped set of one or moreTrackobjects.Device: An instrument or audio effect residing within aTrack. Contains a number ofParameterobjects.Parameter: An individual control parameter of aDevice, with a fixed range and variable value.
Note that pylive is not intended for sending MIDI note events or control messages to a set. For MIDI controls, use a separate module such as mido.