├── .gitignore ├── LICENSE ├── README.md ├── encoder.go ├── encoder_test.go ├── go.mod ├── id3.go ├── id3_test.go └── types.go /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | /bin 3 | /pkg 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viert/go-lame/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viert/go-lame/HEAD/README.md -------------------------------------------------------------------------------- /encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viert/go-lame/HEAD/encoder.go -------------------------------------------------------------------------------- /encoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viert/go-lame/HEAD/encoder_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/viert/go-lame 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /id3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viert/go-lame/HEAD/id3.go -------------------------------------------------------------------------------- /id3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viert/go-lame/HEAD/id3_test.go -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viert/go-lame/HEAD/types.go --------------------------------------------------------------------------------