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
Some Midi file unable to retrieve the mode and root of the key_signatures. This problem unable to allow us to transpose our tracks.
interval = song.key_signatures[0].root if song.key_signatures[0].mode == "major": #Convert to CMAJ if interval > 0: song.transpose(-interval) song.key_signatures[0].root = 0 elif song.key_signatures[0].mode == "minor": #Convert to AMin if interval < 9: song.transpose(interval) elif interval > 9: song.transpose(-interval) song.key_signatures[0].root = 9
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some Midi file unable to retrieve the mode and root of the key_signatures.
This problem unable to allow us to transpose our tracks.
The text was updated successfully, but these errors were encountered: