digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Avisynth Scripting (http://www.digitalfaq.com/archives/avisynth/)
-   -   Avisynth: What is a avsi file? (http://www.digitalfaq.com/archives/avisynth/8606-avisynth-avsi-file.html)

Peter1234 03-14-2004 03:38 AM

What is a avsi file?
 
What is the difference between importing a xxxx.avs file and importing a xxxx.avsi file? The endings seem to be interchangeable. For example:

Import("C:\Filters25\HybridFuPP.avsi")

seems to perform the same as

Import("C:\Filters25\HybridFuPP.avs")

where ending was simply changed from avsi to avs.

incredible 03-14-2004 04:09 AM

avsi files can be autoloaded if they are placed in the avisynths pluginsfolder like .dll's. And avs files have to be "imported" within a script like you did above.

bigggt 03-14-2004 07:39 AM

Ok so if i have an avsi in my plugins and use a script like this

Code:

AviSource("PATH\NAME.avi",false)
Blockbuster(method="noise",detail_min=1,detail_max=8,variance=0.3,seed=5823)
Deen()
GripCrop(WIDTH, HEIGHT, overscan=1, source_anamorphic=false)
GripSize(resizer="LanczosResize")
Undot()
TemporalSoften(2,7,7,3,2)
DCTFilter(1,1,1,1,1,1,0.5,0)
Blockbuster(method="noise",detail_min=1,detail_max=10,variance=0.5,seed=5623)
GripBorders()

Will it ignore the avsi since its not called for

I have read that they load automatically so if i'm not using it do i need to rempve it from the plugins directory

Thanx

incredible 03-14-2004 08:04 AM

Yep, its not called so its not used BUT autoloaded.

Watch if you got some filter-conflicts if the avsi is autoloaded if not, leave it in the pluginsfolder.

Prodater64 03-14-2004 08:08 AM

I think if you don't want use the function in avsi, it is better rename it to .avs, and only call it when you need to use it, in this case with the sentence "import" in your script.

If you keep the avsi extension, it will apply in all your encodes?

Abond 03-14-2004 08:22 AM

It will not apply, if not called.

Prodater64 03-14-2004 08:31 AM

Quote:

Originally Posted by Abond
It will not apply, if not called.

But, how call you it?

bigggt 03-14-2004 09:21 AM

thanx Incredible

Abond 03-14-2004 10:14 AM

Quote:

LoadPlugin("C:\Filters25\MPEG2Dec3.dll")
LoadPlugin("C:\Filters25\asharp.dll")
LoadPlugin("C:\Filters25\undot.dll")
#
####
## Main section and static filters ###
#
Mpeg2Source("Your_D2V_Source_Here")
#
undot()
Limiter()
asharp(1, 4)
In this script asharp and undot are loaded and called.

Quote:

LoadPlugin("C:\Filters25\MPEG2Dec3.dll")
LoadPlugin("C:\Filters25\asharp.dll")
LoadPlugin("C:\Filters25\undot.dll")
#
####
## Main section and static filters ###
#
Mpeg2Source("Your_D2V_Source_Here")
#
Limiter()
asharp(1, 4)
In this script asharp and undot are loaded but only asharp is called. Therefore, undot will not apply in the encoding process.
The same should be with avsi.

Prodater64 03-14-2004 10:30 AM

Abond, I know it. I ask you how to call hybfupp function. Hybfupp with avsi extension not need load. Then how call you it?

Abond 03-14-2004 10:58 AM

Oops, I thought it was clear.
I'm calling undot in the script with
undot()
And so I'm calling hybridfupp with
Hybridfupp(xx,yy)
In fact an avsi has the behavior of a plugin.

Prodater64 03-14-2004 02:38 PM

Thank you abond.
The hybridfupp parameters, are explained in a readme file?

Peter1234 03-14-2004 06:42 PM

Thanks incredible.

Prodater64,
The hybridfupp parameters are explained inside of the function. Open it with NotePad to read.

FuPP 03-14-2004 06:49 PM

there are two html files provided with the package : one in english, one in french. You only need to double click on them and your browser will load them.

All functions and parameters are explained....

FuPP


All times are GMT -5. The time now is 12:26 PM  —  vBulletin © Jelsoft Enterprises Ltd

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