除了 Flutter 中的 ffmpeg 之外,还有其他选项可以处理视频编辑吗?
Is there other options to work with video editing than ffmpeg in Flutter?
我有一个创建视频剪辑的应用程序。我正在使用 FFmpeg 制作蒙太奇,但我想知道是否有其他软件包可以完成同样的事情。
video_manipulation
软件包提供了替代方案(仅适用于 iOS)并且不支持 ffmpeg
,因为:
FFmpeg won`t be implemented due to licensing, extra overhead from the ffmpeg binaries and overall slow performance.
包基于AVFoundation
。
tapioca
软件包提供了另一种选择(针对 Android 和 iOS),目前基于 AVFoundation
用于 iOS 和 Mp4Composer-android
对于 Android.
我有一个创建视频剪辑的应用程序。我正在使用 FFmpeg 制作蒙太奇,但我想知道是否有其他软件包可以完成同样的事情。
video_manipulation
软件包提供了替代方案(仅适用于 iOS)并且不支持ffmpeg
,因为:
FFmpeg won`t be implemented due to licensing, extra overhead from the ffmpeg binaries and overall slow performance.
包基于AVFoundation
。
tapioca
软件包提供了另一种选择(针对 Android 和 iOS),目前基于AVFoundation
用于 iOS 和Mp4Composer-android
对于 Android.