vote up 2 vote down star
2

I'm looking for a function that converts an integer value in frames to NTSC Drop Frame Timecode (hh:mm:ss.ff).

I'm using Delphi, but could be in any language.

Thanks

flag

60% accept rate

1 Answer

vote up 3 vote down
function FramesToNTSCDropFrameCode(Frames:Integer;FramesPerSecond:Double):string;
var
  iTH, iTM, iTS, iTF : word;
  MinCount, MFrameCount : word;
begin
  DivMod( Frames, Trunc(SecsPerMin * FramesPerSecond), MinCount, MFrameCount );
  DivMod( MinCount, MinsPerHour, iTH, iTM );
  DivMod( MFrameCount, Trunc(FramesPerSecond), ITS, ITF );
  Result := Format('%.2d:%.2d:%.2d.%.2d',[iTH,iTM,iTS,iTF]);
end;

You will need to copy the DivMod routine from the SysUtils unit, and also include the sysUtils unit in whatever implements this function.

link|flag
1  
+1, but IMO the format string should be '%.2d:%.2d:%.2d.%.2d' - removing the first three digits because they are not necessary, and adding the last one because otherwise single digit frames in a second are not formatted correctly. – mghie May 15 at 17:39
Corrected, Originally I had left the last digit open for formatting to handle larger framespersecond... which in retrospect is unlikely. – skamradt May 15 at 17:57
NTSC Drop Frame Timecode is 29.97 fps, but you code only accepts fps as integer, so I don't think it's right. – Erick Sasse May 15 at 18:26
Updated and corrected. I thought NTSC drop frame timecode was 30 fps. – skamradt May 15 at 19:01
It's still not right, because drop frame requires you to drop 2 frames per minute except the tenth minute. – Erick Sasse Jul 29 at 14:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.