Search found 35 matches

by AkaMed
15 Mar 2017 22:41
Forum: Troubleshooting
Topic: String to array
Replies: 0
Views: 935

String to array

Hello I remember I found the solution time ago, but as the user manual is not updated :( I can't find how to convert a string to an array... I.e.: I have an string containing a number '2500' and I want to convert it to an integer.... Where's the stringtoarray function? .....because sizeof(string ...
by AkaMed
05 Jan 2017 15:58
Forum: Troubleshooting
Topic: How to receiveg huge OSC arrays
Replies: 1
Views: 833

How to receiveg huge OSC arrays

Hello I am trying to receive a packet from Ableton Live. It contains all the clip names, so I can be easily 1024 indexes. I can't put OSC_ARGS in a vector, because the if the full message was received, it would be 1024, and it is more than the 256 indexes Lemur limit. So I have to call oscout ...
by AkaMed
14 Dec 2016 21:54
Forum: General Discussion
Topic: What´s the best way to send and receive OSC Ableton Live
Replies: 7
Views: 2387

Re: What´s the best way to send and receive OSC Ableton Live

Thank you again phase_change for your nice explanation. I am not sure Liveosc works fine with Ableton Live 9.7 because I can't make it work. I've done a M4L patch with "udreceive 127.0.0.1 9001" connected to "udpsend 192.168.0.3 8000", but I am not able to make it work even without an ADHOC, and ...
by AkaMed
12 Dec 2016 19:19
Forum: Projects
Topic: Live 8 Python Remote
Replies: 4
Views: 10838

Re: Live 8 Python Remote

Thank you MrCorba

I uncompiled the LiveControl2 pyc's but it is a lot of stuff there...

I am trying with OSC but I will be following your work....

Best

Ruben
by AkaMed
12 Dec 2016 19:17
Forum: General Discussion
Topic: What´s the best way to send and receive OSC Ableton Live
Replies: 7
Views: 2387

Re: What´s the best way to send and receive OSC Ableton Live

Thank you very much, phase_change. I have created a hotspot in the host, I will use my laptop on stage and I will not have a router, and I have configured the OSC output in Lemur as 9000 and 192.168.0.2 for the OSC 0 target. Lemur IP says it has 192.168.0.3:8000 So Lemur should send to 192.168.0.2 ...
by AkaMed
11 Dec 2016 23:28
Forum: General Discussion
Topic: What´s the best way to send and receive OSC Ableton Live
Replies: 7
Views: 2387

Re: What´s the best way to send and receive OSC Ableton Live

I am trying with LiveOSC. I can send and receive as I can see in the M4L OSCmonitor. Lémur receives and moves one fader on the iPad screen when I move a fader in Ableton Live, but if I move the fader in Lémur (iPad) the M4L monitor says it is receiving the correct message, but the fader doesn´t move ...
by AkaMed
11 Dec 2016 21:31
Forum: General Discussion
Topic: What´s the best way to send and receive OSC Ableton Live
Replies: 7
Views: 2387

What´s the best way to send and receive OSC Ableton Live

Hello I am trying OSC but I don´t find what´s best for dealing with OSC in Ableton Live. I have done it with LiveGrabber but the parameters are limited and I need to send track names and more information to Lémur, and LiveGrabber doesn´t support it. What do you reccomend? I use Windows. Thanks in adv ...
by AkaMed
09 Dec 2016 22:45
Forum: Projects
Topic: Live 8 Python Remote
Replies: 4
Views: 10838

Re: Live 8 Python Remote

Hello MrCorba, I am interested in making it work in Ableton Live 9. I've been having a look at your Lemur and Python code, but I am a bit lost with your Python scripts, I will need to try a bit deeper and see if I achieve something. If you have some news, I would be pleased to know it. I have my own ...
by AkaMed
22 Feb 2015 21:34
Forum: Troubleshooting
Topic: noteoff-noteon with Custom MIDI noteout
Replies: 7
Views: 1666

Re: noteoff-noteon with Custom MIDI noteout

That's what I get for not looking at which file I was cutting and pasting from. Glad you got it sorted out.
Usually happens :)
Thank you!
:D
by AkaMed
20 Feb 2015 21:43
Forum: Troubleshooting
Topic: noteoff-noteon with Custom MIDI noteout
Replies: 7
Views: 1666

Re: noteoff-noteon with Custom MIDI noteout

Yes it works, but I had to modify it ( pads_notes[m] instead of pad_notes[firstof.x]: decl velocity, note, m; velocity = pow(Velocity.x,2)*127; //velocity=(Velocity.x)*127; for (m=0; m<12; m++) if (Pads.x[m] != savedP[m]) noteout(MIDI_target, pads_notes[m], (velocity*Pads.x[m]),MIDI_channel_drums ...