need plugin that separates the bass included in the left hand of the piano
Hi,
I am looking for a plugin that separates the bass included in the left hand of the piano.
Like that:
from:
to:
thanks
Hi,
I am looking for a plugin that separates the bass included in the left hand of the piano.
Like that:
from:
to:
thanks
Do you still have an unanswered question? Please log in first to post your question.
Comments
Try this plugin: copy the whole part to the other staff, select it, start the plugin and indicate what is the 'pitch' (a number) above which the notes should be selected (for pitch values see: https://musescore.github.io/MuseScore_PluginAPI_Docs/plugins/html/pitch…). Then click on 'Apply' and check that only the notes you want to delete are selected. Repeat the same operation with the original part after selecting "Select Low Notes". There can't be a plugin that knows what 'bass' is for you...
In reply to Try this plugin: copy the… by ILPEPITO
Nice. That's actually a useful thing to have. I think it combines well with the "copy especial" plugin.
It would be great if you add note-names, accidental, and octave comboBoxes for a more user friendly interface, (if you like to check out the code of "pitches and rhythm transformer" plugin for this).
Anyway, too bad it doesn't work with 4.4.
In reply to Nice. That's actually a… by .ash86
Thinking about it, it would be useful to also add the functionality of being able to select even in a range of pitch... and that would mean having to add six comboBoxes! Too tiring... (For me it is not a problem to think about the 'magic numbers' of the pitch). If you want, I'll give you the authorship of the plugin, to include its functionality in one of your wonderful plugins. Thank you for your appreciation.
In reply to Thinking about it, it would… by ILPEPITO
Oh I forgot, when you say it doesn't work with MScore4 are you referring to my plugin? If so, you're wrong... Of course, an adapted version must be rewritten.
In reply to Oh I forgot, when you say it… by ILPEPITO
This is the maximum effort I can make... eh eh eh eh
In reply to This is the maximum effort I… by ILPEPITO
Not bad at all :) Thanks!
Updated UI and added support for 4.4.
I did not add combo boxes for notes, accidentals, and octave, like in "Pitch and rhythm transformer",
but i made the note names display dynamically to input pitch number.
In reply to Updated UI and added support… by .ash86
Very nice and rational, as certainly all your plugins are. Who knows if the original applicant also liked it, who never lets you know anything...
In reply to Updated UI and added support… by .ash86
Since your creation of the plugin is aesthetically better than mine, i decided to use it instead of mine. I noticed today a setting that i think is not entirely correct: you have put (rightly) control routines to prevent the user from entering incorrect values. However, line 130:
if (+tfNotePitch.inputField.text <= +tfNotePitchLow.inputField.text) {
It should be changed like this:
if (+tfNotePitch.inputField.text < +tfNotePitchLow.inputField.text) {
This is for the simple reason that you might want to select a single pitch instead of a group of pitches, so you should allow the two values to be equal. Then, do as you want...
In reply to Since your creation of the… by ILPEPITO
Good point! I also changed the textField to a spinbox, i thought it might be easier to be able to scroll through notes since chances are that i won´t get the right pitche number i want on the first guess.
Let me know if i missed something, or there is anything that might be nice to add.
Ah, i also deleted the text references on top, now that the note names appear in the text box; not sure they were necessary anymore.
In reply to Good point! I also changed… by .ash86
I find this plugin very useful and the previous version worked fine, but on my system (Linux), this latest one does not work (no selection at all, no matter the options chosen).
In reply to Good point! I also changed… by .ash86
Yes, something is wrong. The log file (which i send you) reports several Type Errors. I'm also trying it in Linux, and as soon as i have time i'll try it in Windows, even if i don't think it's an OS problem, but rather a compatibility between Musescore and some 'controls' (hypothesis to be verified).
In reply to Yes, something is wrong. The… by ILPEPITO
Oops! My bad. I updated the attached file above. fixed now -hopefully :)
In reply to Oops! My bad. I updated the… by .ash86
OK, perfect.
Thanks!
In reply to Oops! My bad. I updated the… by .ash86
OK now it works. Two things: 1) now you can select two identical pitches in 'Select Range', but you forgot to correct the control routine; 2) I think you need to add
currentValue: null
to the 'tfNotePitchLow' control as well, otherwise the arrows don't respond until you enter a value in the text box. In any case, great job!
In reply to OK now it works. Two things:… by ILPEPITO
how about now? I also set the scrolling to start from 60.
In reply to how about now? I also set… by .ash86
Great idea to start from 60...I'll definitely use it (even if with the correction to be able to select a single pitch, which evidently you don't think is useful...). Thank you for your time.
In reply to Great idea to start from 60… by ILPEPITO
Oh damn. I forgot that again! sorry. Not my best day :/
In reply to Oh damn. I forgot that again… by .ash86
ALthough i have second thoughts wether limiting input values is better than just maintaining an error dialog when lower pitch > higher pitch. Anyway, we can go with whichever you prefer.
p.s You might want to add the plugin to the projects page if you havnt already :)
In reply to ALthough i have second… by .ash86
Of course, everyone is free to 'organize' the plugin as they prefer. I leave you the burden of a possible publication, adding your name to the copyright (you are the one who has worked the most) and inserting the beautiful animation you have made. See you soon.