ffprobeRun function

Future<ProcessResult> ffprobeRun({
  1. required List<String> arguments,
})

Implementation

Future<ProcessResult> ffprobeRun({required List<String> arguments}) async {
  return await processRun('ffprobe', arguments: arguments);
}