fromMessage static method

FFmpegStatistics? fromMessage(
  1. String message
)

Implementation

static FFmpegStatistics? fromMessage(String message) {
  final RegExpMatch? match = statisticsRegex.firstMatch(message);
  if (match != null) {
    return FFmpegStatistics(
      videoFrameNumber: int.parse(match.group(1)!),
      videoFps: double.parse(match.group(2)!),
      videoQuality: double.parse(match.group(3)!),
      size: int.parse(match.group(4)!),
      time: _timeToMs(match.group(5)!),
      bitrate: double.parse(match.group(6)!),
      // final bitrateUnit = match.group(7);
      speed: double.parse(match.group(8)!),
    );
  }

  return null;
}