<>
+ Reply to Thread
Results 1 to 9 of 9
-
Bob the video then and count the number of unique pictures per second during movement.
http://www.afterdawn.com/guides/archive/digital_video_fundamentals-ivtc.cfm -
Just count the number of duplicate frames per second and remove them.
You said all your sources are 59.94fps. The most likely number of dupes in a second (usually containing 60 frames) are:
zero: keep it at 59.94fps
thirty: remove every other frame (SelectEven/Odd) to make it 29.97fps.
thirty-six: SelectEven.TDecimate to make it 23.976fps.
If it's a movie, by definition it wasn't shot on video but on film, and it'll be 23.976fps. -
In your case you have:
Code:00111223334455566777
TDecimate(mode=0,cycle=5,cycleR=3) frist breaks it down into 5 frame groups:
Code:00111 22333 44555 66777
Code:01 23 45 67
Code:01234567
Code:0 1 1 2 3 4 5 5 6 7
Code:01123 45567
Code:0123 4567
Code:01234567
By the way, with progressive frames you just need to count the duplicates, no need to bob first.Last edited by jagabo; 2nd Mar 2013 at 13:20.
Similar Threads
-
How to convert Commercial DVD to Progressive with Avisynth & keep framerate
By VideoFanatic in forum RestorationReplies: 5Last Post: 22nd Nov 2012, 14:38 -
MeGUI Couldn't Determine Source Type
By mike81 in forum Video ConversionReplies: 0Last Post: 18th Dec 2009, 19:31 -
how to determine framerate of subtitle?
By pike8 in forum SubtitleReplies: 6Last Post: 7th Aug 2009, 23:06 -
Is there any program out there that can determine source settings?
By steve003 in forum Newbie / General discussionsReplies: 1Last Post: 5th Mar 2009, 12:53 -
How do I determine the framerate of an FLV file??
By lurky in forum Video ConversionReplies: 2Last Post: 13th Aug 2008, 00:13