ffmpy3.FFExecutableNotFoundError: Executable 'ffmpeg' not found
很长时间以来,一直在尝试通过安装(pip,PATH变量)来摆脱此错误,但是没有任何帮助。
代码:
import ffmpy
ff = ffmpy.FFmpeg(inputs={path+'/Stage1Rap.wav': None}, outputs={path+'/FinalRap.mp3': ["-filter:a", "atempo=0.5"]})
ff.run()
必须在ffmpy.FFmpeg()中传递带有ffmpeg可执行文件路径的可执行参数。因此,请在您的系统中找到ffmpeg的可执行文件并将其传递。
import ffmpy
ff = ffmpy.FFmpeg(executable='C:\\ffmpeg\\bin\\ffmpeg.exe', inputs={path+'/Stage1Rap.wav': None}, outputs={path+'/FinalRap.mp3': ["-filter:a", "atempo=0.5"]})
ff.run()