I have an NTSC 29.97fps PROGRESSIVE clip, and I'd like to convert that to 23.976fps without losing audio sync. Basically, I want delete 1 frame out of every 5, just as you would with a pulldown. I tried using tdecimate() (without tfm()) but it resulted in slightly jerky video. Any suggestions?
+ Reply to Thread
Results 1 to 5 of 5
-
-
What did you expect? That's what happens when you throw out every 5th frame.
You can try using motion interpolation but it doesn't work well with complex motions. For example:
Code:#requires MVTools function SmoothFPS(clip source, int num, int den) { super = MSuper(source, pel=2, hpad=0, vpad=0, rfilter=4) backward_1 = MAnalyse(super, chroma=false, isb=true, blksize=16, searchparam=3, plevel=0, search=3, badrange=(-24)) forward_1 = MAnalyse(super, chroma=false, isb=false, blksize=16, searchparam=3, plevel=0, search=3, badrange=(-24)) backward_2 = MRecalculate(super, chroma=false, backward_1, blksize=8, searchparam=1, search=3) forward_2 = MRecalculate(super, chroma=false, forward_1, blksize=8, searchparam=1, search=3) backward_3 = MRecalculate(super, chroma=false, backward_2, blksize=4, searchparam=0, search=3) forward_3 = MRecalculate(super, chroma=false, forward_2, blksize=4, searchparam=0, search=3) MBlockFps(source, super, backward_3, forward_3, num, den, mode=0) } WhateverSource(...) SmoothFPS(24000,1001)
30p.avi (xvid) is a 24p source I sped up to 30p using AssumeFPS(30000,1001)
decimate.avi is a simple decimation of 30p to 24p using SelectEvery(5,0,1,2,3)
smoothfps.avi is 24p using the above scriptLast edited by jagabo; 4th Apr 2012 at 21:11.
-
Any reason you want to do that?You won't get any good results doing that anyway.
I think,therefore i am a hamster. -
I only want go from 30fps to 24fps so that there is more quality per frame. At 24fps, the quality/frame is 25% greater than at 30fps for the same bitrate.
-
Similar Threads
-
24fps or 29.97fps ???
By RodNichols5 in forum Capturing and VCRReplies: 29Last Post: 27th May 2011, 17:26 -
Convert 30fps to 24fps skipping every 5th frame?
By DragonQ in forum EditingReplies: 7Last Post: 29th Jan 2011, 03:11 -
Authoring a 24FPS DVD
By mikeveli20 in forum Authoring (DVD)Replies: 8Last Post: 14th May 2010, 00:18 -
24fps file
By carlmart in forum Video ConversionReplies: 10Last Post: 14th Jul 2009, 05:24 -
25fps to 24fps
By manzico in forum ffmpegX general discussionReplies: 20Last Post: 7th Sep 2008, 22:33