Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 902 Bytes

README.md

File metadata and controls

38 lines (25 loc) · 902 Bytes

go-fdkaac

fork from lib-fdkaac(https://github.com/izern/fdk-aac)

Usage

First, get the source code:

go get -d github.com/izern/go-fdkaac

Then, compile the fdk-aac:

cd $GOPATH/src/github.com/izern/go-fdkaac &&
tar -zxvf fdk-aac-2.0.0.tar.gz && 
cd fdk-aac-2.0.0/ && ./configure --prefix=/usr/local/fdk-aac-2.0.0 && make && make install &&
cd ..

Done, import and use the package:

There are an example of AAC audio packets in ADTS:

To run all examples:

cd $GOPATH/src/github.com/izern/go-fdkaac && go test ./...

Winlin 2016