repository
0.0.0-20221022213453-763cb73ec5b5
Repository: https://github.com/drgolem/go-opus.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
# README
go-opus
Go bindings for libopus
WIP, learning cgo and audio libs
Example:
go run examples/ogg2raw.go 1.ogg out_1.raw
play raw samples:
ffplay -ar 48000 -ac 2 -f s16le out_1.raw
Check correctness:
ffmpeg -i 1.ogg -f s16le -acodec pcm_s16le ref_1.raw
go run examples/ogg2raw.go 1.ogg out_1.raw
diff ref_1.raw out_1.raw