I have an MPEG2 file that i want to remove all the duplicate frames from a bad PAL to NTSC conversion (the form in which i got it as)
0=original frame
D=duplicate frame
0000D0000D0000D0000D0000D0000D
catch my drift?
I would rather not sit with virtual dub mod and go trough all two hours of frames and delete them all, convert to AVI, and then back to MPEG
Any help? ehhhhhhh????
+ Reply to Thread
Results 1 to 2 of 2
-
-
It's not PAL.
It's 23,976 progressive, gone through hard telecine.
Then field matched back to progressive.
What you need is to decimate.
Use avisynth. index mpeg2 in dgindex (look them up)
Code:LoadPlugin("C:\Program Files\AviSynth 2.5\dgdecode.dll") mpeg2Source("video.d2v") selectrangeevery(5,4)
decimate(5)
instead of the internal selectrangeevery()
feed your mpeg2 encoder
gl
Similar Threads
-
Frame rate conversion for NTSC to PAL conversion?
By Trellis in forum EditingReplies: 33Last Post: 27th Jul 2010, 09:55 -
NTSC video with a film-like/PAL to NTSC conversion type of look that shouldn't
By Bix in forum RestorationReplies: 34Last Post: 8th Feb 2010, 15:17 -
PAL to NTSC, NTSC to PAL framerate conversion?
By Baldrick in forum Video ConversionReplies: 44Last Post: 5th Dec 2009, 23:31 -
NTSC to PAL, PAL to NTSC framerate conversion?
By Baldrick in forum Video ConversionReplies: 23Last Post: 23rd Apr 2008, 11:19 -
Bad NTSC to PAL converstion - jerkiness. How to fix?
By PTRACER in forum Video ConversionReplies: 34Last Post: 11th Sep 2007, 17:00