digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Avisynth Scripting (http://www.digitalfaq.com/archives/avisynth/)
-   -   Avisynth: How do you install filters in version 2.07 (http://www.digitalfaq.com/archives/avisynth/3187-avisynth-how-install.html)

bigggt 04-05-2003 01:24 PM

How do you install filters in version 2.07
 
Please be basic because i seen how to do it and still can't figure it out

Sorry for all the questions but this is a lot to learn in the beginning

Thanx :D

PyRoMaNiA 04-05-2003 01:46 PM

You don't have to install filters. Just put the DLL file in a folder of your choice, (eg: C:\AviSynthFilters). Then to use that filter add the line LoadPlugin("C:\AviSynthFilters\DustV5.dll") to the start of your script, but obviously replace DustV5.dll with the name of your DLL file...hope this helps. :)

bigggt 04-05-2003 02:13 PM

Thanx Pyromania but when i tried it this is what it looks like

#==============================================#
# -= AviSynth script by MovieStacker v1.1.1 =- #
#==============================================#

LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\MPEG2Dec.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\TemporalCleanerO ld.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\GripFit_preview. dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\BlockBuster.dll" )
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\DustV5.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\LegalClip.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\UnFilter.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\Sampler.dll")

AviSource("C:\Program Files\eMule\INCOMING\8.Mile(dvdscreener)Xvid-Dvl.avi")
LegalClip()
GripCrop(352, 240, overscan=1, source_anamorphic=false)
GripSize(resizer="LanczosResize")
PixieDust()
TemporalCleaner()
BlockBuster(method="noise", detail_max=7, seed=1)
GripBorders()
LegalClip()

Sampler(length=24)
## MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size * .98 ##


TRied to add the unfilter and the dll file is placed with all the other dll in moviestacker

jorel 04-05-2003 02:59 PM

hi bigggt :wink:

"TRied to add the unfilter and the dll file is placed with all the other dll in moviestacker"

edit the script an put the unfilter like this:

LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\MPEG2Dec.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\Unfilter.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\TemporalCleanerO ld.dll")
...
and

Legalclip() :
Unfilter(10,10)
GripCrop(352, 240, overscan=1, source_anamorphic=false)
...

of course,put the unfilter.dll in
C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\
!

:wink:

bigggt 04-05-2003 04:53 PM

thanx for your help guys,still can't get it tried putting where you said Jorel but when i put it there it doesn't stay.

Its not a big deal i'm just learning hjow to use the regular scripts that come preloaded into moviestacker.

#==============================================#
# -= AviSynth script by MovieStacker v1.1.1 =- #
#==============================================#

LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\MPEG2Dec.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\UnFilter.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\TemporalCleanerO ld.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\GripFit_preview. dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\BlockBuster.dll" )
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\DustV5.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\LegalClip.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\Sampler.dll")

AviSource("C:\Program Files\eMule\INCOMING\8.Mile(dvdscreener)Xvid-Dvl.avi")
LegalClip()
GripCrop(352, 240, overscan=1, source_anamorphic=false)
GripSize(resizer="LanczosResize")
PixieDust()
TemporalCleaner()
BlockBuster(method="noise", detail_max=7, seed=1)
GripBorders()
LegalClip()

Sampler(length=24)
## MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size * .98 ##

do you edit the script in moviestacker.

bigggt 04-06-2003 11:45 AM

STep by step what im doing
1.unzip new filter
2.Drag the unfilter .dll file to filters in moviestacker
3.open moviestacker click full screen editor
4.Manually type in LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\Unfilter.dll") right under LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\MPEG2Dec.dll")
then i don't know what to do,have tried several things like save script,save preset file but the new filter never stays or even shows up in this section

AviSource("C:\Temp Videos\8 mile cd 1.avi")
LegalClip()
GripCrop(704, 480, overscan=2, source_anamorphic=false)
GripSize(resizer="BilinearResize")
SpaceDust()
TemporalCleaner()
GripBorders()
LegalClip()

What the heck im doing wrong i want to start trying the latest scripts

Thanx

jorel 04-06-2003 12:01 PM

hi again bigggt
:)

you forgot to write this in the MovieStacker script:
Legalclip() :
Unfilter(10,10) <------ forgot?
GripCrop(352, 240, overscan=1, source_anamorphic=false)

:!:

bigggt 04-06-2003 01:15 PM

Thanx for your help Jorel,I though if you put it in the top part it will automatically go to the bottom.after i put it into both top and bottom then what just save script?

ANyway did what you said but now when i load it inot Tmpge it says

unfilter is not avs file
(c:\Temp Videos\mile.avs,line 6)

jorel 04-06-2003 05:05 PM

#==============================================#
# -= AviSynth script by MovieStacker v1.1.1 =- #
#==============================================#

LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\MPEG2Dec.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\UnFilter.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\TemporalCleanerO ld.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\GripFit_preview. dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\BlockBuster.dll" )
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\DustV5.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\LegalClip.dll")
LoadPlugin("C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS\Sampler.dll")

AviSource("C:\Program Files\eMule\INCOMING\8.Mile(dvdscreener)Xvid-Dvl.avi")
Unfilter(10,10)
LegalClip()
GripCrop(352, 240, overscan=1, source_anamorphic=false)
GripSize(resizer="LanczosResize")
PixieDust()
TemporalCleaner()
BlockBuster(method="noise", detail_max=7, seed=1)
GripBorders()
LegalClip()

Sampler(length=24)
## MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size * .98 ##
-------------------------------------------------------------------------------------

this is your corrected script!
copy, paste and try!

all dlls have to be in :
C:\KVCD STUFF\MovieStacker_v1.1.1\FILTERS

ps:
one doubt:
i don' t encode avis....don't know if works!

can someone help us here,please?
:wink:

bigggt 04-06-2003 05:43 PM

I really apprecate your help Jorel.

It didn't work so i'm just going to wait until something else comes out or something.

Thanx again

bigggt 04-07-2003 09:02 PM

Jorel i'd like to thank you for your help ,i have relized my own stupid mistake and i think i have got it now,one thing is how do you know if it worked ,when i load it into tmpge and viortual dub i get no errors.


All times are GMT -5. The time now is 04:02 AM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.