It is a repository for Jetpack Compose / Compose for Multiplatform widgets for audio apps.
ImageStripKnob
is a knob audio control based on an image strip.
It makes use of KnobMan image resource. If you are curious what this means, go to Knob Gallery. You can use these knobs without coding anything. It is a cheap trick, but offers what people really need. It is used by wide range of people in audio app industry (such as Kontakt instrument, Web audio/music app developers who use webaudio-controls). It gives you a lot of choices:
It respects "Consider making touch targets at least 48x48dp" principle in the Android Accessibility Help guideline. You can override it at your own risk though.
We know what musicians actually want: it is a simple single-fingered vertically draggable knob. No pinching like real knobs required.
Sometimes we want fine-tuning. If you hold 1000 milliseconds (by default) it will enter "fine mode" where the value changes are multiplied by 0.1. It will happen at any time until you release your finger or mouse pointer.
A value label tooltip will be shown when you drag over the knob. Your finger may be hiding it though; you can move the finger to left or right without changing value (to make it possible, we assign no horizontal control, at least for now). The tooltip is customizible - you can pass any @Composable
.
It should be noted that ImageStripKnob
is NOT a Material Design based component. You would be able to add some animation effects by your own (we also welcome contribution if it's optional and looking generally useful).
var paramValue by remember { mutableStateOf(0f) }
Text("Parameter $paramIndex: ")
ImageStripKnob(
drawableResId = R.drawable.knob_image,
value = paramValue,
onValueChange = {v ->
paramValue = v
println("value at $paramIndex changed: $v")
})
Noted that support for Android resource ID is specific to Android platform. If your project is Kotlin Multiplatform, use ImageBitmap
instead.
DiatonicKeyboard
is a diatonic music keyboard control.
In addition, DiatonicKeyboardWithControllers
adds some controllers for the parameters (explained below) to the keyboard. It takes extra space, but makes it more convenient.
Its event handlers receive note number (and additional information in the next versions, unused argument so far).
It supports touch motions. There are two modes regarding how they are handled, up to "moveAction" parameter:
NoteChange
: when it is dragged to another note region, a note off for current note and a new note on will be sent.NoteExpression
: when it is dragged, it will triggeronNoteExpression
callback, for horizontal and vertical dragging, plus the pointer "pressure" if it is supported by device.
Take it like, it works as an MPE (or MIDI 2.0) keyboard too. Note that note changes and note expressions are exclusive behaviors (we cannot do both). Note expression support works only if it is explicitly enabled.
The default note expression ranges on screen is 160.dp, 80dp on all directions (L <-> R, T <-> B).
The value sent to onExpression
event handler ranges between -1.0f..1.0f
.
It is up to you what kind of controls to assign, on X axis, Y axis, and pressure.
It is designed to be touchable on screen but not to become small as a musical keyboard. One optimization made there is different pointer treat on touches and mouse/stylus. For touches, the target note is calculated based on the nearest to the center of the keys. On the other hand, if the input type is mouse or stylus, it expects exact insets.
val noteOnStates = remember { List(128) { 0 }.toMutableStateList() }
DiatonicKeyboard(noteOnStates.toList(),
// you will also insert actual musical operations within these lambdas
onNoteOn = { note, _ ->
noteOnStates[note] = 1
println("note on: $note")
},
onNoteOff = { note, _ ->
noteOnStates[note] = 0
println("note off: $note")
}
)
Add the following implementation
line to your dependencies list:
dependencies {
implementation 'org.androidaudioplugin:compose-audio-controls:+' //replace `+` with your own
}
The API reference is published at https://atsushieno.github.io/compose-audio-controls/ (updated for every new release tagging)
Resident MIDI Keyboard is a straightforward usage example of DianoticKeyboardWithControllers
. (It used to be part of this project, but now has its own home.)
AAP (Audio Plugins For Android) makes use of the keyboard and knob as part of the default native (Compose) UI.
compose-audio-controls is released under the MIT license.
The sample app contains some public-domain images from KnobGallery.