gpt4 book ai didi

python - FFmpeg os.system 命令不起作用但在终端中工作

转载 作者:行者123 更新时间:2023-12-04 22:58:39 27 4
gpt4 key购买 nike

我已经通过网站下载了 ffmpeg,并通过终端运行了一些命令来确认它的安装。

在终端中运行命令“ffmpeg”时,它返回

 ffmpeg version 4.2.2 Copyright (c) 2000-2019 the FFmpeg 
developers
built with Apple LLVM version 10.0.0 (clang-1000.11.45.5)

如果我输入 Python
import os
os.system ('ffmpeg')

它返回
 os.system ('ffmpeg')
sh: ffmpeg: command not found
Out[25]: 32512

有任何想法吗?

解决方案:
 ffmpeg = '/bin/ffmpeg' #path to the binary file

os.system(ffmpeg)

输出:
os.system (ffmpeg)
ffmpeg version 4.2.2 Copyright (c) 2000-2019 the FFmpeg developers
built with Apple LLVM version 10.0.0 (clang-1000.11.45.5)

最佳答案

解决方案:

ffmpeg = '/bin/ffmpeg' #path to the binary file

os.system(ffmpeg)
Output:

os.system (ffmpeg)
ffmpeg version 4.2.2 Copyright (c) 2000-2019 the
FFmpeg developers
built with Apple LLVM version 10.0.0 (clang-1000.11.45.5)

关于python - FFmpeg os.system 命令不起作用但在终端中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59953537/

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