Hi everyone,
Im very new to AviSynth and QTGMC, and I have been trying to deinterlace some old childhood DVD Rips (Hot Wheels World Race and AcceleRacers Animated Movies from 2003-2006).
Originally I used handbrake but after hearing about QTGMC I decided to give it a try in hopes of achieving less picture damage and just better results in general. I found and followed this tutorial https://youtu.be/C4PyyQoz6eo?si=Apt-6JNHuR3g0ECL.
My process has been ISO > MakeMKV > run script on MKV file using AvsPMod
Script
SetFilterMTMode ("QTGMC", 2)
FFMPEGSource2("AcceleRacers 2.5 [Ice Realm].mkv", atrack=1)
AssumeTFF()
QTGMC(preset="Slower", EdiThreads=3)
Prefetch(10)
when viewing the preview I see repeating frames that jump back and forth throughout the video. I'm not sure what could be causing this, for reference, here is the mediainfo on the MKV file I am working with.
[Attachment 75560 - Click to enlarge]
Here is the problematic video https://drive.google.com/file/d/1k3L2Fa7SJiV5ZwVNpYlwikRbzCmL4Tkt/view?usp=sharing.
and here is the original mkv from makemkv https://drive.google.com/file/d/1pr9cJYBrNkHOeACvroRoK9A1kDPJzZim/view?usp=sharing.
EDIT: These are my export settings within virtualdub2
[Attachment 75573 - Click to enlarge]
[Attachment 75574 - Click to enlarge]
Something is going wrong and I cant figure out what it might be, I'll be happy to provide any additional details that may help.
Any help would be super appreciated, thank you!!
+ Reply to Thread
Results 1 to 20 of 20
-
Last edited by expo_; 17th Dec 2023 at 07:27. Reason: Changed video references from youtube links to google drive links & added details
-
If you have jumping backandforth frames, it could be that your DVD is bottom field first. Try BFF instead of TFF.
Otherwise, please post the original MKV here as an attachment (max 500mb) or host it on a file sharing site such as Google Drive, Dropbox. YT re-encodes it's video so it becomes much more difficult to diagnose/suggest fixes with backed-in errors. -
Just updated the post to include a google drive link to the original MakeMKV Rip. If there is anything else I can add lmk.
Also, I gave BFF a try.. no luck. When using TFF, everything after the intro was alright, but now with BFF the entire thing is jumping back and forth same as the intro.
EDIT: After closer examination, the jumping is present throughout the entire video, not just in the intro.Last edited by expo_; 17th Dec 2023 at 07:30.
-
It is telecined and should therefore be Inverse-Telecined:
Code:LWLibavVideoSource("AcceleRacers 2.5 [Ice Realm].mkv") assumeTFF() tfm().tdecimate()
Last edited by Sharc; 17th Dec 2023 at 08:37. Reason: AR 16:9
-
It is not an interlaced source
edit: Sharc arrived first! -
Originally Posted by Lollo
-
Telecine looks like interlaced as it uses interlacing technology, but it is not the same as true interlacing. You see a repetitive sequence of N clean frames followed by M combed frames.
https://en.wikipedia.org/wiki/Three-two_pull_down -
There's what looks like heavy interlacing at frame 178, which is largely cleared by Double Rate deinterlacing. I also see Sharc "assumes TFF". Does that not indicate the file is interlaced? Could you explain?
Is better to analyze the original untouched fields to understand the complete architecure.
Code:# plugins directory plugins_dir="C:\Users\giuse\Documents\VideoSoft\MPEG\AviSynth\extFilters\" # FFmpegSource loadPlugin(plugins_dir + "ffms2_87bae19\x86\ffms2.dll") video_org=FFmpegSource2("AcceleRacers 2.5 [Ice Realm].mkv", atrack=-1) # separate fields tff video_org_sep_tff=video_org.showFrameNumber().AssumeTFF().separateFields() # to check if progressive or interlaced return(video_org_sep_tff)
-
-
Tysm! One final question about it all, there are pal releases of the films.
Would it be better to get ahold of those PAL discs which are in original 25 fps progressive and I assume had been telecined to meet ntsc's 29.97fps?Last edited by expo_; 18th Dec 2023 at 01:20.
-
-
you can Inverse Telecine in Vdub2 using its IVTC filter:
My VDub attempt:
[Attachment 75593 - Click to enlarge]
Your AVISynth (ignoring aspect ratio):
[Attachment 75594 - Click to enlarge]Last edited by Alwyn; 18th Dec 2023 at 02:34. Reason: Images added.
-
Avisynth's TIVTC deinterlaces orphaned fields (those for which no match is found) by default. Study its options for TFM() and TDecimate() for best results. Usually the defaults are fine though.
http://avisynth.nl/index.php/TIVTC/TFM
The patterns of Anime are often more tricky to analyze than "natural" footage.Last edited by Sharc; 18th Dec 2023 at 02:54.
-
Thank you all for helping, I really appreciate it.
Is there any way to export audio along with the video using LWLibavVideoSource? With QTGMC I was able to put ",atrack=1" after the input files name. I can add the track in seperately after everything using MKVToolNix, but its another step. -
-
If you output the audio with Avisynth it has to be re-encoded, whereas MKVToolNix doesn't re-encode.
There's two functions here that do much the same thing as FFMPEGSource2 (combining the video and audio from FFVideoSource and FFAudioSource). Most versions of FFMS2 can also use FFMS2("source file.mkv") as a function instead of FFMPEGSource2.
One of these functions is for LSMASHVideoSource / LSMASHAudioSource and the other is for LWLibavVideoSource / LWLibavAudioSource.
http://avisynth.nl/index.php/LSMASHSource#Examples
Copy the text and paste it into a text editor, then save each one with an avsi extension and put them in the Avisynth plugins folder. The function names are LSmashSource2 and LibavSource2.Last edited by hello_hello; 18th Dec 2023 at 04:19.
Avisynth functions Resize8 Mod - Audio Speed/Meter/Wave - FixBlend.zip - Position.zip
Avisynth/VapourSynth functions CropResize - FrostyBorders - CPreview (Cropping Preview)
Similar Threads
-
Where to those 'QTGMC' versions of early 2000s movies come from?
By respot5 in forum DVD RippingReplies: 12Last Post: 5th May 2023, 18:44 -
AviSynth Script for Only Deinterlacing Combed Lines (MeGUI)
By AOmundson in forum Video ConversionReplies: 9Last Post: 15th Mar 2021, 14:04 -
Best AVISynth+ settings for deinterlacing these DVDs?
By Xandros in forum Video ConversionReplies: 2Last Post: 15th Jun 2020, 03:34 -
JVC - S-Video Input - 2000s DVD VCR Combo Unit
By KarMa in forum Capturing and VCRReplies: 3Last Post: 10th Mar 2019, 07:56 -
Encoding, Deinterlacing, and Denoising with AviSynth+
By SamFinisher in forum Newbie / General discussionsReplies: 14Last Post: 26th Jan 2019, 23:05