Popularity
2.5
Declining
Activity
2.6
-
32
4
6

Programming language: Go
License: GNU General Public License v3.0 or later
Tags: Audio/Music    

vorbis alternatives and similar packages

Based on the "Audio/Music" category.
Alternatively, view vorbis alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of vorbis or a related project?

Add another 'Audio/Music' Package

README

vorbis

GoDoc Build Status

This Go package provides a "native" ogg vorbis decoder, but still requires cgo, as it uses inline code from stb_vorbis. Someday, it won't.

The package exports a single function:

var data []byte
…
samples, nchannels, sampleRate, err := vorbis.Decode(data)

This corresponds to stb_vorbis_decode_memory(), but is a little different. Samples is a []int16, corresponding to stb's dynamic array of shorts if you're on the right platforms. The samples seem to be stored native-endian, but I haven't tested many vorbis files. Nchannels is the number of channels, which are interleaved in the samples slice. Err is non-nil if the data is not an ogg vorbis stream according to stb.