Search found 259 matches

by ST8
Tue Jul 08, 2014 4:23 pm
Forum: Ableton Live
Topic: Do Python scripts drive everybody crazy or is it just me?
Replies: 5
Views: 2509

Re: Do Python scripts drive everybody crazy or is it just me?

Your overwriting your button in the loop so only the last one exists, hence you always get the id of the last one. You need to make an array of buttons. def _setup(self): self._buttons = [] for index in range(72): button = ConfigurableButtonElement(True, MIDI_NOTE_TYPE, 0, index)) #using the Launchp...
by ST8
Tue Oct 29, 2013 3:19 pm
Forum: Max For Live
Topic: emulating Push encoders with other controller (possible?)
Replies: 4
Views: 1112

Re: emulating Push encoders with other controller (possible?)

One of these days ill finish up LiveDevice....
Image
http://roygbiv.org.uk/midi-controllers/livedevice/

Almost sorted out the new pcbs a while ago, but still gotta get some enclosures made
by ST8
Tue Oct 29, 2013 11:52 am
Forum: Ableton Live
Topic: native instruments presets in instruments rack
Replies: 75
Views: 29030

Re: native instruments presets in instruments rack

The rest of Komplete 9 Ultimate is now compatible with the latest release. I produced a new demo video showing some of the features on there. http://audiomodder.myshopify.com/collections/all/products/push-vst-bridge Ive manually created a couple of racks for battery 3 with multichannel routing. Pre...
by ST8
Sat Aug 31, 2013 5:45 pm
Forum: Ableton Live
Topic: Live 9 and kapture problem
Replies: 8
Views: 2358

Re: Live 9 and kapture problem

Theres a fix in progress for this. We should have an update out soon, sorry for the delays.
by ST8
Tue Jul 23, 2013 9:05 pm
Forum: Ableton Live
Topic: Remote Scripts: What are they good for?
Replies: 4
Views: 1419

Re: Remote Scripts: What are they good for?

Remote scripts have also been responsible for LiveControl 1 & 2, Griid, Kapture, TouchAble, and LiveOSC. You can do pretty much anything you like in python, Lives python interpreter is stripped down so many of the default modules are not available, however you can still do quite a lot. In LiveCo...
by ST8
Tue Jun 11, 2013 10:35 am
Forum: Ableton Live
Topic: Livecontrol 2
Replies: 102
Views: 24091

Re: Livecontrol 2

Hi guys, Just been messing about with LiveControl 2, I have been trying to get the names of my drum rack cells to appear in the sequencer page, I'm assuming it doesn't work like that. It just gives the names of the midi piano note, but would be helpful if names of cells were displayed for programmi...
by ST8
Sun Jun 09, 2013 7:24 am
Forum: Ableton Live
Topic: Livecontrol 2
Replies: 102
Views: 24091

Re: Livecontrol 2

Glad to hear this is solid for some of you. I think it will be great but I'm experiencing instability at this point. Just trying to use the mixer/launch/transport for now as I'm getting ready for a couple of gigs. Funkiness includes: Send toggle on/off not working consistently Track names and clip ...
by ST8
Thu Jan 17, 2013 10:32 pm
Forum: Ableton Live
Topic: Who wants access to Ableton's Python API? .. You? .. Ok!
Replies: 419
Views: 206512

Re: Who wants access to Ableton's Python API? .. You? .. Ok!

I saw a response in this thread that copied what sure looks like a Python interactive interpreter talking to the API and introspecting it. Can anyone tell me how this was accomplished? I seemingly can't just drop into pdb from a script, but I would LOVE to be in an interactive interprete. Thanks! i...
by ST8
Thu Jan 17, 2013 10:16 pm
Forum: Max For Live
Topic: Linearity of output_meter and value
Replies: 4
Views: 2388

Re: Linearity of output_meter and value

That was a bit of a hack in LiveControl, i implemented a better exp fn in another prog. Will try and dig it out for you.
by ST8
Thu Jan 17, 2013 10:14 pm
Forum: Max For Live
Topic: lemur ipad template scripting wizard needed!!!
Replies: 1
Views: 762

Re: lemur ipad template scripting wizard needed!!!

LiveControl 2 will be out shortly if thats the sort of thing you're after. If that doesnt work for you get in touch.
by ST8
Sat Dec 22, 2012 6:57 pm
Forum: Max For Live
Topic: How to add a callback to a button element in Python?
Replies: 6
Views: 2162

Re: How to add a callback to a button element in Python?

Heres a quick example on how to listen to a particular midi message in live: test.py in midi remote scripts/test/ from _Framework.ControlSurface import ControlSurface from _Framework.InputControlElement import * from _Framework.SliderElement import SliderElement class Test(ControlSurface): def __ini...
by ST8
Fri May 18, 2012 12:45 pm
Forum: Ableton Live
Topic: Shuttle Micro Computer
Replies: 9
Views: 1987

Re: Shuttle Micro Computer

Agreed, before i moved over to mac i ran a couple of shuttle type system for ages. Excellent little systems. Usually the only cavet is slightly limited power supply, but if you're not running a high end graphics card that wont be a problem.
by ST8
Fri May 04, 2012 2:23 pm
Forum: Ableton Live
Topic: precise timer in live's python API
Replies: 6
Views: 2261

Re: precise timer in live's python API

yes, with m4l you get max's timing which is tied to the live transport, so its pretty tight.
by ST8
Wed May 02, 2012 6:57 pm
Forum: Ableton Live
Topic: precise timer in live's python API
Replies: 6
Views: 2261

Re: precise timer in live's python API

No way to do this im afraid :(
Its one of the things that would make a lot more possible with the python api.
by ST8
Tue Apr 17, 2012 7:34 pm
Forum: Max For Live
Topic: My js is slowing down
Replies: 6
Views: 1667

Re: My js is slowing down

I think the problem that you are having is that you are creating a new API object every time you do something. Instead of using the new LiveAPI() method, you might instead try re-using instances that have already been created and reassigning their paths. This is a little slower on the front-end, bu...