FileSize
From Avisynth wiki
Abstract | |
---|---|
Author | pureexe |
Version | v1.00 |
Download | FileSize_x86.dll FileSize_x64.dll |
Category | Support filters |
License | MIT |
Discussion |
Contents |
Description
FileSize is a plugin to get filesize from files.
Requirements
- [x86]: AviSynth+ or AviSynth 2.6
- [x64]: AviSynth+
Syntax and Parameters
- FileSize (string)
- string =
- Path to file that you want to get filesize from.
- string =
Examples
Usage:
filelegnth = FileSize("C:/Path/To/MyVideo.mp4")
Return:
file size in byte or -1 if file does not exist.
Please note that return type is Float to avoid integer overflow. but if you want return type in integer you can use Int()
to convert Float back to Int.
External Links
- GitHub - Source code repository.
Back to External Filters ←