FFmpegStatistics.fromIOStatistics constructor

FFmpegStatistics.fromIOStatistics(
  1. Statistics s
)

Implementation

FFmpegStatistics.fromIOStatistics(Statistics s)
    : this(
        videoFrameNumber: s.getVideoFrameNumber(),
        videoFps: s.getVideoFps(),
        videoQuality: s.getVideoQuality(),
        size: s.getSize(),
        time: s.getTime().toInt(),
        bitrate: s.getBitrate(),
        speed: s.getSpeed(),
      );