-
Notifications
You must be signed in to change notification settings - Fork 8.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Audioread "no backend" issue #410
Comments
ghost
added
good first issue
Good for newcomers
help wanted
Extra attention is needed
labels
Jul 9, 2020
Can someone from the community look into this? First, to see if soundfile can be a complete replacement for |
ghost
removed
good first issue
Good for newcomers
help wanted
Extra attention is needed
labels
Jul 10, 2020
This issue will be resolved by PR #414 . |
ghost
closed this as completed
Jul 10, 2020
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
This comes up very frequently for Windows users.
pip install -r requirements.txt
does not install a backend for audioread (a dependency of librosa). This causes an exception when loading any file that requires conversion, such as .mp3.Can we make use of soundfile to load and convert audio files, instead of librosa.load? We already have soundfile in requirements.txt and it automatically installs all prerequisites on Windows and macOS. Linux users need to install
libsndfile1
.This will prevent users from encountering the "no backend" error. Alternatively we can add a step to README.md asking the user to install ffmpeg before running the toolbox. But this seems more elegant if it works.
The text was updated successfully, but these errors were encountered: