enableFFmpegSessionCompleteCallback static method

void enableFFmpegSessionCompleteCallback([
  1. FFmpegSessionCompleteCallback? ffmpegSessionCompleteCallback = null
])

Sets a global FFmpegSessionCompleteCallback to receive execution results for FFmpeg sessions.

Implementation

static void enableFFmpegSessionCompleteCallback(
    [FFmpegSessionCompleteCallback? ffmpegSessionCompleteCallback = null]) {
  FFmpegKitFactory.setGlobalFFmpegSessionCompleteCallback(
      ffmpegSessionCompleteCallback);
}