This repository has been archived on 2019-12-11. You can view files and clone it, but cannot push or open issues/pull-requests.
jlaudio/lib/flac/flac_test.go

15 lines
189 B
Go

package flac
import (
"log"
"testing"
)
func TestGetMetadata(t *testing.T) {
md, err := GetMetadata("test_files/audio.flac")
if err != nil {
t.Fatal(err)
}
log.Printf("%v", md)
}