Members
-
avs
-
A "special" object that provides access to the AviSynth environment. Essentially a collection that first searches for functions from AviSynth.functions and, if it finds nothing there, then searches AviSynth.variables. This class is read/write: you can both read functions and variables from AviSynth, and write functions and variables back to AviSynth.
Note: AviSynth variables are case-insensitive, meaning that
avs.foo
andavs.Foo
refer to the same value.Note: you cannot use
for (var v in avs) {}
to iterate over variables in AviSynth, you can only get and set values through this collection.- Source: