foot controller's Midi messages manipulation for Ableton Live - in Russian =)
Article with Google Translator
Will be the article about signal routing with ableton and LiveAPI driver soon.
If you have MacOS, use MidiPipe instead Bome MT. It's free and very flexible.
Search found 3 matches
- Wed Jul 15, 2009 7:48 pm
- Forum: Tips & Tricks
- Topic: Multiple Loopers & FBC1010 Uno
- Replies: 2
- Views: 1026
- Mon Jul 13, 2009 11:19 am
- Forum: Tips & Tricks
- Topic: Live 8 Looper Device, how to access CLEAR & UNDO (LiveAPI)?
- Replies: 3
- Views: 1705
Re: Live 8 Looper Device, how to access CLEAR & UNDO (LiveAPI)?
MacOS X:
# in the __init__.py
import sys
sys.stdout = write('/tmp/live-stdout', 'w')
sys.stdout = open('/tmp/live-stderr', 'w')
# in the controller code
# self.current_track - predefined pointer for the current track management.
looper = None
for dev in self.current_track.devices:
if dev.name ...
# in the __init__.py
import sys
sys.stdout = write('/tmp/live-stdout', 'w')
sys.stdout = open('/tmp/live-stderr', 'w')
# in the controller code
# self.current_track - predefined pointer for the current track management.
looper = None
for dev in self.current_track.devices:
if dev.name ...
- Sun Jul 12, 2009 5:02 pm
- Forum: Tips & Tricks
- Topic: Live 8 Looper Device, how to access CLEAR & UNDO (LiveAPI)?
- Replies: 3
- Views: 1705
Live 8 Looper Device, how to access CLEAR & UNDO (LiveAPI)?
Hello, i'm using ableton for the live looping with my bass guitar.
I have custom driver (MIDI remote script) for it. But can't access UNDO and CLEAR params.
stdout print for the "Looper" device parameters:
@ Device On min[0.0] max[1.0]
@ State min[0.0] max[3.0]
@ Feedback min[0.0] max[1.0 ...
I have custom driver (MIDI remote script) for it. But can't access UNDO and CLEAR params.
stdout print for the "Looper" device parameters:
@ Device On min[0.0] max[1.0]
@ State min[0.0] max[3.0]
@ Feedback min[0.0] max[1.0 ...