Command line interface
Since version 1.6 you can use Video Enhancer in batch files using its
command line interface. Only super-resolution feature is accessible from
command line, to use VirtualDub filters run it in GUI mode.
Parameters:
- -i infile - specify input file. Use double quotes (like "...") for filenames
that include spaces.
- -o outfile - specify output file,
- -d width height - destination video size,
- -vc codec - set name for video codec. First codec which name includes
substring you specify here will be used. So you don't need to specify full name
of the codec. If this parameter is not set, uncompressed RGB32 video will be stored
(huge size)!
- -ac codec - set name for audio codec. If this parameter is not set
audio will be copied without recompression.
- -vlist - output list of video codecs that can be used. All output
is written to text file ve.txt in same folder as VideoEnhancer.exe.
- -alist - output list of audio codecs.
- -fast - use fast mode of super-resolution. If this parameter is not
set, a slower high quality mode will be used by default.
- -nomt - do not use multithreaded processing.
Examples:
Show all available codecs:
VideoEnhancer.exe -vlist -alist
All output will go to ve.txt.
Upsize a file to 640x480 and compress result with Huffyuv codec:
VideoEnhancer.exe -i 176.avi -o "Upsized 176.avi" -d 640 480 -vc Huff -fast