Rodolfo
Rodolfo
I am getting the error if I run it in a Background service or another isolate; When I run it in my main Isolate it works fine T_T
Sadly no @duggisetty I am using flutter 3.19.6 The package what I am using for this, is flutter_background_service I have tried using FlutterIsolate; I have used DartPluginRegistrant.ensureInitialized() in my service...
Right now I'm using this ``` @pragma('vm:entry-point') Future compressVideo(Map json) async { final config = VideoCompressionConfig.fromJson(json); List commandParts = ["-i", config.inputPath, "-vcodec", "libx264"]; if (config.crf != null) { commandParts.addAll(["-crf", config.getCRF().toString()]);...