Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 ffmpeg,我需要它来拥有 libfaac,我知道实现这一点的唯一方法是从源代码编译它。我阅读了一堆教程,并安装了 mingw,但我无法运行命令 ./configure 或 make。有什么我遗漏的东西或其他方法吗?
我解决了我的问题。我放弃了 libfaac,而是在 encode_video 的参数中添加了以下代码:audio_codec: "aac", custom: "-strict experimental -q:v 5 -preset slow -g 30" 以使其不尝试使用 libfaac。
另外,我有错误的MinGW。我有 git 版本,但我需要 MSys 来运行诸如 ./configure 和 make 和 make install 之类的命令。