是否有任何飞镖包可以裁剪视频尺寸?或者有什么可能吗?我在我的项目中使用了video_player和chewie,之后我想对其进行裁剪。
发布于 2020-08-30 18:46:07
这里有一个强大的包,可以裁剪视频和更多:flutter_ffmpeg (https://pub.dev/packages/flutter_ffmpeg)
我在剪切视频和获取输出路径方面的代码(可能对某人有用)
Directory appDocDir = await getApplicationDocumentsDirectory();
String appDocPath = appDocDir.path;
String outputPath = appDocPath + "/output.mp4";
await _flutterFFmpeg
.execute(
"-y -i $inputPath -c:v libx264 -filter:v crop=in_w:900 -c:a copy $outputPath")
.then((rc) => print("FFmpeg process exited with rc $rc"));发布于 2020-08-26 17:20:24
是的,请试着检查一下:
发布于 2021-01-26 09:05:59
我可能有点晚了,但我上个月发现了这个包,它适合剪切和修剪视频https://pub.dev/packages/video_editor/example。
https://stackoverflow.com/questions/63601849
复制相似问题