executeWithArguments static method

Future<FFprobeSession> executeWithArguments(
  1. List<String> commandArguments
)

Synchronously executes FFprobe with arguments provided.

Implementation

static Future<FFprobeSession> executeWithArguments(
  List<String> commandArguments,
) async {
  final session = await FFprobeSession.create(
    commandArguments,
    null,
    null,
    null,
  );

  await FFmpegKitConfig.ffprobeExecute(session);

  return session;
}