Music library and metadata database. https://radio.animebits.moe/player/hash/3f90704a30f9
Go to file
2022-02-06 17:55:54 +01:00
database update schema, use new Hibiki 2022-01-30 19:14:50 +01:00
store In-place badger key adding 2022-02-06 17:55:54 +01:00
.gitignore Initial commit 2022-01-30 04:39:04 +01:00
go.mod In-place badger key adding 2022-02-06 17:55:54 +01:00
go.sum In-place badger key adding 2022-02-06 17:55:54 +01:00
LICENSE Initial commit 2022-01-30 04:39:04 +01:00
METANOIA.go Use new Hibiki, use different Panako instance with smaller fingerprints 2022-02-05 21:50:40 +01:00
README.md update schema, optimized db ops a bit 2022-02-01 11:49:35 +01:00
schema.sql update schema, optimized db ops a bit 2022-02-01 11:49:35 +01:00

METANOIA

Music library and metadata database.

Dependencies

Go >= 1.17

Hibiki dependencies

Hibiki is an implementation of Panako in Go, and other audio utilities.

Check its native dependencies that must be installed before usage.

Postgres 14+

Test setup

# Create ephemeral postgres database
docker run --rm -p 5432:5432 --name metanoia-postgres \
-e POSTGRES_PASSWORD=metanoia -e POSTGRES_DB=metanoia -e POSTGRES_USER=metanoia -d \
postgres:14

# Insert schema
docker exec -i --env PGPASSWORD=metanoia metanoia-postgres psql --username metanoia metanoia < schema.sql

# Add tracks to database and fingerprint them
CGO_CFLAGS="-march=native -Ofast" go run . \
-connstr "user=metanoia password=metanoia dbname=metanoia sslmode=disable host=127.0.0.1" -printdb ./data/prints \
-cmd add -path /path/to/add

# Query tracks/segments from database
CGO_CFLAGS="-march=native -Ofast" go run . \
-connstr "user=metanoia password=metanoia dbname=metanoia sslmode=disable host=127.0.0.1" -printdb ./data/prints \
-cmd query -path /file/to/query.flac