要在Python中安装FFmpeg,您有以下几种方法可选:
pip install ffmpeg-python
conda install -c conda-forge ffmpeg
下面是一个使用subprocess模块执行FFmpeg命令的示例:
import subprocess
ffmpeg_command = 'ffmpeg -i input.mp4 output.avi'
subprocess.call(ffmpeg_command, shell=True)
请根据您的操作系统和需求,选择适合您的安装方法。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: python中音频文件怎么读取