Internal functions/Script functions

From Avisynth wiki
Revision as of 18:58, 31 December 2010 by Wilbert (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Script functions

They provide AviSynth script information.

  • ScriptName   |   v2.60   |   ScriptName()
Returns the path and filename of the loaded script as a string.
Examples:
name = ScriptName() # name = "F:\video.avs"
  • ScriptFile   |   v2.60   |   ScriptFile()
Returns the filename of the loaded script as a string.
Examples:
file = ScriptFile() # name = "video.avs"
  • ScriptDir   |   v2.60   |   ScriptDir()
Returns the path of the loaded script as a string.
Examples:
folder = ScriptDir() # name = "F:\"

Back to Internal functions.

Personal tools