Muhammad Widodo
Muhammad Widodo
> How to compress the video on the callback? 'saveTrimmedVideo' this library doesnt provide compressing feature, so you need use other library to do it. one of the video compress...
try to add `ffmpegCommand: '-c:a aac -c:v copy',` in parameter `saveTrimmedVideo` it works for me
> Hello, I had the same issue, and after adding a debug line here: > > ```diff > FFmpegKit.executeAsync(command, (session) async { > final state = > FFmpegKitConfig.sessionStateToString(await session.getState()); >...