如何使用 libwebp 为 android 构建 ffmpeg?
How to build ffmpeg with libwebp for android?
我需要使用 ffmpeg (v2.8) 将 mp4 转换为 webp,如何使用 libwebp 为 android 构建 ffmpeg?
我用谷歌搜索,但几乎没有关于使用 libwebp 构建 ffmpeg 的信息。
我尝试添加配置:
--enable-libwebp
--enable-muxer=webp
--enable-encoder=libwebp
但是我遇到了以下编译错误。
ERROR: libwebp not found using pkg-config
If you think configure made a mistake, make sure you are using the latest
version from Git. If the latest version fails, report the problem to the
ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
Include the log file "config.log" produced by configure as this will help
solve the problem.
config.log是:
check_pkg_config libwebp >= 0.2.0 webp/encode.h WebPGetEncoderVersion
false --exists --print-errors libwebp >= 0.2.0
ERROR: libwebp not found using pkg-config
我按照以下步骤解决了问题:
- 通过 ndk-build 构建 libwebp
- 将*.a和*.h添加到项目下的一个文件夹中,比如libwebp-armv7a
- link 没有 pkg-config 的 webp
@halfelf 在评论中提到的方式是针对 PC 构建的,而不是针对 Android 移动平台。
我需要使用 ffmpeg (v2.8) 将 mp4 转换为 webp,如何使用 libwebp 为 android 构建 ffmpeg?
我用谷歌搜索,但几乎没有关于使用 libwebp 构建 ffmpeg 的信息。
我尝试添加配置:
--enable-libwebp
--enable-muxer=webp
--enable-encoder=libwebp
但是我遇到了以下编译错误。
ERROR: libwebp not found using pkg-config
If you think configure made a mistake, make sure you are using the latest
version from Git. If the latest version fails, report the problem to the
ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
Include the log file "config.log" produced by configure as this will help
solve the problem.
config.log是:
check_pkg_config libwebp >= 0.2.0 webp/encode.h WebPGetEncoderVersion
false --exists --print-errors libwebp >= 0.2.0
ERROR: libwebp not found using pkg-config
我按照以下步骤解决了问题:
- 通过 ndk-build 构建 libwebp
- 将*.a和*.h添加到项目下的一个文件夹中,比如libwebp-armv7a
- link 没有 pkg-config 的 webp
@halfelf 在评论中提到的方式是针对 PC 构建的,而不是针对 Android 移动平台。