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
midi_to_object() could be refactored to allow setting of ticks_per_beat.
midi_to_object()
Suggestion to use pyramidi::MidiFramer$new()
pyramidi::MidiFramer$new()
#Initialize new pyramidi object new_pyramidi_object <- pyramidi::MidiFramer$new() # update ticks per beat new_pyramidi_object$ticks_per_beat <- 96L
Then, import a midi file into the MidiFramer object. This should allow the ticks_per_beat to be set, and updated across the internal elements.
The text was updated successfully, but these errors were encountered:
pyramidi::MidiFramer$new("file.mid") can be used to import .mid files too, but it will fail when the .mid file does not have tempo.
pyramidi::MidiFramer$new("file.mid")
Sorry, something went wrong.
No branches or pull requests
midi_to_object()
could be refactored to allow setting of ticks_per_beat.Suggestion to use
pyramidi::MidiFramer$new()
Then, import a midi file into the MidiFramer object. This should allow the ticks_per_beat to be set, and updated across the internal elements.
The text was updated successfully, but these errors were encountered: