ffprobeExecute static method

Future<void> ffprobeExecute(
  1. FFprobeSession ffprobeSession
)

Synchronously executes the FFprobe session provided.

Implementation

static Future<void> ffprobeExecute(FFprobeSession ffprobeSession) async {
  try {
    await init();
    return _platform
        .ffmpegKitConfigFFprobeExecute(ffprobeSession.getSessionId());
  } on PlatformException catch (e, stack) {
    print("Plugin ffprobeExecute error: ${e.message}");
    return Future.error("ffprobeExecute failed.", stack);
  }
}