AviSynth Syntax - Script functions

They provide AviSynth script information.

Returns the as entered path and filename of the loaded script as a string.
Examples:
name = ScriptName() # name = "F:\Directory\Tmp\..\video.avs"
Returns the resolved filename of the loaded script as a string.
Examples:
file = ScriptFile() # name = "video.avs"
Returns the resolved path of the loaded script as a string.
Examples:
folder = ScriptDir() # name = "F:\Directory"

Back to Internal functions.

$Date: 2011/04/17 03:58:18 $