用自制软件安装ffmpeg吗?


18

我正在尝试在运行osx的Mac(El Capitain)上安装带有自制软件的ffmpeg及其库。安装完成,但是似乎仅安装了ffmpeg而不是ffprobe或drawtext。

我尝试使用以下命令重新安装:

brew install ffmpeg --with-fdk-aac --with-ffplay --with-freetype --with-frei0r --with-libass --with-libvo-aacenc --with-libvorbis --with-libvpx --with-opencore-amr --with-openjpeg --with-opus --with-rtmpdump --with-schroedinger --with-speex --with-theora --with-tools

..但是我明白了

Warning:ffmpeg-3.0.2 already installed, it's just not linked

我想念什么?我尝试删除并重试安装,但问题仍然存在。


4
brew link ffmpeg
nohillside

解决了。那给了我
朱利安·J

brew link --overwrite ffmpeg修复了它。谢谢。
朱利安·J

Answers:


20

要回答这个问题,您需要连接起来ffmpeg,但是我也要进行一些打扫房间。

首先从系统中删除ffmpeg:

$ brew uninstall ffmpeg

现在,更新您所有的冲煮包装和参考。

$ brew update
$ brew upgrade --all
$ brew cleanup

现在安装ffmpeg在您的系统上,并将其链接:

$ brew install ffmpeg --force
$ brew link ffmpeg

现在您应该很好了。


2
为我工作;注意:在OS X El Capitan 10.11.6上,ffmpeg没有--force指令:Warning: ffmpeg: this formula has no --force option so it will be ignored!
khaverim

1
感谢macOS Mojave 10.14.2版。
DimaSan '19

谢谢完全与MACOS X CATALINA BETA一起使用我非常喜欢您
Ash Ash

--all不再是一种选择。使用brew upgrade
马修·巴克莱
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.