Method | Description | |
---|---|---|
AddPluginPath ( ) : void |
Adds a line containing the plugin path. Must be called before loading any other plugin.
|
|
AppendLine ( ) : void |
Appends a line break to the script.
|
|
AppendLine ( IFormatProvider culture, string value ) : void |
Appends a line to the script following specified format. Line break is automatically added.
|
|
AppendLine ( string value ) : void |
Appends a line to the script following specified format. Line break is automatically added.
|
|
AviSynthScriptBuilder ( ) : System | ||
AviSynthScriptBuilder ( string script ) : System | ||
Cleanup ( ) : void |
Moves all LoadPlugin and Import commands to the beginning to make the script more readable.
|
|
GetAsciiPath ( string path ) : string | ||
LoadPluginAvsi ( string fileName ) : void | ||
LoadPluginDll ( string fileName ) : void |
If script ends with DitherPost(), replace it with Dither_out() when rawOutput is true. If rawOutput is false, it does the reverse.
|
|
OpenAvi ( string fileName, bool audio ) : void | ||
OpenDirect ( string fileName, string cacheFile, bool audio, int threads ) : void | ||
RemoveMT ( ) : void |
Removes MultiThreading commands from script.
|
|
Replace ( string oldValue, string newValue ) : void |
Replaces all instances of oldValue with newValue.
|
|
WriteToFile ( string fileName ) : void |
Method | Description | |
---|---|---|
GetShortPath ( string path ) : string | ||
GetShortPathName ( [ path, [ shortPath, int shortPathLength ) : int | ||
IsASCII ( string value ) : bool |
public AppendLine ( IFormatProvider culture, string value ) : void | ||
culture | IFormatProvider | The culture to use while formatting. |
value | string | The value or format to append. |
return | void |
public AppendLine ( string value ) : void | ||
value | string | The value or format to append. |
return | void |
public AviSynthScriptBuilder ( string script ) : System | ||
script | string | |
return | System |
public LoadPluginAvsi ( string fileName ) : void | ||
fileName | string | |
return | void |
public LoadPluginDll ( string fileName ) : void | ||
fileName | string | |
return | void |
public OpenAvi ( string fileName, bool audio ) : void | ||
fileName | string | |
audio | bool | |
return | void |
public OpenDirect ( string fileName, string cacheFile, bool audio, int threads ) : void | ||
fileName | string | |
cacheFile | string | |
audio | bool | |
threads | int | |
return | void |
public Replace ( string oldValue, string newValue ) : void | ||
oldValue | string | The string to be replaced. |
newValue | string | The string to replace with. |
return | void |
public WriteToFile ( string fileName ) : void | ||
fileName | string | |
return | void |