错误提示 ERROR: libx264 not found 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.libera.chat. Include the log file "ffbuild/config.log" produced by configure as this will help
时间: 2024-03-26 14:39:05 浏览: 64
PHP编译configure时常见错误的总结
这个错误提示意味着 FFmpeg 编译时找不到 libx264 库。
解决方法是安装 libx264 库并重新编译 FFmpeg。具体步骤如下:
1. 下载 libx264 库的源码,可以从官方网站上下载或使用包管理器进行安装。
2. 编译和安装 libx264 库:
```sh
./configure --prefix=/usr/local --enable-shared
make
sudo make install
```
3. 重新编译 FFmpeg,确保开启了 libx264 支持:
```sh
./configure --enable-gpl --enable-libx264 --enable-libfdk-aac --enable-nonfree --enable-shared
make
sudo make install
```
通过这些步骤,错误提示应该就可以解决了。如果还有问题,可以查看 `ffbuild/config.log` 文件,或者将问题报告给 FFmpeg 社区。
阅读全文