View Full Version : New Avisynth+ versions


vinnytx
9th February 2017, 18:44
Hi,

I'm not able to use any avisynth+ version newer than r1779.
I encounter many problems with VirtualDub and when I load an Avisynth script trough ffdshow raw video filter.

However, I prefer to start from the VirtualDub 1.10.4 issues.
I'm not able to load any script, even this code
DirectShowSource("F:\Documenti\Video\236.avi")
give me this error
http://i.imgur.com/0ZLlwOq.jpg

Groucho2004
9th February 2017, 18:49
Check your Avisynth install, use AVSMeter (https://forum.doom9.org/showthread.php?t=165528) with the "-avsinfo" switch.
If that doesn't produce any errors, run the script with AVSMeter.

vinnytx
9th February 2017, 19:10
http://i.imgur.com/85SCe1E.jpg

Groucho2004
9th February 2017, 19:23
Right. There are no plugin directories referenced in your registry. I recommend that you install Avisynth+ with the installer from this page (http://avs-plus.net/), and then overwrite the DLLs in the plugin and system32/syswow64 directories with the ones from r2420.

I can also highly recommend this method (https://forum.doom9.org/showthread.php?t=172124) to install Avisynth.

vinnytx
9th February 2017, 19:52
It seems that my pc dislikes any new version. I tried your batch installer and the official one with the dlls replaced with the new versions. Everytime AVSMeter.exe -avsinfo crashes. I have this error


http://i.imgur.com/5TLURsK.jpg

Groucho2004
9th February 2017, 21:54
You should start from scratch but you have to clean up first:

Use the batch installer to uninstall (menu options 8 and 9). This will clean up the registry and system directories
Delete the Avisynth directory ("Programmi (x86)\Avisynth+")

After that, use the batch installer to install.

vinnytx
10th February 2017, 07:56
Now is much better, thanks.
However, I was able to use this script with r1779 version

Import("C:\Program Files (x86)\AviSynth+\plugins+\dither.avsi")
Import("C:\Program Files (x86)\AviSynth+\plugins+\mt_xxpand_multi.avsi")
Import("C:\Program Files (x86)\AviSynth+\plugins+\nnedi3_resize16_v3.3.avsi")
LoadPlugin("C:\Program Files (x86)\AviSynth+\plugins+\nnedi3.dll")
LoadPlugin("C:\Program Files (x86)\AviSynth+\plugins+\dither.dll")
SetMemoryMax(512)
SetFilterMTMode("DEFAULT_MT_MODE", 2)
ffdshow_source()
dispWidth = 1920
dispHeight = 1080
mWidth = float(last.width)
mHeight = float(last.height)
ratio = (mWidth/mHeight)
newHeight= round((dispWidth/ratio)/2)*2
newHeight > dispHeight ? Eval("""
newHeight=dispHeight
newWidth=round((newHeight*ratio)/2)*2
""") : Eval("""
newWidth=dispWidth
""")
nnedi3_resize16(newWidth,newHeight)
Prefetch(4)

I use this script (http://avisynth.nl/index.php/Nnedi3_resize16) when I play videos. It is loaded through ffdshow raw video filter.
Now the player freeze everytime the script is loaded.


Also, do you know a way to load HEVC/H265 videos through avisynth script?

Groucho2004
10th February 2017, 10:58
Now is much better, thanks.
However, I was able to use this script with r1779 versionWhich you could do before you started this thread. So, r2420 is still not working?

I use this script (http://avisynth.nl/index.php/Nnedi3_resize16) when I play videos. It is loaded through ffdshow raw video filter.
Now the player freeze everytime the script is loaded.
That's probably a problem with ffdshow, maybe in combination with Avisynth+. Since you are using the Avisynth version switcher you can for example try with another Avisynth version and check if the problem persists.

Also, do you know a way to load HEVC/H265 videos through avisynth script?I believe FFMS2 can do that.

vinnytx
10th February 2017, 11:38
r2420 works good with VirtualDub,
FFMS2 was able to open HEVC videos

I have problem with Potplayer and the script I posted. No problem with Zoom Player.

Also, even with Zoom Player I cannot use the Super Resolution (http://www.infognition.com/super_resolution_avisynth/) resize plugin because the video plays really slow and the cpu load is extremely high. I didn't have this issue with r1779 version

Groucho2004
10th February 2017, 11:54
I have problem with Potplayer and the script I posted. No problem with Zoom Player.

Also, even with Zoom Player I cannot use the Super Resolution (http://www.infognition.com/super_resolution_avisynth/) resize plugin because the video plays really slow and the cpu load is extremely high. I didn't have this issue with r1779 version
I have never used either of these players, I can't help you with this. Since you don't have the problems with the earlier AVS+ version you should probably post this in the AVS+ thread.

vinnytx
10th February 2017, 12:01
Ok, thanks for your help

vinnytx
10th February 2017, 12:03
Where is AVS+ thread?

Groucho2004
10th February 2017, 12:29
Where is AVS+ thread?
Avisynth+ (https://forum.doom9.org/showthread.php?t=168856)