Hi guys,
hope this is the right section to post.
I have an Avi file 29.970fps, if I load it into VirtualDub and check it frame by frame I see 3 "sharp" frames followed by 2 "blurred" frames.
I believe this is what is called 3:2 pulldown.
My goal is to get rid of it.
It seems it can be done via Avisynth or via VirtualDub but I don't know how exactly.
Can anyone help?
Thanks.
+ Reply to Thread
Results 1 to 23 of 23
-
-
Post a sample, 10 seconds or so showing steady motion. Since it's an AVI, all kinds of things could already have been done to it to prevent a simple IVTC from fixing it. It could have been resized stupidly or deinterlaced. There's no point in giving advice unless we know what we're dealing with.
-
I hope this is good:
https://rapidshare.com/files/3613937792/sample01.avi -
It was 3:2 pulldown. But it has been blend deinterlaced. Normal inverse telecine techniques won't work. But there is a filter for removing this type of blend deinterlacing;
http://avisynth.org/mediawiki/FixBlendIVTC
It works pretty well. FixBlendICTC().TDecimate():Last edited by jagabo; 20th Jun 2012 at 09:06.
-
Audio doesn't need to be modified (it's the same duration because you have 4/5 the frames and 4/5 the framerate)
-
The audio does not have to be modified. Two blended frames have been converted to one non-blended frame. Every group of five frames has become a group of four. 29.97 frames at 29.97 fps has the same running time as 23.976 frames at 23.976 fps. Play your original sample and my sample side by side. You'll see they have the same running time.
-
You are right.
Well, less work to be done!
Now I have to understand how to set up the script. -
I do something wrong.
I wrote two scripts:
FixBlendIVTC
LoadPlugin("C:\...\Average.dll")
LoadPlugin("C:\...\mt_masktools-25.dll")
LoadPlugin("C:\...\RemoveGrainSSE2.dll")
LoadPlugin("C:\...\Decomb.dll")
AVISource("D:\filename.avi")
Import("FixBlendIVTC.avs")
Telecide()
Decimate()
A little help? -
see jagabo's post (but there was a typo in "ICTC")
Code:AVISource() FixBlendIVTC() TDecimate()
-
And you don't use Telecide at all, only FixBlendIVTC() and Decimate() (or TDecimate).
-
Your script should look like:
LoadPlugin("C:\...\Average.dll")
LoadPlugin("C:\...\mt_masktools-25.dll")
LoadPlugin("C:\...\RemoveGrainSSE2.dll")
LoadPlugin("C:\...\Decomb.dll")
Import("C:\...\FixBlendIVTC.avs")
AVISource("D:\filename.avi")
FixBlendIVTC()
Decimate() -
Download it from the link (the top right hand corner)
http://avisynth.org/mediawiki/FixBlendIVTC -
I had already tried that but doesn't work, hence my question.
When I try to open the aviscript VirtualDub gives me an error
Avisynth open failure:
Import: couldn't open "C:\...\FixBlendIVTC.avs
(D:\...\aviscript.avs, line 5) -
are you sure the directory path is correct?
ie. you didn't actually use "..." , you used the actual directory path
post your full script script -
No, I didn't use ... but there was an error indeed.
Now it seems to work.
Last thing to understand is how to re-encode the avi losing as little quality as possible. -
Is the sample you uploaded representative of the actual source? Or did you just quickly re-encode it to make a small file for upload? If your source is Xvid, be sure to turn on Xvid's deblocking and deringing filters.
-
The sample is a small portion of the actual avi (Xvid).
I just tried to re-encode the file (before seeing the last post) but the estimated time was about 5 hours!
As for those filters, if they are in Video -> Compression -> Xvid MPEG-4 Codec -> Configure -> Other Options -> Decoder Tab, Postprocessing section, only Deblocking Y, Deblocking UV and Film Effect are selectable.
Deringing Y and Deringing UV are disabled. -
I made a test on a small portion of the file and it looks pretty good.
I'll work on it as soon as the summer ends, now it's too hot and I don't want to stress my pc with a 5 hours encoding.
Thanks to all who helped.
Similar Threads
-
2:4 Pulldown
By supervehicle in forum Video ConversionReplies: 23Last Post: 3rd May 2011, 16:53 -
Correct pulldown or not
By carlmart in forum Video ConversionReplies: 2Last Post: 1st Feb 2009, 19:25 -
A question about pulldown
By Talayero in forum DVD RippingReplies: 8Last Post: 7th Sep 2007, 12:37 -
3:2 pulldown?
By blizzery in forum Video ConversionReplies: 3Last Post: 24th Jul 2007, 06:38 -
Using pulldown
By MysticE in forum Video ConversionReplies: 2Last Post: 14th Jul 2007, 03:25