Quantcast Avisynth: How do you Install Filters in Version 2.07 - digitalFAQ.com Forums [Archives]
  #1  
04-05-2003, 01:24 PM
bigggt bigggt is offline
Free Member
 
Join Date: Mar 2003
Location: IamCanadian
Posts: 848
Thanks: 0
Thanked 0 Times in 0 Posts
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
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
04-05-2003, 01:46 PM
PyRoMaNiA PyRoMaNiA is offline
Free Member
 
Join Date: Jan 2003
Location: a PAL land (UK)
Posts: 408
Thanks: 0
Thanked 0 Times in 0 Posts
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.
Reply With Quote
  #3  
04-05-2003, 02:13 PM
bigggt bigggt is offline
Free Member
 
Join Date: Mar 2003
Location: IamCanadian
Posts: 848
Thanks: 0
Thanked 0 Times in 0 Posts
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
Reply With Quote
  #4  
04-05-2003, 02:59 PM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
hi bigggt

"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\
!

Reply With Quote
  #5  
04-05-2003, 04:53 PM
bigggt bigggt is offline
Free Member
 
Join Date: Mar 2003
Location: IamCanadian
Posts: 848
Thanks: 0
Thanked 0 Times in 0 Posts
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.
Reply With Quote
  #6  
04-06-2003, 11:45 AM
bigggt bigggt is offline
Free Member
 
Join Date: Mar 2003
Location: IamCanadian
Posts: 848
Thanks: 0
Thanked 0 Times in 0 Posts
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
Reply With Quote
  #7  
04-06-2003, 12:01 PM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
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)

Reply With Quote
  #8  
04-06-2003, 01:15 PM
bigggt bigggt is offline
Free Member
 
Join Date: Mar 2003
Location: IamCanadian
Posts: 848
Thanks: 0
Thanked 0 Times in 0 Posts
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)
Reply With Quote
  #9  
04-06-2003, 05:05 PM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
#==============================================#
# -= 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?
Reply With Quote
  #10  
04-06-2003, 05:43 PM
bigggt bigggt is offline
Free Member
 
Join Date: Mar 2003
Location: IamCanadian
Posts: 848
Thanks: 0
Thanked 0 Times in 0 Posts
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
Reply With Quote
  #11  
04-07-2003, 09:02 PM
bigggt bigggt is offline
Free Member
 
Join Date: Mar 2003
Location: IamCanadian
Posts: 848
Thanks: 0
Thanked 0 Times in 0 Posts
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.
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Avisynth: AVIsynth quit wroking after install nero reload jzhao66 Avisynth Scripting 16 06-09-2005 08:53 AM
Avisynth c_.dll Version 2.5? Blubear Avisynth Scripting 7 07-19-2004 03:24 AM
Good idea to install post-processor filters? rs008f Video Encoding and Conversion 1 02-25-2004 04:47 AM
Need to install AviSynth.dll file ? cham chap Avisynth Scripting 4 10-17-2003 07:46 PM
Avisynth: which version should be used? Insider Avisynth Scripting 3 05-09-2003 03:39 PM

Thread Tools



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