Going to go from an .mpg to DV avi, using Virtualdub. I also anticipate using the Thalen Deshaker in Virtualdub and it seems the best results are gotten with deinterlaced video.
Any problems with deinterlacing going from mpg to .avi? Should I go to avi first and then deinterlace? Will it make any difference? Using the MainConcept DV codec.
Any advantage going to uncompressed as an intermediate step?
Thanks.
+ Reply to Thread
Results 1 to 3 of 3
-
-
You should use AviSynth to bob deinterlace with QTGMC(). Then deshake in VirtualDub. Finally reinterlace with VirtualDub for DV. Or you could do all the filtering in AviSynth:
Mpeg2Source("filename.d2v")
QTGMC()
mdata = DePanEstimate()
DePanStabilize(data=mdata)
SeparateFields()
SelectEvery(4,0,3)
Weave()
ConvertToYUY2(interlaced=true) -
DV AVI is interlaced, so de-interlacing is probably going to make things worse. If you go to Lagarith or Huffyuv in an AVI container you might get better results.
What will your final format be ? If it is not DV then I wouldn't go there at all. Use a lossless codec (again, lagarith or huffyuv) as your intermediate. Open the mpg in virtualdub directly, or through an avisynth script that does your deinterlacing for you. Reducing re-encoding to an absolute minimum.Read my blog here.
Similar Threads
-
Trimming AVI in virtualdub,direct strem copy ignores my start and end point
By Rudyard in forum EditingReplies: 4Last Post: 4th Oct 2010, 19:11 -
From Point & Shoot Digital Camera AVI to Xvid High Quality
By kamil in forum Video ConversionReplies: 5Last Post: 25th Jul 2009, 09:28 -
Power Point to AVI?
By stantheman1976 in forum Video ConversionReplies: 5Last Post: 6th Mar 2009, 11:45 -
AVI.NET---- What is and do I need to decomb/deinterlace?
By siratfus in forum Video ConversionReplies: 4Last Post: 4th Aug 2008, 00:09 -
Best point at which to Convert?? (NTSC AVI to PAL DVD)
By junk in forum Video ConversionReplies: 3Last Post: 28th Jun 2007, 16:15