VideoHelp Forum
+ Reply to Thread
Results 1 to 11 of 11
Thread
  1. Member
    Join Date
    May 2005
    Location
    Australia-PAL Land
    Search Comp PM
    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):

    [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"
    I have no idea how to correct the two errors.

    My plugins 64+ folder looks like this:

    Image
    [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:

    Code:
    AviSource("710USB Kempsey.avi")
    QTGMC(Preset="Fast")
    SelectEven()
    I get varying error messages from VDub, as follows:

    VDub 1.10.4:
    Image
    [Attachment 59588 - Click to enlarge]


    VDub 2 32bit:
    Image
    [Attachment 59589 - Click to enlarge]


    and VDub 2 64bit:
    Image
    [Attachment 59590 - Click to enlarge]


    Any help will be greatly appreciated.

    Thanks, Al
    Quote Quote  
  2. 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")
    with XXX one of these:
    • "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.
    source: http://avisynth.nl/index.php/Convert

    before the QTGMC call should help.

    Cu Selur
    users currently on my ignore list: deadrats, Stears555
    Quote Quote  
  3. Member
    Join Date
    May 2005
    Location
    Australia-PAL Land
    Search Comp PM
    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"
    or can I ignore them (everything is running OK by the looks of it).
    Quote Quote  
  4. "undefined" : "[InternalFunction]"
    -> no clue
    "Undefined" : "C:\Program Files (x86)\AviSynth+\plugins64+\Zs_RF_Shared.avsi"
    File probably doesn't exist, probably should come from: https://github.com/realfinder/AVS-Stuff

    Cu Selur
    users currently on my ignore list: deadrats, Stears555
    Quote Quote  
  5. Member
    Join Date
    Aug 2013
    Location
    Central Germany
    Search PM
    The "Undefined" warnings are due to the fact that the AviSynth core defines it first, and it is redefined in Zs_RF_Shared.avsi for its special needs. No reason to worry.
    Quote Quote  
  6. Member
    Join Date
    May 2005
    Location
    Australia-PAL Land
    Search Comp PM
    Thank you @LigH.de.

    I shall put that message from AVISynth Info on my Ignore list.
    Quote Quote  
  7. Member
    Join Date
    May 2005
    Location
    Australia-PAL Land
    Search Comp PM
    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?).
    To answer my own question, LAGS YUY2 is ok for AVISynth; the file that wouldn't open had already been re-encoded into something else.
    Quote Quote  
  8. Can anyone help me I don't understand whether my QTGMC AviSynth+ is working or not in Windows 11 because i don't see any difference in the video using QTGMC.
    Quote Quote  
  9. Member
    Join Date
    Aug 2013
    Location
    Central Germany
    Search PM
    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?
    Quote Quote  
  10. Do you have any sample video which is interlaced so i can give try in my system.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!