Skip to main content

Combine and edit Ableton Live sets (.als files).

Project description

buildable

PyPI - Version PyPI - Python Version


buildable allows you to edit and extend Ableton Live sets programmatically. For example, you could have a single set that stores your common return tracks, and use buildable to add them to various template sets.

Currently you can copy tracks/returns from other sets, delete and re-order tracks/returns, and set some high-level parameters like the session/arrangment view state.

Installation

pip install buildable

Usage

from buildable import LiveSet

# Template bases containing e.g. MIDI/audio tracks.
jam_session = LiveSet.from_file('jam-session-tracks.als')
composition = LiveSet.from_file('composition-tracks.als')

# Shared main track and return tracks to be copied to the templates.
shared_structure = LiveSet.from_file('shared-structure.als')

for template_set in (jam_session, composition):
    template_set.insert_return_tracks(shared_returns.return_tracks)
    template_set.main_track = shared_main.main_track

jam_session.write_to_file("/path/to/user-library/Templates/JamSession.als")
composition.write_to_file("/path/to/user-library/Templates/Composition.als")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

buildable-0.0.1.tar.gz (2.6 MB view hashes)

Uploaded Source

Built Distribution

buildable-0.0.1-py3-none-any.whl (1.1 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page