tcframes(
TIMECODE
,
FRAMERATE
)

The tcframes( function returns a number of frames from zero of a 24fps, 25fps, or 30fps timecode.


Parameters

This function has two parameters:

timecode – text value containing timecode

framerate – integer value (usually 24, 25 or 30).


Description

Returns a number of frames from zero of a 24fps, 25fps, or 30fps timecode. This works for non-drop timecode only! (Submitted by Chris Watts.)

tcframes("00:34:10:12",24) ☞ 49212

Note: This function is equivalent to:

(val(array(timecode,1,":"))*60*60*framerate)+(val(array(timecode,2,":"))*60*framerate)+(val(array(timecode,3,":"))*framerate)+(val(array(timecode,4,":")))

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.