Hello,
I am really new to this. I have a few video files which I think are from DVD format. The info I could find using apps like DGIndex and MediaInfo is:
I think that because the video is interlaced, when seeing it on some players, there are some lines that look fuzzy when movement. I know that some players can interlace on play, but I want to convert the files into mp4 or mkv to be able to remove the interlacing.Video
Stream Type: MPEG2 Program
Frame Size: 720x480
Aspect Ratio: 4:3 [2]
Frame Rate: 29.970039 fps
Video Type: NTSC
Sequence: Field/Frame
Frame Struct: Frame
Frame Type: Interlaced
Coding Type: P
Colorimetry: BT.470-2 B,G
Field Order: Top
Bitrate: 7806 Mbps
Format Settings: BVOP
Compression Mode: Lossy
GOP: Open
Audio
PCM 48k 16bit 2ch
Looking at Handbrake in Filters, I see that there are some options:
What would be the best set of option to use for converting into a more modern format, without too much loose in quality because of encoding.Deinterlace: Decomb
Preset: Default
Interlace decection: Default
For audio
1. Unknown LPCM (2.0ch)
Codec: AAC (avcodec)
Bitrate:160
Thank you for your time, I really appreciate it.
+ Reply to Thread
Results 1 to 12 of 12
-
Last edited by alinescoo; 4th Dec 2018 at 12:28.
-
MP4 is a container. It may even be able to contain MPEG-2 video, I guess; but that's not what you want.
You may want to convert to MPEG-4/AVC video (a.k.a. H.264). This supports interlacing, so one option is to retain this attribute. Playback on a modern flat screen TV set should be supported with good motion adaptive deinterlacing during display.
For playback on a PC, different converters support a variety of deinterlacers. Handbrake may not be one of the most versatile, though. And before we recommend you one, you really need to check your source whether it is really interlaced, or instead telecined: The latter can be converted back (almost losslessly) to an originally progressive content. That method is not at all related to "deinterlacing". But it also works only if your material is a result of a Telecine process. You need to test that. -
Thank you both for your info and time.
The video is taken from a video camera, the ones with tapes used a few years ago.
I've been searching around and it seems that the info from various tools isn't always right on Interlace/Telecine. I'll need to dig a bit deeper to see, but I think I need to extract frames and check the pattern they repeat. Isn't a simpler way to do inverse telecine on the video and see if the output is fine or not? -
The best deinterlacer is QTGMC() in AviSynth, by far. But that involves a very steep learning curve.
I've been searching around and it seems that the info from various tools isn't always right on Interlace/Telecine. I'll need to dig a bit deeper to see, but I think I need to extract frames and check the pattern they repeat. Isn't a simpler way to do inverse telecine on the video and see if the output is fine or not?
– then manually mark the “source type” as “interlaced”, check the “deinterlace” box and apply “Yadif (Bob)” (or any other “Bob” deinterlacer – “Bob” means, as far as I understand it, that each field will be interpolated as a complete frame, meaning that the total number of frames will be doubled), then click on “Preview AVS script”, which should reload the preview : now the total frame count should be doubled ;
– then if you examine the frames one by one with the “>” button (or the left/right keys), if your source is truly interlaced, they should all be different ; otherwise, you will see a pattern of repeated frames (which are actually repeated fields in the source).
It also means that if you use a filter like Yadif (without “Bob”) in Handbrake, it converts for instance 50 interlaced fields per second to 25 progressive frames per second, but loses a lot of motion information from the source (since each field is different). So ideally, deinterlacing should be done with a doubled framerate, “50i” should be converted to “50p”. QTGMC does that by default (although it does have the option of keeping only half of the interpolated frames). Once you've managed to install QTGMC properly, along with all its dependencies, you just need to replace the “Yadifmod2” line in the “Script” tab of the “Avisynth Script Creator” of MeGUI (damn that's a mouthful !) by “QTGMC()” to benefit from its superior deinterlacing quality. You can then tweak it a little, by choosing a slower preset if you want to further improve the quality of processing at the expense of speed, or a faster preset if using an older computer or if there are several such videos to convert and you have a deadline ; other tweaks are available but I couldn't tell much about them aside from what's in the manual, and that would fall outside of the scope of a quick startup guide...
(I hope I didn't say anything wrong, I'm not an expert in that “field” !)
-
-
Wow, very interesting info I find here. Thank you all.
@abolibibelot thank you for the detailed steps.
The video file is about 1 hour long, and the number of frames are 108223
After selecting Deinterlace Yadif (with Bob) and Preview AVS Script I get the number of frames as 216446, so double
Now the interesting fact, Previewing I get something like 10 frames different then 2 the same. It could be that some look like smaller number than 10, but in most cases I've previewed, it looks like 10 to 2.
I've seen that on some forums there are zip packages with all files needed for QTGMC (not sure if I can post the links here) but would that be a good idea to get started with it? -
I've seen that on some forums there are zip packages with all files needed for QTGMC (not sure if I can post the links here) but would that be a good idea to get started with it?
One of the first times I've seen QTGMC mentioned was in this thread, which contains a few samples comparing it with Yadif :
https://forum.videohelp.com/threads/354092-Converting-video-frame-rates
Yadif :
QTGMC :
Now the interesting fact, Previewing I get something like 10 frames different then 2 the same. It could be that some look like smaller number than 10, but in most cases I've previewed, it looks like 10 to 2. -
That's an unusual pattern. Do you see frames that look like double exposures? As was suggested, use DgIndex to demux a short sample which shows that pattern and upload it here.
That's been done here several times in these forums (finding the posts may be difficult). One problem you may have is that some of the filters are specifically for processors with SSE2 or SSE3. If you have an older processors without those features you'll still have to track down the versions you need. -
A package can be found here, for example. Maybe it helps.
http://forum.doom9.org/showpost.php?p=1806162&postcount=382
Similar Threads
-
Interlaced DVD to desinterlaced .mp4
By brokk in forum Video ConversionReplies: 67Last Post: 3rd May 2020, 15:05 -
Easiest free way to convert 25fps interlaced to 50fps de-interlaced?
By Gibson's Squares in forum MacReplies: 2Last Post: 25th Jul 2017, 08:06 -
Convert WMV to MP4: what tools are currently recommended?
By loninappleton in forum Video ConversionReplies: 3Last Post: 24th Jan 2016, 15:43 -
seeking advice using ffmpeg to convert mp4 to mpeg2 for PAL DVD
By hydra3333 in forum Video ConversionReplies: 10Last Post: 16th Jan 2015, 18:12 -
Ho to get a pure interlaced mp4 with ffmpeg?
By marcorocchini in forum Newbie / General discussionsReplies: 113Last Post: 27th Nov 2014, 17:25