Customizable Timecode Element (LTC Display plugin)

Hi, I’d love to see an option for the Timecode element to individually show or hide the hours, minutes, seconds, and frames fields.

As far as I understand, this isn’t currently possible.

Being able to customize the display would make the plugin much more flexible when the other fields aren’t needed.

Hey @Tabora, you could achieve this with a Label element using a template. For example, to display only hours, minutes, and seconds, you’d use:

${osc("/timecode/tc")?.slice(0, 8) ?? "--:--:--"}

Or to only display minutes and seconds, use:

${osc("/timecode/tc")?.slice(3, 8) ?? "--:--"}

Let me know if this helps! :slight_smile:

1 Like