go-miniflac: A Go binding for the miniflac C library
77 views
Skip to first unread message
Woojong Koh
unread,
Aug 24, 2025, 4:07:23 PM (13 days ago) Aug 24
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to golang-nuts
go-miniflac is a Go binding for theminiflac C library. The following is the miniflac description from its author,@jprjr.
> A single-file C library for decoding FLAC streams. Does not use any C library functions, does not allocate any memory.
go-miniflac has avery simple interface, one function and one struct, and has zero external dependencies. However, Cgo must be enabled to compile this package.
*FLAC stands for Free Lossless Audio Codec, an audio format similar to MP3, but lossless, meaning that audio is compressed in FLAC without any loss in quality.