2015-07-01, 02:39 AM
(2015-06-28, 02:19 AM)spoRv Wrote: I think it's easier to use something like:
Code:avisource("filename.avi")
TDecimate(cycleR=1,cycle=16)
if this doesn't remove the right duplicate frame, but another one, you could make this:
Code:clip=avisource("filename.avi")
N=0
blk=BlankClip(length=N, width=clip.width, height=clip.height, fps=clip.framerate, color=$000000)
blk+clip
TDecimate(cycleR=1,cycle=16)
Of course you should give N the right number, to let the proper duplicate frame to be deleted.
Different path to get the same result!
I'm pretty sure TDecimate uses detection, so it will make no difference if you add a series of blank frames to the start of the video. The manual method takes away the detection aspect. This may not be needed in this case, but it is good to know how to do it because sometimes you'll come across sources that are best handled using a manual decimation method instead of relying on software detection.