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
MemoryError Traceback (most recent call last) MemoryError: Unable to allocate 85.3 GiB for an array with shape (190747, 60002) and data type float64
I try simple usage same like on README.md but I have that error My audio duration is just 4.3 second
Thank you
The text was updated successfully, but these errors were encountered:
I had a problem like this and solved it changing my audio to mono.
aud_seg = AudioSegment.from_wav(wav_filename) aud_seg = aud_seg.set_channels(1) aud_seg.export(wav_filename, format="wav")
Sorry, something went wrong.
We should probably raise a warning or an error somewhere when people are inputting data with too many channels, or where data is transposed.
No branches or pull requests
MemoryError Traceback (most recent call last)
MemoryError: Unable to allocate 85.3 GiB for an array with shape (190747, 60002) and data type float64
I try simple usage same like on README.md but I have that error
My audio duration is just 4.3 second
Thank you
The text was updated successfully, but these errors were encountered: