Gadulka is a minimalistic audio player library for Kotlin Multiplatform.
Gadulka wraps the native player functionality from each target in "headless" mode. That is, the library does not provide any UI (this will be up to you). You can read more about my motivations here.
Gadulka is available from Maven Central at the following coordinates:
implementation("eu.iamkonstantin.kotlin:gadulka:1.6.3")
Instantiate the player and call play!
val player = GadulkaPlayer()
player.play(url = "...")
player.stop()
player.release()
Example using Jetpack Compose:
@Composable
fun AudioPlayer() {
val player = rememberGadulkaState()
Row {
Button(
onClick = {
player.play(
"https://download.samplelib.com/wav/sample-12s.wav"
)
}) {
Text("Play")
}
Button(
onClick = {
player.stop()
}) {
Text("Stop")
}
}
}
Et voilà, enjoy the library and feel free to open an issue with any questions, thoughts or comments you may have!
If you would like to track the state of the player (e.g. in a composable), Gadulka comes with a simple convenience function which queries the player state every 300ms:
@Composable
fun AudioPlayer() {
val gadulka = rememberGadulkaLiveState()
Column {
Text(gadulka.state.name)
Text("Volume: ${gadulka.volume}")
Text("Position: ${gadulka.position / 1000}s / ${gadulka.duration / 1000}s")
Row {
Button(
onClick = {
player.play(
"https://download.samplelib.com/wav/sample-12s.wav"
)
}) {
Text("Play")
}
Button(
onClick = {
player.stop()
}) {
Text("Stop")
}
}
}
}
Additional methods to control volume, position and playback rate are also available.
📖 Docs
Gadulka is a traditional Bulgarian bowed string instrument. It's a tiny music instrument which aligned well with the mindset of the library and why the name was chosen.
While my personal projects use a self-hosted Forgejo or take advantage of the fantastic offering of Codeberg, the CI pipeline for Gadulka requires a macOS build in order to test iOS compatibility. This is a very intensive (and expensive) run for which GitHub makes more sense. Of course, this is something that can change in the future.
The library is licensed with the BSD-3-Clause license, more information in LICENSE.
This is a permissive license which allows for any type of use, provided the copyright notice is included.
This library project was initially created from JetBrains's Library Template under the Apache 2.0 license.