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
For instance with: var note = MidiEvent.createNote({ time: 0, duration: 1000, pitch: 60, channel: 0, volume: 90 });
I believe this is caused by the function MidiEvent.noteOn that takes the duration parameter:
time: note.duration || duration || 0
instead of setting the start time to 0.
The text was updated successfully, but these errors were encountered:
Thanks for reporting Arthur, I will be looking into that issue tonight!
Sorry, something went wrong.
No branches or pull requests
For instance with:
var note = MidiEvent.createNote({
time: 0,
duration: 1000,
pitch: 60,
channel: 0,
volume: 90
});
I believe this is caused by the function MidiEvent.noteOn that takes the duration parameter:
time: note.duration || duration || 0
instead of setting the start time to 0.
The text was updated successfully, but these errors were encountered: