Popularity
4.3
Growing
Activity
1.0
Growing
101
4
17
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.
-
EasyMIDI
EasyMidi is a simple and reliable library for working with standard midi file (SMF)
ONLYOFFICE Docs — document collaboration in your environment
Powerful document editing and collaboration in your app or environment. Ultimate security, API and 30+ ready connectors, SaaS or on-premises
Promo
www.onlyoffice.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)
}