I've been doing everything through a command line with avisynth. I don't mind doing this for movies but for series it's very time consuming. I've seen tools like vapoursynth and hybrid but they looks cumbersome and I barely understand what I do in avisynth thus far. I'm still very much a novice. Is there any tool that is similar to handbrake but that offer gtgmc deinterlacing? Ideally I would like to set qtgmc deinterlacing and the quality of the deinterlacing, choose if it's double frame rate, and add the videos to a queue for rendering. I would like to do this through a GUI.
+ Reply to Thread
Results 1 to 13 of 13
-
-
Here's the thread about the QTGMC GUI:
https://forum.videohelp.com/threads/397026-Qtgmc-GUI-A-simple-encoder-for-your-Qtgmc-s...ts#post2582912
But I don't know how useful it might be. And I agree with PDR, if shot on film (movies and most TV series) the last thing you want to do is deinterlace them. Perhaps provide some short samples. -
Here is a short example. Should I use IVTC?
https://www.dropbox.com/s/xyv50182gcl4zw0/The%20Business%20Season%20One%20Episode%204%...ample.mkv?dl=0
I guess us IVTC when it's not interlaced every frame? What's the best way to tell the difference. Thanks for all the advice guys! -
-
Unfortunately no. It's from a fairly rare IFC comedy series called The Business. https://www.thetvdb.com/series/the-business Should I just use a smart deinterlacer like handbrake to identify interlaced frames?
-
You can deinterlace it if you want to, but there are other problems, such as blending, warping. It was resized and cropped while still interlaced, before removing pulldown. That's the main reason for those problems.
It will still probably look better with QTGMC than handbrake, but neither will fix those underlying problems -
You can restore that to the original film frames with:
Code:LWlibavVideoSource("The Business Season One Episode 4 example.mkv") AssumeTFF() AddBorders(0,0,0,2) # QTGMC requires mod 4 frame height QTGMC() Merge(SelectEven(), SelectOdd()) FixBlendIVTC() TDecimate() Crop(0,0,-0,-2) # restore original frame height
-
An alternative that's much faster but not as clean:
Code:LWlibavVideoSource("The Business Season One Episode 4 example.mkv") AssumeTFF() AddBorders(0,0,0,2) # QTGMC requires mod 4 frame height Interleave(TFM(field=0), TFM(field=1)) Merge(SelectEven(), SelectOdd()) FixBlendIVTC() TDecimate() Crop(0,0,-0,-2) # restore original frame height
-
Friend @jagabo how did you manage to run this avs script?
LWlibavVideoSource("The Business Season One Episode 4 example.mkv")
Assume TFF()
AddBorders(0,0,0,2) # QTGMC requires mod 4 frame height
QTGMC()
Merge(SelectEven(), SelectOdd())
FixBlendIVTC()
TDecimate()
Crop(0,0,-0,-2) # restore original frame height
I have Windows 10, I installed avisynth 2.60 + QTGMC plugins and QTGMC-3.32.avsi script to avisynth's plguin folder, and MEGUI is saying there is an error in QTGMC(): there is no function named "QTGMC()" ?
What am I doing wrong?
Att.
Druid®. -
I don't use megui but I understand it has its own private version of AviSynth. So all your plugins have to into that instead of the system installed AviSynth. From megui's base folder (c:\program files\megui ?) look for \tools\avisynth_plugin. You will also need all the other third party filters that QTGMC requires:
http://avisynth.nl/index.php/QTGMC#Core_Plugins_and_Scripts
You may even have to resort to manually importing QTGMC.avsi and all the support filters.
QTGMC is one of the hardest filters to get up and running. But once it's done you'll be glad you spent the time.
Similar Threads
-
Solved: Deinterlacing with QTGMC blends frames together
By PRAGMA in forum Newbie / General discussionsReplies: 6Last Post: 15th Apr 2023, 03:19 -
Qtgmc-GUI. A simple encoder for your Qtgmc scripts.
By ProWo in forum Video ConversionReplies: 17Last Post: 4th Mar 2023, 02:01 -
QTGMC motion artifacts/Deinterlacing help
By killerteengohan in forum RestorationReplies: 5Last Post: 2nd Apr 2020, 21:20 -
Deinterlacing Problem - QTGMC & NTSC Footage
By hickeyguy in forum Newbie / General discussionsReplies: 50Last Post: 8th Mar 2019, 11:41 -
QTGMC deinterlacing
By Katherine1 in forum RestorationReplies: 2Last Post: 10th Feb 2019, 10:02