-
Notifications
You must be signed in to change notification settings - Fork 699
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
Piano roll scale note indicators #477
Conversation
This is exciting and interesting. However, we're on a push toward 6.0 right now, and there's no chance of this being included in that release. I hope you can be patient in awaiting our review and comments while the 6.0 process takes place. |
Thanks for the response. I totally understand, at some point you just have to stop accepting new features to get the release out. I'll keep watching for 6.0 and once it comes around I'll update this feature to be based on the most recent source. |
Thanks for getting the ball rolling! A few comments from briefly looking at this:
|
Adds the option to select Root Note and Scale Type for MIDI tracks. Will when color the notes of the piano roll depending on whether or not they are in the key. Also, the root notes will be colored differently.
64ea811
to
f71d012
Compare
Oh, this seems to have gained some interest over the past months. I did some cleanups of the code, removed storing the scale information in the actual midi_track, since this seems to be unnecessary, and rebased everything on top of the current master branch. Right now, I am offering just twelve options for the root note. This should be fine for indicating which notes are in the scale. But I could imagine this to also be useful as a basis for other tools, such as a chord assist. Bottom line is, would it be useful to actually differentiate between, e.g. F# and Gb as a root note? |
I hope this gets some more attention soon. This is currently the most frustrating part of using Ardour, for me right now. As for #/b distinction: Useful? Yes. Strictly Necessary? No. When I collaborate with friends we use ableton and ableton casts Bb as A# even in Dm and while it looks weird, it doesn't impede my ability to compose the way that the lack of a piano roll does. |
We're not ignoring it, but both of the two main developers are deeply immersed in other much more major work right now. For myself, I won't take a look at this until after the nutempo2 branch is finished, merged and more or less ready for release. |
I've reimplemented all the functionality in this branch from scratch. Not because this was actually wrong, but I had some other goals in mind. In particular, the root/mode are properties of the track itself, not the GUI side of things. It's currently in a branch (mode-clamping) but will likely merge soon. I have no idea what the best color for the out-of-key lines are :( |
My first Ardour contribution, hello everyone.
This patch allows to set the root note and scale on midi tracks (New "Signature" submenu in the context menu for a midi track right next to "Note Mode"). It will then replace the piano roll background colors to show which notes are in/out the current scale and where the root notes are. It's functional, but still pretty rough. I hope to get some feedback if this fits with Ardour, how to improve the code, and the functionality itself. Some points:
Having the key and scale information might also aid further features such as a chord assist.