Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. |
![]() |
#5581 | Link | |
Acid fr0g
Join Date: May 2002
Location: Italy
Posts: 1,635
|
Quote:
![]()
__________________
@turment on Telegram |
|
![]() |
![]() |
#5582 | Link |
Registered User
Join Date: Dec 2005
Location: Germany
Posts: 1,440
|
The gui is an older release and has a bug where it can mix up 32 and 64bit plugins (fixed in VS version). Use avsrepo for now to be on the safe side. https://forum.doom9.org/showthread.php?t=175822
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth VapourSynth Portable FATPACK || VapourSynth Database || https://github.com/avisynth-repository Last edited by ChaosKing; 29th April 2020 at 15:56. |
![]() |
![]() |
#5586 | Link | |
Registered User
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,055
|
Quote:
![]()
__________________
See My Avisynth Stuff |
|
![]() |
![]() |
#5587 | Link |
Acid fr0g
Join Date: May 2002
Location: Italy
Posts: 1,635
|
As I wrote in the vol.2 thread it would be better starting to divide plugins into AVS supported interface versions, thus easing programmers to start a revision of the missing plugins.
__________________
@turment on Telegram |
![]() |
![]() |
#5588 | Link |
Registered User
Join Date: Oct 2001
Location: Germany
Posts: 6,206
|
Using Avisynth+ 3.6 32bit loading:
Code:
LoadPlugin("I:\Hybrid\32bit\AVISYN~1\LoadDll.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\AddGrainC.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\dfttest.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\EEDI2.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\eedi3.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\FFT3DFilter.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\masktools2.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\mvtools2.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\TDeint.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\RgTools.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\PlanarTools.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\MedianBlur2.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\nnedi3.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\nnedi2.dll") LoadCPlugin("I:\Hybrid\32bit\AVISYN~1\yadif.dll") LoadDLL("I:\Hybrid\32bit\avisynthPlugins\libfftw3f-3.dll") Import("I:\Hybrid\32bit\avisynthPlugins\QTGMC.avsi") Import("I:\Hybrid\32bit\avisynthPlugins\SMDegrain.avsi") Import("I:\Hybrid\32bit\avisynthPlugins\AnimeIVTC.avsi") LoadCPlugin("I:\Hybrid\32bit\AVISYN~1\ffms2.dll") SetFilterMTMode("DEFAULT_MT_MODE", MT_MULTI_INSTANCE) # loading source: F:\TestClips&Co\files\interlaceAndTelecineSamples\interlaced\YUV422_sample.avi # input color sampling YUY2@8 # input luminance scale tv FFVideoSource("F:\TESTCL~1\files\INTERL~1\INTERL~1\YUV422~1.AVI",cachefile="E:\Temp\avi_1deca8d5573c8cb8cd8489678b764f38_853323747_1_0.ffindex",fpsnum=25,colorspace="YUY2") # current resolution: 720x576 # deinterlacing ConvertToYUY2(interlaced=true) AssumeTFF() QTGMC(Preset="Fast", ediThreads=2) SelectEven() # cropping Crop(16,4,-16,-12)# 688x560 # filtering ConvertToYV12(matrix="Rec601") PreFetch(8) return last Code:
'I:/Hybrid/32bit/AVISYN~1/PlanarTools.dll' cannot be used as a plugin for AviSynth. Using: Code:
LoadCPlugin("I:\Hybrid\32bit\AVISYN~1\ffms2.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\mvtools2.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\masktools2.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\MedianBlur2.dll") LoadPlugin("I:\Hybrid\32bit\AVISYN~1\SSE2Tools.dll") Import("I:\Hybrid\32bit\avisynthPlugins\SMDegrain.avsi") SetFilterMTMode("DEFAULT_MT_MODE", MT_MULTI_INSTANCE) # loading source: F:\TestClips&Co\test.avi # input color sampling YV12@8 # input luminance scale tv FFVideoSource("F:\TESTCL~1\test.avi",cachefile="E:\Temp\avi_0197468a3716844ade54f3f30f60eeda_853323747_1_0.ffindex",fpsnum=25,colorspace="YV12") # current resolution: 640x352 # filtering # grain handling SMDegrain(interlaced=false) PreFetch(8) return last Code:
Script error: expected `)' ((null), line 1, column 4) (I:\Hybrid\32bit\avisynthPlugins\SMDegrain.avsi, line 879) (I:\Hybrid\32bit\avisynthPlugins\SMDegrain.avsi, line 75) (E:\Temp\tempPreviewAvisynthFile17_00_53_414.avs, line 16) "sisphbd = AvsPlusVersionNumber > 2294" which calls line 879: Code:
function AvsPlusVersionNumber() { IsAvsNeo ? eval(MidStr(VersionString(),20,4)) : IsAvsPlus ? eval(MidStr(VersionString(),17,4)) : 0 } -> did I miss some change that broke old plugins and scripts? (couldn't see anything about it in the release notes) Cu Selur
__________________
Hybrid here in the forum, homepage Notice: Since email notifications do not work here any more, it might take me quite some time to notice a reply to a thread,.. Last edited by Selur; 31st May 2020 at 16:07. |
![]() |
![]() |
#5589 | Link |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 8,864
|
Selur, Get new SMDeGrain and Zs_RF_Shared.avsi from Real.Finder repository:- https://github.com/realfinder/AVS-St...2.5%20and%20up
things changed [everything currently in turmoil]. Also, post in the new thread maybe, this one nearly dead.
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 31st May 2020 at 16:50. |
![]() |
![]() |
#5590 | Link |
Registered User
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,055
|
this thread should closed
and new thread should mention this one as an archive (edit: it's already did) @Moderators
__________________
See My Avisynth Stuff Last edited by real.finder; 31st May 2020 at 17:02. |
![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|