I have a set of VRO files to which I need to do two things:
1. Deinterlace them
2. Convert them to .avi
(not necessarily in that order). I've seen a lot of different options on this site and elsewhere, but I need some recommendations. What is the absolutely best way to deinterlace a VRO file and convert it to .avi? Processing time is not an issue. I just want the best de-interlaced image quality I can possibly get for a .avi file.
Thanks.
+ Reply to Thread
Results 1 to 9 of 9
-
-
If it's true interlaced material use DgIndex to build an index file and demux the audio. Use AviSynth (AVS file) to open the index file. Use QTGMC() to deinterlace. Open the AVS file in VirtualDub. Add the audio file. Encode with the codec of your choice (x264vfw?).
Mpeg2Source("filename.d2v", CPU=6) #deblock and dering
QTGMC() #deinterlace, double frame rate
SelectEven() #if you want 30 fps instead of 60 fps
Mpeg2Source("filename.d2v", CPU=2) #deblock Y channel
TFM() #deinterlace, 30 fps
TDecimate() #throw away duplicate frames to make 24 fps -
-
Live sporting events, and news are usually interlaced. Movies are usually telecined film. Where are you located? I assumed NTSC (USA, Canada, Japan) above. The procedure for film is a little different for PAL video. Cartoons and anime can add further complications.
-
-
Open a VRO file with VirtualDub. Add the Bob Doubler filter. Step through a motion sequence frame by frame with the arrow keys. If every field looks different you have interlaced video. If you see a pattern 2 identical frames followed by 3 identical frames, repeating over and over, you have telecined film.
-
I tried and got the error message
MPEG Import Filter: invalid pack at position 3: marker bit not set; possibly MPEG-2 stream
Every field looks different, so I guess I have interlaced video. I'm not familiar with AviSynth. I'm willing to learn, but just out of curiosity, why is this a better method than using, say, VirtualDub, Freemake or Avidemux to do the interlacing? -
The best deinterlacers are only available in AviSynth. The TempGaussMC and McBob variants. They're very slow though. Currently I think QTGMC is the best and it has presets to make it easier to use:
http://forum.doom9.org/showthread.php?t=156028
Some comparisons:
https://forum.videohelp.com/threads/292642-Deinterlacing-Tips-and-Good-news-that-i-foun...=1#post1784755 -
Another older comparison (right click and "save as")
https://forum.videohelp.com/images/guides/p1934885/stockholma_0-520_q3_yadif_mvbobmod_t...mca4_tdtmm.avi
Similar Threads
-
VRO Files
By bz186 in forum SVCD2DVD & VOB2MPGReplies: 11Last Post: 3rd May 2010, 10:11 -
Suddenly can't convert VRO to DVD video
By johnsees in forum Newbie / General discussionsReplies: 1Last Post: 1st Aug 2008, 23:30 -
Need to convert VRO to .avi and/or MP4 using a Macintosh computer
By MacPCConsultants in forum Video ConversionReplies: 0Last Post: 17th Mar 2008, 20:09 -
how do you convert a vob file into a vro file?
By johnsteed in forum Video ConversionReplies: 29Last Post: 13th Sep 2007, 07:12 -
How do i convert VRO to Avi or MPEG ?
By CoffeehouseSchmuck in forum Newbie / General discussionsReplies: 7Last Post: 10th Sep 2007, 13:56