Avisynth open error

This forum is for questions and discussion of all the aspects of handling and cleaning up your footage with Avisynth.
Locked
Chiboab
Joined: Thu Oct 28, 2010 11:40 am
Org Profile

Avisynth open error

Post by Chiboab » Tue Mar 22, 2011 12:42 pm

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 =)

User avatar
Cannonaire
Joined: Wed May 05, 2010 5:59 pm
Status: OVERLOAD
Location: Oregon
Org Profile

Re: Avisynth open error

Post by Cannonaire » Tue Mar 22, 2011 1:12 pm

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.
Image Think millionaire, but with cannons. || Resident Maaya Sakamoto fan.

TheRyuu
Joined: Wed May 19, 2010 5:33 pm
Org Profile

Re: Avisynth open error

Post by TheRyuu » Thu Mar 24, 2011 3:34 pm

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...

Mister Hatt
Joined: Tue Dec 25, 2007 8:26 am
Status: better than you
Contact:
Org Profile

Re: Avisynth open error

Post by Mister Hatt » Thu Mar 24, 2011 5:00 pm

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.

Chiboab
Joined: Thu Oct 28, 2010 11:40 am
Org Profile

Re: Avisynth open error

Post by Chiboab » Sat Apr 23, 2011 2:58 am

Sorry for super late reply, but thank you anyway for your help :) It works now :)

Locked

Return to “AviSynth Help”