Hi all,I have two script
AndCode:DirectShowSource("Videopath",fps=xx,convertfps=true)
Is will give me same result?Code:DirectShowSource("Videopath") ConvertFps(xx)
Thank you.
+ Reply to Thread
Results 1 to 2 of 2
-
-
No, they will not.
DirectShow's convertfps will convert a variable frame rate video to constant frame rate by duplicating the longer frames. So a video with 3 frames, one with 1/25 second duration, one with 4/25 seconds duration, and a third with 1/25 seconds duration will return you 6 frames at 25 fps. The first encoded frame will appear once, the second encoded frame will appear 4 times, and the third will appear once.
If you don't use DirectShow's convertfps, you will get three frames from the video, then ConvertFPS() will stretch that out to six frames. The first frame will appear twice, the second frame will appear twice and the third frame will appear twice. And ConvertFPS will use frame blending for the intermediate frames.
Similar Threads
-
Any decent way to convert higher fps movies to a lower 29.97 fps ? (or othe
By Jonz in forum Video ConversionReplies: 1Last Post: 5th Nov 2012, 02:01 -
ChangeFPS or ConvertFPS?
By agni451 in forum Video ConversionReplies: 5Last Post: 13th Jun 2012, 08:24 -
mixing 1280 x 720 29,97 fps and 1440 x 1080 25 fps in final cut
By perik in forum EditingReplies: 6Last Post: 17th Nov 2010, 22:42 -
1080p true hd to 720p true hd possible ?
By miss in forum Video ConversionReplies: 2Last Post: 16th Jul 2009, 21:48 -
Sync 29.970 FPS audio to 23.976 FPS video?
By LCO1971 in forum Newbie / General discussionsReplies: 3Last Post: 13th Sep 2008, 15:23