flutter_video_compress icon indicating copy to clipboard operation
flutter_video_compress copied to clipboard

Generate a new file by compressed video, and provide metadata. Get video thumbnail from a video path, supports JPEG/GIF. To reduce app size not using FFmpeg in IOS.

Results 59 flutter_video_compress issues
Sort by recently updated
recently updated
newest added

'flutter_video_compress/FlutterVideoCompressPlugin.h' file not found

help wanted

### Description I have used the example code of _subscription = _flutterVideoCompress.compressProgress$.subscribe((progress) { debugPrint('progress: $progress'); }); In the debug print it only shows 0.0 and never changes value. The compressing...

bug

### Description Unhandled Exception: MissingPluginException(No implementation found for method compressVideo on channel flutter_video_compress) ### Platform ios ### Code Example (if has) ```dart void main() { } ``` ### Expected solution

help wanted

### Description ``` final compressedVideo = await videoCompress.compressVideo( file.path, quality: videoQuality, deleteOrigin: false, startTime: 0, duration: 5, includeAudio: true ); ``` in this case, duration does not work but, when...

bug

### Description I want to cut video when compress using parameter duration and startTime, but it not working ### Platform IOS|Android|Both|Other ### Backtracking step (if has) ### Code Example (if...

bug

Has it been abandoned. Shall I look at using ffmpeg directly instead.

### Description Provide detailed contextual explanations to help us understand After upgrading from an older version (I am not sure which) the compression progress subscription no longer fires. ### Platform...

bug

I tried to run the sample file and didn't find this feature. How do you complete this function? ![image](https://user-images.githubusercontent.com/27147542/76435897-8c948300-63f2-11ea-87cd-d6994c2a6659.png)

help wanted

我的项目里添加use_frameworks!会造成版本冲突兼容性的问题,于是我把use_frameworks!注释,仅仅添加如下代码 pre_install do |installer| # workaround for https://github.com/CocoaPods/CocoaPods/issues/3289 Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {} 报错找不到一个.h文件,这该如何解决,是否压缩视频有oc语言的包

final info = await _flutterVideoCompress.getMediaInfo(file.path); debugPrint(info.toJson().toString());

bug