How to convert a timecode to seconds?

((Tim1 * 60) * 60) + (Min1 * 60) + Sek1

Or:

(Tim1 * 3600) + (Min1 * 60) + Sek1
1 Like