Raspberry Pi 3 - 如何使用 Python 最新版本安装 FFMPEG

Raspberry Pi 3 - 如何使用 Python 最新版本安装 FFMPEG

我正在尝试在 Raspberry Pi 3 上安装支持 libx265(H265 编码)的 FFMPEG。主要目的是批量转码我的 HD 上的 h264 视频并将其转换为 h265 以节省磁盘空间。

我发现这个指南很有用https://gist.github.com/enzanki-ars/7d67996a90883e928bc1dd2db7ef0351

但目前我在配置过程中收到有关 libx265-dev 的错误(上面链接中的第 116 行):如果你查看配置文件(在 ffmpeg 解压后的文件夹中),你会发现

require_cpp_condition libx265 x265.h "X265_BUILD >= 70"

这会导致下面的控制台错误

ERROR: X265_BUILD >= 70 not satisfied

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
[email protected] mailing list or IRC #ffmpeg on irc.freenode.net.
Include the log file "ffbuild/config.log" produced by configure as this will help
solve the problem.

有人有想法吗?

相关内容