executeWithArguments static method
Synchronously executes FFmpeg with arguments provided.
Implementation
static Future<FFmpegSession> executeWithArguments(
List<String> commandArguments,
) async {
final session = await FFmpegSession.create(
commandArguments,
null,
null,
null,
null,
);
await FFmpegKitConfig.ffmpegExecute(session);
return session;
}