Popularity
4.5
Declining
Activity
2.6
Stable
129
6
19
Programming language: C
License: MIT License
Tags:
Audio And Music
minimp3 alternatives and similar packages
Based on the "Audio and Music" category.
Alternatively, view minimp3 alternatives based on common mentions on social networks and blogs.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of minimp3 or a related project?
Popular Comparisons
README
minimp3
Decode mp3 base on https://github.com/lieff/minimp3
See examples in example directory. make
and make test
test the example.
package main
import (
"io/ioutil"
"github.com/hajimehoshi/oto"
"github.com/tosone/minimp3"
)
func main() {
var file, _ = ioutil.ReadFile("test.mp3")
dec, data, _ := minimp3.DecodeFull(file)
player, _ := oto.NewPlayer(dec.SampleRate, dec.Channels, 2, 1024)
player.Write(data)
}