Hi. I've been using avisynth taken from the 'Avisynth Repository' and editing with MeGUI (the 'always use the included avisynth' box being UNticked). For reasons I won't bore you with, I wanted to just have MeGUI and so I uninstalled the 'Repository' avisynth and ticked MeGUI's 'always use the included avisynth' box. I made sure that my MeGUI plugins folder had the same stuff as was in Repository (including QTGMC.avsi).
I scripted a DVD and included the line 'QTGMC(FPSDivisor=2, border=true)' but running it caused MeGUI to say "there is no function named qtgmc". After reinstalling Repository avisynth, all is well, the script runs. Two things, then:
Why, when the 'always use the included avisynth' box is ticked, is MeGUI going to the Repository to fulfil the QTGMC command?
What do I need to do to get MeGUI truly working in standalone mode? Like I said, it's plugin folder has everything that Repository has.
My thanks for any help offered.
+ Reply to Thread
Results 1 to 11 of 11
-
-
If you selected internal Avisynth then it's using the internal one.
Because plugins are autoloaded from the default location. If you deleted plugins from the default location then you need to load them manually:
Use LoadPlugin("C:\plugin.dll") for the dll plugins.
Use Import("C:\plugin.avsi") for the script plugins.
Or you can edit registry to set default folder for plugins.
Or in a newer Avisynth+ you can set it like this:
ClearAutoloadDirs()
AddAutoloadDir("C:\SomeFolder\MeGUI\tools\avs\plug ins")Last edited by VoodooFX; 21st Feb 2026 at 01:54.
-
Hi davexnet. I'm not sure I explained myself properly. Apart from MeGUI and its inbuilt version, the only avisynth I have is from having used the AvisynthRepository where the install/uninstall is done via a CLI.
Anyway, I've uninstalled my 'Repository' avisynth and have included "Import("D:\MeGUI 6666 64bit\tools\avs\plugins\QTGMC.avsi") in my script. The result is this error message: "I don't know what AVSPlusVersionNumber means" and a pointer to line 247 of QTGMC.avsi. Line 247 reads "sisphbd = AvsPlusVersionNumber > 2294"
My MeGUI is using avisynth+3.5.1. Any idea about this latest error message? As far as I know, there's just one universal 'QTGMC.avsi' isn't there?
This is progress, though. My MeGUI is reading qtgmc.avsi internally so thanks to VoodooFX for the 'Import' tip. -
QTGMC depends on many other plugins, so, all those needs to be loaded too [look at the third option in my post].
"avisynth+ 3.5.1" is outdated, you need to update it. -
I'm an idiot. My previous post wouldn't have been necessary if I'd noticed a missing colon in my script. Although why a missing colon generated the error "I don't know what AVSPlusVersionNumber means" is anyone's guess...
I can now run MeGUI in complete standalone mode by having this in my script:
so thanks again to VoodooFX - my curiosity is cured. However, rather than copy/pasting into every new script, I'll probably just reinstall 'Repository' avisynth for all the stuff that MeGUI doesn't autoload.Code:ClearAutoloadDirs() AddAutoloadDir("D:\MeGUI 6666 64bit\tools\avs\plugins") AddAutoloadDir("D:\MeGUI 6666 64bit\tools\avisynth_plugin") AddAutoloadDir("D:\MeGUI 6666 64bit\tools\dgindex")
Voodoo - when you say "Or you can edit registry to set default folder for plugins." does that work with MeGUI when there isn't a system avisynth? -
-
I see it, thanks. Reckon I'll stick to Plan A though - leave Repository installed. This has been enjoyable, many thanks for your help, I've now got a better understanding of 'loading'.
-
I do the same - just have the plugins in the default location.
Similar Threads
-
problem with MeGUI and avisynth plugins
By noFriends in forum Newbie / General discussionsReplies: 5Last Post: 10th Sep 2024, 15:28 -
How do I fix this error? I got MVTools installed tho (AviSynth+)
By yoeymeme in forum RestorationReplies: 2Last Post: 11th May 2024, 02:08 -
Avisynth doesn't see Lagarith codec... but it's installed
By Darryl In Canada in forum Video ConversionReplies: 14Last Post: 10th Apr 2024, 22:52 -
Avisynth and Avisynth+ with MeGUI
By pooksahib in forum Video ConversionReplies: 8Last Post: 3rd Mar 2023, 05:30 -
AVISynth Help: How do I upscale in MeGUI?
By Guernsey in forum Newbie / General discussionsReplies: 0Last Post: 12th Oct 2021, 04:45



Quote