FfmpegCommand.simple constructor

const FfmpegCommand.simple({
  1. String? ffmpegPath,
  2. List<FfmpegInput> inputs = const [],
  3. List<CliArg> args = const [],
  4. required String outputFilepath,
})

Implementation

const FfmpegCommand.simple({
  this.ffmpegPath,
  this.inputs = const [],
  this.args = const [],
  required this.outputFilepath,
}) : filterGraph = null;