I am having a problem, getting the an error message
WARNING:spleeter:module 'ffmpeg' has no attribute 'probe'
I installed ffmpeg via a zip from https://ffmpeg.zeranoe.com/builds/
Also made a PATH to the bin folder of ffmpeg but still nothing
1.
Installed python 3.7.5 64bit
download spleeter from github
pip install spleeter
download and unzip ffmpeg from https://ffmpeg.zeranoe.com/builds/
create PATH for ffmpeg
pip install ffmpeg
install tensorflow==1.14.0 (instead of 2.0.0 because i got error message from it)
2.
run separate command: spleeter separate -i gilli.mp3 -p spleeter:2stems -o gillistems2
3.
Got error: WARNING:spleeter:module 'ffmpeg' has no attribute 'probe'
PS C:\Users\Christoffer\Downloads\VA-MusicBits_Mixtape_Vol._9-WEB-MP3-2018-MusicBits> spleeter separate -i gilli.mp3 -p spleeter:2stems -o gillistems2
INFO:spleeter:Downloading model archive https://github.com/deezer/spleeter/releases/download/v1.4.0/2stems.tar.gz
INFO:spleeter:Extracting downloaded 2stems archive
INFO:spleeter:2stems model file(s) extracted
INFO:spleeter:Loading audio b'gilli.mp3' from 0.0 to 600.0
WARNING:spleeter:module 'ffmpeg' has no attribute 'probe'
PS C:\Users\Christoffer\Downloads\VA-MusicBits_Mixtape_Vol._9-WEB-MP3-2018-MusicBits>
| OS | Windows 64bit
| Installation type | / pip
try
pip uninstall ffmpeg
and
pip install ffmpeg-python
this should fix the problem
Okay i found the solution with your help :))
What you suggested unfortunately didn't work. but then i tried:
pip uninstall ffmpeg-python
and as you suggested
pip install ffmpeg-python
And it worked! So thanks alot with the help :)
Most helpful comment
Okay i found the solution with your help :))
What you suggested unfortunately didn't work. but then i tried:
pip uninstall ffmpeg-pythonand as you suggested
pip install ffmpeg-pythonAnd it worked! So thanks alot with the help :)