1

Even though I installed ffmpeg , I got error saying "ERROR:spleeter:ffmpeg binary not found"

how can I solve this problem

I installed ffmpeg using "pip install ffmpeg"

KWSKWS
  • 11
  • 2
  • `ffmpeg-python` is a package which runs ffmpeg program. So you need to install the program in order to use it. Go to https://ffmpeg.org – kesh Mar 22 '22 at 13:17

1 Answers1

0

Try this:

pip uninstall ffmpeg

And then:

pip install ffmpeg-python
Tyler2P
  • 2,324
  • 26
  • 22
  • 31