Search found 140 matches

by yannxou
Sat Dec 21, 2024 11:14 am
Forum: Feature Wishlist
Topic: Allow names in empty clip slots
Replies: 0
Views: 6691

Allow names in empty clip slots

Hi! I think it'd be a nice addition if we could add names to empty clip slots (either if they have a stop button or not).

This could be used for adding user notes/markers to the session view and help with the navigation in large sets.
by yannxou
Tue Dec 03, 2024 8:31 am
Forum: Ableton Live
Topic: Recording from main track introduces latency
Replies: 0
Views: 826

Recording from main track introduces latency

Why recording from the main track introduces latency whereas recording using 'Resampling' has no latency?

I'm testing this with Live 12.1.1:
1. Drop a simple drum loop to an audio track in the arrangement.
2. Arm one track taking input from the previous drum loop track Post-fader.
3. Arm another ...
by yannxou
Thu Nov 07, 2024 3:22 pm
Forum: Feature Wishlist
Topic: Resizable Info view below full-height browser
Replies: 0
Views: 1836

Resizable Info view below full-height browser

Hi!
I think showing the info view under the browser while in full-height would save more screen space. It would also appear/disappear more gracefully when being shown/hidden.
As an alternative it'd be nice to have an option or make it draggable so it can be moved between the clip/device view to the ...
by yannxou
Sun Oct 13, 2024 5:00 pm
Forum: Feature Wishlist
Topic: More note_repeat properties for scripts
Replies: 0
Views: 5041

More note_repeat properties for scripts

I'm developing this MIDI script in Python to use the Yamaha Reface CP as a Live control surface:
https://github.com/yannxou/RefaceCPLiveControl

I was looking now to add some note repeating there too. It seems that the note_repeat type only has a repeat_rate property but I thought it'd be great to ...
by yannxou
Sun Oct 13, 2024 4:39 pm
Forum: Third-Party MIDI Controllers
Topic: MIDI Remote Scripts for Yamaha Reface CP
Replies: 0
Views: 15750

MIDI Remote Scripts for Yamaha Reface CP

I wrote a script to support the Yamaha Reface CP as a control surface in Live.

I own that keyboard for a few years already and since it's easy to carry around I thought it'd be very nice to use it as a casual controller too.
Hope you like it!

https://yannxou.github.io/RefaceCPLiveControl/
by yannxou
Sun Sep 15, 2013 9:02 am
Forum: Max For Live
Topic: Fire multiple clips at once using LiveAPI
Replies: 5
Views: 1828

Re: Fire multiple clips at once using LiveAPI

Any hope for improvements in LiveAPI for the upcoming 9.1?
by yannxou
Wed Jul 03, 2013 3:19 pm
Forum: Max For Live
Topic: Fire multiple clips at once using LiveAPI
Replies: 5
Views: 1828

Re: Fire multiple clips at once using LiveAPI

You could start transport with an API call and afterwards trigger the clips sequentially.
Then all clips will start in sync at the next quantization point.

That would be a workaround but then clips would be recorded with a 1-bar offset (or the quantization setting) in relation to the other clips ...
by yannxou
Wed Jul 03, 2013 8:17 am
Forum: Max For Live
Topic: Fire multiple clips at once using LiveAPI
Replies: 5
Views: 1828

Re: Fire multiple clips at once using LiveAPI

workaround would be to not stop the transport, but stop the clips instead.

then when you need to trigger the clips you trigger them sequentially, then set the transport to the beginning and you'll have the sync.

mmh, thanks for your idea but cannot use in my case because I want to trigger the ...
by yannxou
Tue Jul 02, 2013 9:01 pm
Forum: Max For Live
Topic: Fire multiple clips at once using LiveAPI
Replies: 5
Views: 1828

Fire multiple clips at once using LiveAPI

Is there a way to fire multiple clips at the same time using Javascript with the LiveAPI?

I've tried firing some clips inside a 'for' iterator but sometimes they fire separately. For example, the following code:
var api = new LiveAPI();
for (var i = 0; i < 5; i++) {
api.path = "live_set tracks ...
by yannxou
Sun Feb 26, 2012 8:05 pm
Forum: Ableton Live
Topic: don't worry, dubstep is now officially dead
Replies: 111
Views: 27335

Re: don't worry, dubstep is now officially dead

In response to this post title... don't worry about dubstep, here's the next level:

http://www.youtube.com/watch?v=fxw1HTg2lhA&noredirect=1

:mrgreen:
by yannxou
Sun Oct 23, 2011 10:31 am
Forum: Feature Wishlist
Topic: Fully Support Lion Fullscreen
Replies: 5
Views: 2033

Re: Fully Support Lion Fullscreen

I totally agree that Lion's fullscreen mode sucks.. If you have multiple monitors probably you've noticed that the second monitor is totally useless while in fullscreen...
I hope Ableton stays with the old fullscreen mode until Apple resolves some concept issues there...
by yannxou
Sat Oct 08, 2011 10:34 am
Forum: Feature Wishlist
Topic: Clip management improvements
Replies: 1
Views: 922

Clip management improvements

Here are some features I'd like to see in future versions regarding clip management:

1. Option to Consolidate clips from the Session View (via right-click menu).

2. Option to export (render) multiple clips at once (via the File->Export menu or right-click menu)

3. Support for drag&drop clips to a ...
by yannxou
Sun Apr 03, 2011 8:20 pm
Forum: Feature Wishlist
Topic: scrub to absolute song position
Replies: 4
Views: 1736

Re: scrub to absolute song position

8O Should I change the post title to 'scrub to absolute song position using LiveAPI'? :wink:
by yannxou
Fri Apr 01, 2011 9:37 am
Forum: Feature Wishlist
Topic: scrub to absolute song position
Replies: 4
Views: 1736

Re: scrub to absolute song position

What do you mean with the transport controls?

According the Live Object Model there's no function like this:
http://cycling74.com/docs/max5/refpages/m4l-ref/m4l_live_object_model.html

I mean something like:
live_set.song.scrub_to(absolute_position_in_beats)
or
live_set.song.scrub_to(absolute ...
by yannxou
Thu Mar 31, 2011 11:29 pm
Forum: Feature Wishlist
Topic: scrub to absolute song position
Replies: 4
Views: 1736

scrub to absolute song position

It would be great to have a 'scrub_to' function in the LiveAPI.

Right now the 'live_set' only has a 'scrub_by' function which takes a time relative to the current position. I miss a function like 'scrub_to' that allows to jump to an absolute song position while playing without losing the tempo ...