execute static method

Future<FFprobeSession> execute(
  1. String command
)

Synchronously executes FFprobe command provided. Space character is used to split command into arguments. You can use single or double quote characters to specify arguments inside your command.

Implementation

static Future<FFprobeSession> execute(String command) async =>
    FFprobeKit.executeWithArguments(FFmpegKitConfig.parseArguments(command));