Collection of audio utilities for decoding/encoding files and streams.
Go to file
DataHoarder 4a7b6f3bea
All checks were successful
continuous-integration/drone/push Build is passing
Added TTA encoder, updated README.md
2022-02-28 15:47:50 +01:00
audio Added TTA encoder, updated README.md 2022-02-28 15:47:50 +01:00
cgo Added MP3 encoding via LAME 2022-02-27 16:43:50 +01:00
hasher Added Hasher / Filter / Sink interfaces and implementation 2022-02-22 19:30:48 +01:00
resources Added Kirika logo 2022-02-22 13:02:22 +01:00
.drone.yml Update CI dependencies 2022-02-28 13:57:21 +01:00
.gitignore Initial commit 2022-02-22 10:35:08 +01:00
.gitmodules Addded samples submodule 2022-02-22 10:44:50 +01:00
go.mod Bump go-fdkaac, add README notes 2022-02-28 14:38:23 +01:00
go.sum Bump go-fdkaac, add README notes 2022-02-28 14:38:23 +01:00
Kirika.go Initial commit 2022-02-22 10:35:08 +01:00
Kirika_test.go Added TTA encoder, updated README.md 2022-02-28 15:47:50 +01:00
LICENSE Initial commit 2022-02-22 10:35:08 +01:00
README.md Added TTA encoder, updated README.md 2022-02-28 15:47:50 +01:00

Kirika

Collection of audio utilities for decoding/encoding files and streams.

  • Channel-based audio consumption/filter chain
  • Raw sample analyzer channels
  • AnalyzerChannel channels / mergers / splitters / trimmers
  • Audio resampler
  • Audio downmixing to stereo/mono
  • Multi-format decoder and encoder

Formats and codecs supported

Codec Container Decoder Analyzer Encoder Notes
FLAC FLAC Adjustable encoding compression level and block size.
TTA TTA Only 16bit encoding
MP3 MP3 - Adjustable encoding bitrate and mode. Decoding via minimp3, encoding via LAME.
Opus Ogg - Adjustable encoding bitrate.
AAC ADTS - Adjustable encoding bitrate and mode (LC, HEv2).

Dependencies

Go >= 1.18

libFLAC (required by goflac)

sudo apt install libflac-dev

libopus and libopusfile (required by go-pus)

sudo apt install libopus-dev libopusfile-dev

libopusenc (required by go-pus)

git clone --depth 1 https://github.com/xiph/libopusenc.git
cd libopusenc
./autogen.sh
./configure --prefix /usr
make
sudo make install

FDK AAC Codec Library (required by go-fdkaac)

git clone --depth 1 https://github.com/mstorsjo/fdk-aac.git
cd fdk-aac
./autogen.sh
./configure --prefix /usr
make -j$(nproc)
sudo make install

LAME (required by go-lame)

sudo apt install libmp3lame-dev

libsamplerate (required by gosamplerate)

sudo apt install libsamplerate0-dev