VideoProbeResult constructor
const
VideoProbeResult({})
Creates a result from the probed stream and container facts.
Pass declaredFps when the container declares a frame rate of its own; a
probe that cannot read one leaves it null and fps derives the rate.
Implementation
const VideoProbeResult({
required this.codec,
required this.width,
required this.height,
required this.nbFrames,
required this.durationSeconds,
this.declaredFps,
this.hasAudio = false,
this.hasAlpha = false,
});