AVSI
From Avisynth wiki
(Difference between revisions)
Raffriff42 (Talk | contribs) (was a TODO item - added content (copied from elsewhere on site)) |
Raffriff42 (Talk | contribs) m (mention user-defined functions) |
||
Line 1: | Line 1: | ||
− | An autoloading script. Any script with the AVSI extension in the AviSynth Plugins folder is automatically imported. This is useful for making script functions available to any new script you create without having to copy and paste. However, any code not wrapped in a function [[The_script_execution_model/Sequence_of_events|will be executed when the script starts up]]. Code in .AVSI files should be restricted to [[ | + | An autoloading script. Any script with the .AVSI extension in the AviSynth Plugins folder is automatically [[Import|imported]]. This is useful for making script functions available to any new script you create without having to copy and paste. However, any code not wrapped in a function [[The_script_execution_model/Sequence_of_events|will be executed when the script starts up]]. Code in .AVSI files should be restricted to [[User_defined_script_functions|user-defined functions]], [[Script_variables|global variable definitions]], [[Plugins|loading plugins]] and [[Import|importing other scripts]]. |
[[Category:Glossary]] | [[Category:Glossary]] |
Latest revision as of 04:48, 15 April 2015
An autoloading script. Any script with the .AVSI extension in the AviSynth Plugins folder is automatically imported. This is useful for making script functions available to any new script you create without having to copy and paste. However, any code not wrapped in a function will be executed when the script starts up. Code in .AVSI files should be restricted to user-defined functions, global variable definitions, loading plugins and importing other scripts.