-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
Need a way to detect beats #19
Comments
Sounds like a great idea! |
If you create the MIDI files yourself, you can insert some special MIDI message or a pseudo-event at the required timestamps, and then watch for that message while playing it back. |
You need quite a lot of og patterns to implement a drum machine for practical uses, and I know of no way to automate insertion of timestamps. I'm planning on implementing in software the BeatBuddy drum machine for which all midi files (drum patterns) and samples needed for a full fledged version is available on their site in the form of Beatbuddy Manager found here: BeatBuddy Manager v 1.6.4.1. Nothing like this exists as software anywhere which is VERY strange. Time to change this. 😃🚀 |
I'm trying to make a pattern player (a drum machine) and need a way to switch between patterns in a synchronized manner.
So It would be nice if there was an easy way to detect and act on beats while the player is playing. Something like:
would probably do.
Something like
player.on('tick', () => {})
might also be usefull, but perhaps to demanding ?The text was updated successfully, but these errors were encountered: