安装 使用spleeter出现的问题

1.FileNotFoundError: [WinError 2] 系统找不到指定的文件
根据错误提示:找到lib中的subprocess.py文件
将subprocess.py 中第659行的 shell 值改为 True
安装 使用spleeter出现的问题
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出现的问题
3.spleeter:ffprobe error (see stderr output for detail)
ffmpeg没安装好 安装ffmpeg
下载地址
https://ffmpeg.zeranoe.com/builds/
安装 使用spleeter出现的问题
解压 —> 配置环境变量(右击此电脑 -> 属性 -->高级系统设置 -->环境变量—>将解压的bin目录路径添加在系统的path变量里)
测试: 运行cmd,输入ffmpeg
安装 使用spleeter出现的问题
配置成功

相关文章:

  • 2021-03-30
  • 2022-01-05
  • 2021-04-15
  • 2022-01-19
  • 2021-12-05
  • 2021-07-23
  • 2021-08-20
猜你喜欢
  • 2021-11-27
  • 2022-12-23
  • 2021-09-17
  • 2021-08-02
  • 2021-06-08
  • 2022-12-23
  • 2021-11-15
相关资源
相似解决方案