Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hamiltonkibbe/PyAbleton

A Python Library for creating and editing Ableton Live instrument patches
https://github.com/hamiltonkibbe/PyAbleton

Last synced: 4 months ago
JSON representation

A Python Library for creating and editing Ableton Live instrument patches

Awesome Lists containing this project

README

        

# PyAbleton

**A Python Library for creating and Editing Ableton Live instrument patches**

** Analog **

It's as easy as this:

from pyableton.presets import AnalogPreset
instrument = AnalogPreset()

instrument.osc[1].waveshape = 'SINE'
instrument.filter[0].type = 'LP24'
instrument.filter[1].envelope.attacktime = 0.0687
instrument.polyphony = 'MONO'

instrument.save_preset('gnarly_wobble.adv')