-
-
Notifications
You must be signed in to change notification settings - Fork 55
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
filesystem.writeBinaryFile() appears to not work on Array Buffers above a certain size #74
Comments
Hey, I am interested to work on this issue, Please assign to me |
hey @dimitrinossar, are you still facing this issue? could please provide some more information like the operating system you are using? and what is the size limit after which the function stops working? |
@shalithasuranga It seems like if the file size is big then this kind of issue occurring |
hii i can slove the issue please assign it to me |
Hello, @dimitrinossar, looks like we need to implement file write streams, similar to Note: I've removed Thanks 🎉 |
I ran into this issue a few months back. Downloaded files somewhere between 20-30mb and greater started causing this issue. I was testing using ubuntu 22.04. |
Hi, I'm writing a small project to convert audio files and I've found what I think might be an issue with the writeBinaryFile API. Array Buffers that are above a certain size seem to be choking the program but it won't throw any obvious errors.
Logging the output will always return a valid uint8array regardless of the file format and lossy audio files (such as mp3) will write to the location fine and continue on with the program's control flow but larger lossless audio files (flac, wav) seem to hang endlessly on the await but importantly refuse to throw an NE_FS_FILWRER error.
To give an idea of the sizes I'm dealing with, my limited test involved an mp3 around 11MB, a flac around 32MB, and a wav around 58mb.
The text was updated successfully, but these errors were encountered: