安装 使用spleeter出现的问题

安装 使用spleeter出现的问题

1.FileNotFoundError: [WinError 2] 系统找不到指定的文件
根据错误提示:找到lib中的subprocess.py文件
将subprocess.py 中第659行的 shell 值改为 True
安装 使用spleeter出现的问题_第1张图片
2.UnicodeDecodeError: ‘utf-8’ codec can’t decode byte 0xb2 in position 10: invalid start byte
根据错误提示:找到ffmpeg.py 文件将第67行的.format(e.stderr.decode())) 改为
.format(e.stderr.decode(“utf8”, “ignore”)))
安装 使用spleeter出现的问题_第2张图片
3.spleeter:ffprobe error (see stderr output for detail)
ffmpeg没安装好 安装ffmpeg
下载地址
https://ffmpeg.zeranoe.com/builds/
安装 使用spleeter出现的问题_第3张图片
解压 —> 配置环境变量(右击此电脑 -> 属性 -->高级系统设置 -->环境变量—>将解压的bin目录路径添加在系统的path变量里)
测试: 运行cmd,输入ffmpeg
安装 使用spleeter出现的问题_第4张图片
配置成功

你可能感兴趣的:(python)