max4.live

a better search for max devices
atk.scsync screenshot

atk.scsync

by ATK

Utility to sync SuperCollider to Ableton Live over OpenObjec...

View on maxforlive.com

Type
Audio Effect
Author
ATK
Version
1.0
License
AttributionNonCommercialShareAlike
Live version
8.4.1
Max version
5.1.9
Downloads
262
Updated
2013-06-10

Description

Utility to sync SuperCollider to Ableton Live over OpenObject. For more information check the OpenObject example files, which contain this code:

/*

Syncing SuperCollider to Ableton Live.

The atk.scsync max4live device has to be installed correctly, no way to do it without max4live.

Network setup is handled automatically by OpenObject.

Basically we're just sending incremental timing messages from the Live transport, it's just a bit of glue between OpenObject and AudioMulchClock

*/

// You need these Quarks

// OpenObject for easy OSC communication

Quarks.install("OpenObject");

// This will provide us with the network clock over OSC

Quarks.install("AudioMulchClock");

c = AudioMulchClock.new; // this is your clock

c.shift = -3; //latency compensation, adjust;

OpenObject.start;

Pbind.play(c);

← Back to search