enableFFprobeSessionCompleteCallback static method

void enableFFprobeSessionCompleteCallback([
  1. FFprobeSessionCompleteCallback? ffprobeSessionCompleteCallback = null
])

Sets a global FFprobeSessionCompleteCallback to receive execution results for FFprobe sessions.

Implementation

static void enableFFprobeSessionCompleteCallback([
  FFprobeSessionCompleteCallback? ffprobeSessionCompleteCallback = null,
]) {
  FFmpegKitFactory.setGlobalFFprobeSessionCompleteCallback(
    ffprobeSessionCompleteCallback,
  );
}