Hello, I have problems with AviSynth, it always writes the same errors.
My script:
FFvideosource("D:\Anime episodes\Toradora\TORADORA 01.mkv")
ConvertToYV12()
Crop(4,4,-4,-4)
Deblock(quant=25)
LanczosResize(1280,720)
Errors:
Avisynth: script open failed
And then there are some errors with mt_masktools-25-x64.dll and mt_masktools-26-x64.dll and it says that I should install it again using the official install media.
Do you know how to solve it, please? Thanks =)
Avisynth open error
- Cannonaire
- Joined: Wed May 05, 2010 5:59 pm
- Status: OVERLOAD
- Location: Oregon
Re: Avisynth open error
It sounds like you're having an auto-load conflict. Simple solution is to remove one of those. dll files from your plugins directory. A more annoying but also good way of doing it is to remove all except the default plugins from your plugin directory and load them manually when you need them.
Think millionaire, but with cannons. || Resident Maaya Sakamoto fan.
-
- Joined: Wed May 19, 2010 5:33 pm
Re: Avisynth open error
1.) Stop autoloading
2.) You only need one dll for masktools, the one that corresponds to your arch and avsynth version (25 for 2.5.x, 26 for 2.6.x; unless you're using alpha software you want the 25 non-x64 version).
Empty your autoload folder (C:\Program Files\avisynth 2.5\plugins)
Load plugins manually, it's always better
LoadPlugin("X:\path\to\mt_masktools.dll")
etc...
2.) You only need one dll for masktools, the one that corresponds to your arch and avsynth version (25 for 2.5.x, 26 for 2.6.x; unless you're using alpha software you want the 25 non-x64 version).
Empty your autoload folder (C:\Program Files\avisynth 2.5\plugins)
Load plugins manually, it's always better
LoadPlugin("X:\path\to\mt_masktools.dll")
etc...
-
- Joined: Tue Dec 25, 2007 8:26 am
- Status: better than you
- Contact:
Re: Avisynth open error
Also don't use lanczos, run deblock prior to crop so it doesn't kill your chroma channel on resampling, and get rid of that useless YV12 conversion. None of this has anything to do with your script not loading unless someone finally implemented that patch I wrote for auto-dieing when fed scripts written by people who don't know what they're doing.
-
- Joined: Thu Oct 28, 2010 11:40 am
Re: Avisynth open error
Sorry for super late reply, but thank you anyway for your help It works now