Represents an input (like a video file or a lavfi filter).
const input = new Input( 'path/to/file.mp4' );
Optionally can also receive an array of arguments to include before the input (for example, for seeking the media).
// Starts the input at the 1-minute mark. const input = new Input( 'path/to/file.mp4', [ '-ss', 60 ] );
Generated using TypeDoc
Represents an input (like a video file or a lavfi filter).
const input = new Input( 'path/to/file.mp4' );
Optionally can also receive an array of arguments to include before the input (for example, for seeking the media).
// Starts the input at the 1-minute mark. const input = new Input( 'path/to/file.mp4', [ '-ss', 60 ] );