Implementation of Panako in Go, and other utilities. Panako is an acoustic fingerprinting system.
Go to file
DataHoarder c1d7d181cd
Upgrade to go 1.21, upgrade dependencies
2023-10-15 20:10:59 +02:00
cgo Upgrade to go 1.21, upgrade dependencies 2023-10-15 20:10:59 +02:00
panako Upgrade to go 1.21, upgrade dependencies 2023-10-15 20:10:59 +02:00
resources Add Hibiki logo 2022-02-01 09:01:44 +01:00
utilities Expose all hash types, remove thread lock 2022-07-13 22:29:34 +02:00
.gitignore Initial commit, WiP 2022-01-23 21:55:49 +01:00
Hibiki.go Implemented Panako with matching prints. FLAC/MP3 decoder, audio resampler. Fixed errors in transcription. Test files not included 2022-01-26 23:57:15 +01:00
Hibiki_test.go Reduce pointer allocation, update dependencies 2022-11-09 22:07:50 +01:00
LICENSE Initial commit, WiP 2022-01-23 21:55:49 +01:00
README.md Change README to mention Kirika usage 2022-02-22 13:21:13 +01:00
go.mod Upgrade to go 1.21, upgrade dependencies 2023-10-15 20:10:59 +02:00
go.sum Upgrade to go 1.21, upgrade dependencies 2023-10-15 20:10:59 +02:00

README.md

Hibiki

Implementation of Panako in Go, and other utilities.

Panako is an acoustic fingerprinting system.

Dependencies

Go >= 1.18

c-gaborator (required by goborator)

git clone --recursive --depth 1 https://git.gammaspectra.live/S.O.N.G/c-gaborator
cd c-gaborator && mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS_RELEASE="-march=native" -DCMAKE_C_FLAGS_RELEASE="-march=native" \
-DCMAKE_INSTALL_PREFIX="/usr"
make
sudo make install

Kirika dependencies

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

Check its native dependencies that must be installed before usage.