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
The .nmrium file is compressed by default using ZIP (first bytes are PK)
This allows to win a lot of space, from 53.8 Mb to 21.3 Mb.
However this is also a super slow process ... Without compression it would take 2s and with compression it takes 20s !
We could try to compress the data using pako.gzip (anyway there is only one file so it could be as well gzip and not zipped).
Chrome also has a native API for compression: https://developer.mozilla.org/en-US/docs/Web/API/Compression_Streams_API and this could be tested as well.
@targos WDYT ?
The text was updated successfully, but these errors were encountered:
We should probably go towards gzip rather than zip for internal compression of .nmrium.
This should be managed likely be filelist-utils.
Sorry, something went wrong.
No branches or pull requests
The .nmrium file is compressed by default using ZIP (first bytes are PK)
This allows to win a lot of space, from 53.8 Mb to 21.3 Mb.
However this is also a super slow process ... Without compression it would take 2s and with compression it takes 20s !
We could try to compress the data using pako.gzip (anyway there is only one file so it could be as well gzip and not zipped).
Chrome also has a native API for compression: https://developer.mozilla.org/en-US/docs/Web/API/Compression_Streams_API and this could be tested as well.
@targos WDYT ?
The text was updated successfully, but these errors were encountered: