Question
Comp.displayStartTime - inconsistencies between seconds and hh:mm:ss:ff
I've got a Comp with a start time of 1:00:03:20 / fps 23.976 (according to the Composition Settings dialog box)
Extendscript's Comp.displayStartTime property shows that in seconds as 3607.4772689356
Per my calc 1:00:03:20 at 23.976 converts to 3603.834167500834
Calc would be (from H:M:S:F of 1:00:03:20)
H=1;
M=0;
S=3;
F=20;
SecondsShouldBe=(H*60*60) + (M*60) + S + (F/23.976); //3603.834167500834
That's a discrepancy of over 3 1/2 secs.
Am I misunderstanding something?
