The Song API lets you start/stop playback, set tempo, and jump to cue points using OSC messages
AbletonOSC’s Song API wraps Live’s top-level transport and session management. The most commonly-used commands for AV rigs are: /live/song/start_playing, /live/song/stop_playing, /live/song/set/tempo
Examples
Set tempo and start: send /live/song/set/tempo 128.0, then /live/song/start_playing. Read tempo back: /live/song/get/tempo → (128.0,). Stop: /live/song/stop_playing. Jump to a cue point by index: /live/song/cue_point/jump 2.
Assessment
Write the OSC messages to (1) set tempo to 140 BPM, (2) start playback, and (3) read the current tempo back. On which port does the tempo reply arrive?