Quantcast Avisynth: What is a Avsi File? - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Avisynth Scripting

Reply
 
LinkBack Thread Tools
  #1  
03-14-2004, 04:38 AM
Peter1234 Peter1234 is offline
Free Member
 
Join Date: Feb 2003
Posts: 237
Thanks: 0
Thanked 0 Times in 0 Posts
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.
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  
03-14-2004, 05:09 AM
incredible incredible is offline
Free Member
 
Join Date: May 2003
Location: Germany
Posts: 3,189
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to incredible
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.
Reply With Quote
  #3  
03-14-2004, 08:39 AM
bigggt bigggt is offline
Free Member
 
Join Date: Mar 2003
Location: IamCanadian
Posts: 848
Thanks: 0
Thanked 0 Times in 0 Posts
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
Reply With Quote
  #4  
03-14-2004, 09:04 AM
incredible incredible is offline
Free Member
 
Join Date: May 2003
Location: Germany
Posts: 3,189
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to incredible
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.
Reply With Quote
  #5  
03-14-2004, 09:08 AM
Prodater64 Prodater64 is offline
Free Member
 
Join Date: Mar 2003
Location: Palma de Mallorca - España
Posts: 2,925
Thanks: 0
Thanked 0 Times in 0 Posts
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?
Reply With Quote
  #6  
03-14-2004, 09:22 AM
Abond Abond is offline
Free Member
 
Join Date: Mar 2003
Posts: 243
Thanks: 0
Thanked 0 Times in 0 Posts
It will not apply, if not called.
Reply With Quote
  #7  
03-14-2004, 09:31 AM
Prodater64 Prodater64 is offline
Free Member
 
Join Date: Mar 2003
Location: Palma de Mallorca - España
Posts: 2,925
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Abond
It will not apply, if not called.
But, how call you it?
Reply With Quote
  #8  
03-14-2004, 10:21 AM
bigggt bigggt is offline
Free Member
 
Join Date: Mar 2003
Location: IamCanadian
Posts: 848
Thanks: 0
Thanked 0 Times in 0 Posts
thanx Incredible
Reply With Quote
  #9  
03-14-2004, 11:14 AM
Abond Abond is offline
Free Member
 
Join Date: Mar 2003
Posts: 243
Thanks: 0
Thanked 0 Times in 0 Posts
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.
Reply With Quote
  #10  
03-14-2004, 11:30 AM
Prodater64 Prodater64 is offline
Free Member
 
Join Date: Mar 2003
Location: Palma de Mallorca - España
Posts: 2,925
Thanks: 0
Thanked 0 Times in 0 Posts
Abond, I know it. I ask you how to call hybfupp function. Hybfupp with avsi extension not need load. Then how call you it?
Reply With Quote
  #11  
03-14-2004, 11:58 AM
Abond Abond is offline
Free Member
 
Join Date: Mar 2003
Posts: 243
Thanks: 0
Thanked 0 Times in 0 Posts
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.
Reply With Quote
  #12  
03-14-2004, 03:38 PM
Prodater64 Prodater64 is offline
Free Member
 
Join Date: Mar 2003
Location: Palma de Mallorca - España
Posts: 2,925
Thanks: 0
Thanked 0 Times in 0 Posts
Thank you abond.
The hybridfupp parameters, are explained in a readme file?
Reply With Quote
  #13  
03-14-2004, 07:42 PM
Peter1234 Peter1234 is offline
Free Member
 
Join Date: Feb 2003
Posts: 237
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks incredible.

Prodater64,
The hybridfupp parameters are explained inside of the function. Open it with NotePad to read.
Reply With Quote
  #14  
03-14-2004, 07:49 PM
FuPP FuPP is offline
Free Member
 
Join Date: Mar 2004
Posts: 92
Thanks: 0
Thanked 0 Times in 0 Posts
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
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Avisynth: DVD-RAM VRO File Processing? Bud Avisynth Scripting 1 11-13-2004 11:37 AM
Avisynth: Error opening the avisynth file i76276 Avisynth Scripting 5 10-22-2003 05:56 AM
Sampler.dll is not a avisynth 2.52 file Sykes Avisynth Scripting 4 06-27-2003 08:28 AM
Avisynth: File Size Predition vs Actual file size? Rig R. Mortis Avisynth Scripting 2 10-12-2002 06:04 PM
Avisynth: msvcr70.dll file ZeppelinFan Avisynth Scripting 5 09-13-2002 01:57 AM




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