RenderManifest constructor
RenderManifest({})
Creates a manifest describing one completed capture.
posterArgs/posterFileName are present together only when the
composition declares a Video.poster: the SECOND ffmpeg invocation that
extracts the poster still.
Implementation
RenderManifest({
required this.width,
required this.height,
required this.fps,
required this.frameCount,
required this.framesFileName,
required this.outputFileName,
required this.renderDigest,
required List<String> ffmpegArgs,
List<String>? posterArgs,
this.posterFileName,
}) : ffmpegArgs = List.unmodifiable(ffmpegArgs),
posterArgs = posterArgs == null ? null : List<String>.unmodifiable(posterArgs);