You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using video_compress 3.1.0, flutter 3.19.1 and Dart 3.3.0
Debugging console output:
flutter: Video compression canceled with error: MissingPluginException(No implementation found for method setLogLevel on channel video_compress)
[ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: MissingPluginException(No implementation found for method cancelCompression on channel video_compress)
#0 MethodChannel._invokeMethod (package:flutter/src/services/platform_channel.dart:332:7)
@Tetrazine Did you do anything besides importing the package in the pubspec.yaml? I tried video_compressV2 and I am still running into the MissingPluginException error.
Also, was it working for you on both Android and iOS?
I'm using video_compress 3.1.0, flutter 3.19.1 and Dart 3.3.0
Debugging console output:
flutter: Video compression canceled with error: MissingPluginException(No implementation found for method setLogLevel on channel video_compress)
[ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: MissingPluginException(No implementation found for method cancelCompression on channel video_compress)
#0 MethodChannel._invokeMethod (package:flutter/src/services/platform_channel.dart:332:7)
#1 Compress._invoke (package:video_compress/src/video_compress/video_compressor.dart:41:13)
#2 Compress.cancelCompression (package:video_compress/src/video_compress/video_compressor.dart:168:5)
And this is the corresponding code:
CustomTextButton(
onPressed: () async {
MediaInfo? info = await controller.compressVideo(
Get.find().videoFile3);
},
text: 'Compress Video',
),
}
The text was updated successfully, but these errors were encountered: