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
Thank you for the amazing library!
When trying to convert many mscz files in one process to midi, I always get error below:
[1] 67030 bus error node script.js
and the process terminates.
I am using the snippet from readme.md as below, iterating through an array of file[]:
const msczdata = fs.readFileSync(file); const score = await WebMscore.load("mscz", msczdata, [], false); const midi = await score.saveMidi(); fs.writeFileSync(midi_path, midi); score.destroy();
When script is run for 10 files, no bus error is thrown. When script is run with thousands of files, it always throws.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thank you for the amazing library!
When trying to convert many mscz files in one process to midi, I always get error below:
[1] 67030 bus error node script.js
and the process terminates.
I am using the snippet from readme.md as below, iterating through an array of file[]:
When script is run for 10 files, no bus error is thrown. When script is run with thousands of files, it always throws.
The text was updated successfully, but these errors were encountered: