gpt4 book ai didi

python - 将ffmpeg安装到虚拟环境

转载 作者:行者123 更新时间:2023-12-04 22:46:00 26 4
gpt4 key购买 nike

我正在尝试安装 ffmpeg为了在 OpenAI 上使用它来录制视频。我使用 brew install ffmpeg 安装了它但不知何故,当我编译我的代码时,我得到了同样的错误,就像我的 virtualenv 无法识别该包我在哪里工作。

Python 控制台上的错误:

raise error.DependencyNotInstalled("""Found neither the ffmpeg nor avconv executables. On OS X, you can install ffmpeg via `brew install ffmpeg`. On most Ubuntu variants, `sudo apt-get install ffmpeg` should do it. On Ubuntu 14.04, however, you'll need to install avconv with `sudo apt-get install libav-tools`.""")

但是,当我执行 which ffmpeg我得到了以下路径 /usr/local/bin/ffmpeg .

好像是 python 例如需要一个特定的命令来安装这个包到它的环境中,对于 也是一样的。虚拟环境 ?

提前致谢。

最佳答案

这是不可能的。 FFmpeg 是一个单独的应用程序。如果你需要在python中使用ffmpeg,你要么需要pip install python 的包装器(例如 ffmpeg-pythonffmpy 等)。但是这些包装器并没有使用 FFmpeg 的全部功能。

相反,我建议使用 subprocess 在 python 中执行命令行 FFmpeg 命令。 .

引用:

  • Running cmd in python (ffmpeg)
  • Using ffmpeg with Python 2.7
  • 关于python - 将ffmpeg安装到虚拟环境,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48811312/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com