在安装过程中一直报错:
Error installing ffmpeg-kit-ios-full-gpl (ios) , requested URL returned error: 404
pod 'ffmpeg-kit-ios-full'
因为官方删除了了包。
解决办法,用社区维护的「预编译+Podspec」仓库;
有位同学把 v6.0 的 xcframework 预编译好,并且写好了一个可用的 podspec,直接在 Podfile 里这样写:
pod 'ffmpeg-kit-ios-full', :podspec => 'https://raw.githubusercontent.com/luthviar/ffmpeg-kit-ios-full/main/ffmpeg-kit-ios-full.podspec'
然后保存、安装;
pod install
亲测有效