We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
x, sr = li.load(f, sampling_rate) throws "TypeError: load() takes 1 positional argument but 2 were given"
x, sr = li.load(f, sampling_rate)
I fixed mine by explicitly declaring the variable, as the example in the librosa docs: x, sr = li.load(f, sr=sampling_rate)
x, sr = li.load(f, sr=sampling_rate)
its a simple fix, so, you might consider updating it. Thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
x, sr = li.load(f, sampling_rate)
throws "TypeError: load() takes 1 positional argument but 2 were given"
I fixed mine by explicitly declaring the variable, as the example in the librosa docs:
x, sr = li.load(f, sr=sampling_rate)
its a simple fix, so, you might consider updating it.
Thanks.
The text was updated successfully, but these errors were encountered: