-
Notifications
You must be signed in to change notification settings - Fork 18
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
ffmpeg must be built with soxr enabled #156
Comments
I was able to get it to work building from source with something like this:
|
Are you on ubuntu? You can also try We added some install instructions here: #158 Thank you for helping us test the software. This package will be out of alpha soon, and we will hopefully test it on a handful of platforms from scratch. |
I'm using an Ubuntu singularity container on a compute cluster, so I don't have root access to install through Thanks for putting all of this together, we're excited about this challenge! :) |
@auroracramer okay, good to know. When we finalize the preprocessing, we will be releasing the preprocessed datasets as tar-files, so running luigi+sox preprocessing will not be necessary for end-user competitors. We are glad you are excited about the challenge! We are too. Tell your friends, tell your enemies. The more people who enter, the more attention your entry and PMLR writeup will get :) |
@auroracramer moving this issue to the |
resample_wav specifies
soxr
as the resampler forffmpeg
, but when I runheareval.tasks.runner
, the assertion fails. Upon further inspection (after commenting out the error redirection to/dev/null
and reporting the error code onAssertionError
), I get the following errors:I'm using the
ffmpeg==4.3.2
(from the conda-forge build), but it appears thatsoxr
is not enabled by default (perhaps according to this) and must be explicitly enabled when building from source according to this page.What is the best way to reliably install
ffmpeg
withlibsoxr
support? If it is from source, it might be good to mention this in the documentation and warn users not to install using conda.The text was updated successfully, but these errors were encountered: