Command-line syntax
The command line is based on the FFmpeg configuration syntax, the FFmpeg documentation can be found here.
At the left part of the command line (input part), ffmpegLGPL.exe -i %PIPE% is required. This tells FFmpeg to take the Multipurpose Encoder output as input.
So the encoding settings that configure the video compression + audio compression + multiplexing are located after %PIPE%.
- ffmpegLGPL.exe is the name of the LGPL build of FFmpeg included in the package and located in the installation folder of the filter.
- %PIPE% is mandatory for the transcoder to take the filter's output as input. It must be written exactly as is. It corresponds to the pipe generated by the filter and used as input by the transcoder. At runtime,
%PIPE%is replaced by the real name of the pipe, generated automatically by the filter.
Minimal example:
ffmpegLGPL.exe -i %PIPE% myclip.webm
Reserved keywords destined to the filter itself (not to FFmpeg) can be specified before the command line, e.g.:
SHOWCONSOLE NOLOG ffmpegLGPL.exe -i %PIPE% myclip.webm
See the Recording examples and Streaming examples chapters.
Tip
Feel free to contact us at contact@datastead.com if a command line is failing or not working properly!