Show tempo Bpm in Canvas

I’d like to be able to display the song’s BPM in Canvas mode, can you help me please? Congratulations on your work, it’s incredibly useful!

Thanks!

1 Like

Hey @Lenny_l_MUSIC, welcome to the forum!

I just translated your post to English so others with similar questions can find it more easily — feel free to post in English going forward so everyone in the community can join in!

Displaying the tempo in Canvas is totally straightforward. Just add a Label element and set its value to this template:

${osc("/global/tempo") ?? ""} BPM

This reads the current tempo from AbleSet in real time and appends " BPM" to it. It updates automatically whenever the tempo changes between songs.

You can also see this in action in the official tutorial: https://youtu.be/pRs1kQAUBzU?t=203

Hope that helps!

1 Like

Thanks my Friend :raising_hands:t5::raising_hands:t5: