在 macOS 上安装 FFmpeg 并通过 Python 调用的方法

已关闭留言

在 macOS 上安装 FFmpeg,并通过 Python 进行调用和使用,方法比较简单,全程也没什么难度,在此简单做个记录。主要要注意的是在安装 Python 库的时候我们要装的是 ffmpeg-python 这个库,而非 ffmpeg 这个库。

文章目录
隐藏
一、macOS 安装 FFmpeg
二、安装 Python 库进行调用

一、macOS 安装 FFmpeg

很简单,直接输入下面命令:

brew install ffmpeg

等待安装成功即可。

二、安装 Python 库进行调用

推荐下面的库:

pip install ffmpeg-python

GitHub 地址:https://github.com/kkroening/ffmpeg-python

如果不小心使用了 pip install ffmpeg,那么可以先 pip uninstall ffmpeg,然后重新进行安装 fmpeg-python。

以上就是整个过程。