You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bitwig Studio has the option to switch between "piano-roll editor" and "drum editor" views when editing midi clips.
The Drum Editor view is the same as the piano roll except it hides all unused keys and it displays note names (including any custom names like "bass drum", "closed hi-hat", "snare", etc.) rather than displaying piano keys.
This would be beneficial for percussion in SoundFonts or drum machine plugins since users can opt into a view that hides keys they don't use. And custom note names can eliminate guesswork when finding the desired percussion sound.
Implementation Details / Mockup
Reference design
Here are screenshots of Bitwig's "piano-roll editor" and "drum editor" views:
Notice how the unused keys are hidden in drum editor mode.
The widget in the upper left corner controls which mode is active. I imagine a similar button could be added inside the LMMS piano roll.
Custom note names
Plugin support
Vestige: I do not know whether the VST API supports note names (probably?). If so, our AEffect interface would need to add support for it before Vestige could provide custom note names.
LV2: LV2 does not seem to officially provide this information, though Ardour provides a semi-popular MIDI naming extension which we may be able to use ourselves. Plugins that implement this extension include AVL Drumkits, liquidsfz, setBfree, and probably others.
Sf2 Player: The SF2 format does not seem to directly support note names, but there are two ways around this:
The General MIDI standard defines drum kit note names, and drum kits are typically in bank 128, so note names for each key could be obtained from a lookup table when a drum kit is being used
Each SF2 preset uses samples, and each SF2 sample can have a name and key ranges which can be queried through the fluidsynth API. So if a user is using a preset under bank 128, it can be assumed to be a drum kit, and note names can be obtained from its samples. This is probably the best approach.
GIG Player: GIG files might have note name support similar to SF2
Implementation details
A generic LMMS note names interface could be created and plugins that support it can implement it
If a plugin does not support custom note names, we can just fall back on the default note names ("C", "C#", etc).
It may be beneficial to also allow users to provide their own custom note names. If we do this, it would override both the default name and any custom name given by the plugin API.
Maybe users would still want to know the default note name even if they've overridden it manually or if a plugin provided a custom name. In that case, maybe it could be shown in a tooltip.
A clip from the Pattern Editor opened in the Piano Roll could be displayed in drum editor mode by default.
If a midi clip uses the drum editor mode, it could affect how it is drawn in the Song Editor or Pattern Editor too. This could make the clips look nicer.
Please search the issue tracker for existing feature requests before submitting your own.
I have searched all existing issues and confirmed that this is not a duplicate.
The text was updated successfully, but these errors were encountered:
I know we have a collapse-piano-roll ticket, but this is even more advanced. Imo a lot of change for drums in sf2 and some percussion-plugins.
A more versatile way could be that any sound-clip could be allocated to any key, (and taking that even further: any key could be layered on another key, allowing chords to be played on one key)
Enhancement Summary
Bitwig Studio has the option to switch between "piano-roll editor" and "drum editor" views when editing midi clips.
The Drum Editor view is the same as the piano roll except it hides all unused keys and it displays note names (including any custom names like "bass drum", "closed hi-hat", "snare", etc.) rather than displaying piano keys.
This would be beneficial for percussion in SoundFonts or drum machine plugins since users can opt into a view that hides keys they don't use. And custom note names can eliminate guesswork when finding the desired percussion sound.
Implementation Details / Mockup
Reference design
Here are screenshots of Bitwig's "piano-roll editor" and "drum editor" views:
Notice how the unused keys are hidden in drum editor mode.
The widget in the upper left corner controls which mode is active. I imagine a similar button could be added inside the LMMS piano roll.
Custom note names
Plugin support
AEffect
interface would need to add support for it before Vestige could provide custom note names.Implementation details
Please search the issue tracker for existing feature requests before submitting your own.
The text was updated successfully, but these errors were encountered: