Music library and metadata database. https://radio.animebits.moe/player/hash/3f90704a30f9
Go to file
2022-02-03 20:21:48 +01:00
database update schema, use new Hibiki 2022-01-30 19:14:50 +01:00
store Sort hash entries on append store, added tool to sort databases 2022-02-03 20:21:48 +01:00
.gitignore Initial commit 2022-01-30 04:39:04 +01:00
go.mod Bump hibiki, better memory usage 2022-02-02 02:07:36 +01:00
go.sum Bump hibiki, better memory usage 2022-02-02 02:07:36 +01:00
LICENSE Initial commit 2022-01-30 04:39:04 +01:00
METANOIA.go Add AppendStore 2022-02-02 20:14:37 +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