while writing up the clock transport part of the seamstress grid study, i noticed that Link had some unexpected behavior w/r/t beat counts and transport messages. hopefully the video + repro case captures what I'm seeing, but please let me know if anything's opaque!!
seamstress build 0.25.6
running w/ Ableton Live 11.3.12
macOS 13.5.2
test script
function init()
params:set("clock_source", 3) -- 3: set to link, 2: set to MIDI, 1: set to internal
end
function clock.transport.start()
print("starting clock!", clock.get_beats())
run_me = clock.run(function()
while true do
clock.sync(1)
print("beat", clock.get_beats())
end
end)
end
function clock.transport.stop()
clock.cancel(run_me)
print("stopping clock!", clock.get_beats())
end
expected behavior
when using MIDI transport + clock from Live with the above script, pressing 'play' in Live results in:
this seems the spot where Link quantum could come in handy -- to be able to specify, in seamstress, when to 'actually' start.
pressing 'stop' in Live results in a delayed call to clock.transport.stop(), fixed to 1 bar. changing the global launch quantization doesn't seem to affect this timing.
hiiiii :) hope all's well!
while writing up the clock transport part of the seamstress grid study, i noticed that Link had some unexpected behavior w/r/t beat counts and transport messages. hopefully the video + repro case captures what I'm seeing, but please let me know if anything's opaque!!
test script
expected behavior
when using MIDI transport + clock from Live with the above script, pressing 'play' in Live results in:
pressing 'stop' in Live results in an immediate call to
clock.transport.stop()
experienced behavior
vid here: https://vimeo.com/875665345/ebb57fd102
when using Link with
1 Bar
global launch quantization and the test script, pressing 'play' in Live results in:this seems the spot where Link quantum could come in handy -- to be able to specify, in seamstress, when to 'actually' start.
pressing 'stop' in Live results in a delayed call to
clock.transport.stop()
, fixed to 1 bar. changing the global launch quantization doesn't seem to affect this timing.thank you thank you thank you!