I tried and then I cried. I've had (another) crack at getting QTGMC up and running but have failed and I would be grateful for any help you can give me.
I'm on a Win 10 machine, and I've been following Andrew's Blog guide
I got AVISynth (linked from his blog) from here: https://github.com/AviSynth/AviSynthPlus/releases
I tripped up badly on the various NNEDI3 versions and the FFTW files into Sys32 and WOW64, but have eventually got AVISynth installed and working.
For 64 bit, the infotool shows this (the 32 bit report shows no issues at all):
I have no idea how to correct the two errors.[OS/Hardware info]
Operating system: Windows 10 (x64) (Build 19042)
CPU: Intel(R) Core(TM) i5 CPU 750 @ 2.67GHz / Skylake (Core i5)
MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2
4 physical cores / 4 logical cores
[Avisynth info]
VersionString: AviSynth+ 3.7.0 (r3382, 3.7, x86_64)
VersionNumber: 2.60
File / Product version: 3.7.0.0 / 3.7.0.0
Interface Version: 8
Multi-threading support: Yes
Avisynth.dll location: C:\WINDOWS\SYSTEM32\avisynth.dll
Avisynth.dll time stamp: 2021-01-11, 08:47:06 (UTC)
PluginDir2_5 (HKLM, x64): C:\Program Files (x86)\AviSynth+\plugins64
PluginDir+ (HKLM, x64): C:\Program Files (x86)\AviSynth+\plugins64+
[C++ 2.6 Plugins (64 Bit)]
C:\Program Files (x86)\AviSynth+\plugins64+\ConvertStacked.dll [2021-01-11]
C:\Program Files (x86)\AviSynth+\plugins64+\DePan.dll [2.13.1.6]
C:\Program Files (x86)\AviSynth+\plugins64+\DePanEstimate.dll [2.10.0.4]
C:\Program Files (x86)\AviSynth+\plugins64+\DirectShowSource.dll [2021-01-11]
C:\Program Files (x86)\AviSynth+\plugins64+\ffms2.dll [2020-08-22]
C:\Program Files (x86)\AviSynth+\plugins64+\ImageSeq.dll [2021-01-11]
C:\Program Files (x86)\AviSynth+\plugins64+\LSMASHSource.dll [2021-04-23]
C:\Program Files (x86)\AviSynth+\plugins64+\masktools2.dll [2.2.26.0]
C:\Program Files (x86)\AviSynth+\plugins64+\mvtools2.dll [2.7.45.0]
C:\Program Files (x86)\AviSynth+\plugins64+\nnedi3.dll [0.9.4.58]
C:\Program Files (x86)\AviSynth+\plugins64+\RgTools.dll [1.2.0.0]
C:\Program Files (x86)\AviSynth+\plugins64+\Shibatch.dll [2021-01-11]
C:\Program Files (x86)\AviSynth+\plugins64+\TimeStretch.dll [2021-01-11]
C:\Program Files (x86)\AviSynth+\plugins64+\VDubFilter.dll [2021-01-11]
[Scripts (AVSI)]
C:\Program Files (x86)\AviSynth+\plugins64+\colors_rgb.avsi [2021-01-11]
C:\Program Files (x86)\AviSynth+\plugins64+\QTGMC.avsi [2021-06-26]
C:\Program Files (x86)\AviSynth+\plugins64+\Zs_RF_Shared.avsi [2021-06-26]
[Uncategorized files]
C:\Program Files (x86)\AviSynth+\plugins64+\colors_rgb.txt [2021-01-11]
[Plugin errors/warnings]
__________________________________________________ ______________________________
Function duplicates:
"undefined" : "[InternalFunction]"
"Undefined" : "C:\Program Files (x86)\AviSynth+\plugins64+\Zs_RF_Shared.avsi"
My plugins 64+ folder looks like this:
[Attachment 59587 - Click to enlarge]
I can open a video in VDub using a simple "AVISource=" command with no problems.
But when I try to open a video with QTGMC with this:
I get varying error messages from VDub, as follows:Code:AviSource("710USB Kempsey.avi") QTGMC(Preset="Fast") SelectEven()
VDub 1.10.4:
[Attachment 59588 - Click to enlarge]
VDub 2 32bit:
[Attachment 59589 - Click to enlarge]
and VDub 2 64bit:
[Attachment 59590 - Click to enlarge]
Any help will be greatly appreciated.
Thanks, Al
+ Reply to Thread
Results 1 to 11 of 11
-
-
Seeing that you use 64bit Avisynth you need to use 64bit VirtualDub(2).
The problem you encounter happens since you try to feed QTGMC with content that uses a color space which QTGMC does not support, adding:
Code:ConvertToYV24(interlaced=true, matrix="XXX")
- "Rec601" : Uses Rec.601 coefficients; scale full range [0d..255d] RGB ↔ TV range [16d..235d] YUV.
- "Rec709" : Uses Rec.709 (HD) coefficients; scale full range RGB ↔ TV range YUV.
- "Rec2020" : Uses Rec.2020 (UHD) coefficients; scale full range RGB ↔ TV range YUV. AVS+
- "PC.601" : Uses Rec.601 coefficients; keep range unchanged.
- "PC.709" : Uses Rec.709 (HD) coefficients; keep range unchanged.
before the QTGMC call should help.
Cu Selurusers currently on my ignore list: deadrats, Stears555, marcorocchini -
Selur, success! Thanks very much, that worked.
A question on that though, I have been capturing my VHS in YUY2 (Lagarith). Should I perhaps be capturing in some other colour format (it appears that Lagarith can only capture up to YV16?).
Do you have any thoughts on my two AVISynthInfo Tool errors:
[Plugin errors/warnings]
__________________________________________________ ______________________________
Function duplicates:
"undefined" : "[InternalFunction]"
"Undefined" : "C:\Program Files (x86)\AviSynth+\plugins64+\Zs_RF_Shared.avsi" -
"undefined" : "[InternalFunction]"
"Undefined" : "C:\Program Files (x86)\AviSynth+\plugins64+\Zs_RF_Shared.avsi"
Cu Selurusers currently on my ignore list: deadrats, Stears555, marcorocchini -
A question on that though, I have been capturing my VHS in YUY2 (Lagarith). Should I perhaps be capturing in some other colour format (it appears that Lagarith can only capture up to YV16?).
-
If you don't see any difference, then maybe your original video was not interlaced at all?
How shall we know if we don't see your video before and after filtering, so we can't compare? -
Do you have any sample video which is interlaced so i can give try in my system.
-
Similar Threads
-
Qtgmc-GUI. A simple encoder for your Qtgmc scripts.
By ProWo in forum Video ConversionReplies: 17Last Post: 4th Mar 2023, 02:01 -
TMPGEnc VMW 5 projects won't open.
By MacGyver59 in forum Newbie / General discussionsReplies: 7Last Post: 31st Mar 2021, 05:10 -
MP4 file won't open, not much in MediaInfo
By koberulz in forum Newbie / General discussionsReplies: 13Last Post: 7th Jul 2018, 08:42 -
Philips DVP 5990/37 tray won't open with disc inside--won't play
By Ealdric-1379 in forum DVD & Blu-ray PlayersReplies: 3Last Post: 27th Nov 2016, 17:27 -
Vegas pro 14(Portable) won't open
By kwanami in forum EditingReplies: 2Last Post: 2nd Nov 2016, 05:17