Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/acoustid/pg_acoustid

PostgreSQL extension for working with AcoustID fingerprints
https://github.com/acoustid/pg_acoustid

acoustid audio-fingerprinting postgresql postgresql-extension

Last synced: 3 months ago
JSON representation

PostgreSQL extension for working with AcoustID fingerprints

Awesome Lists containing this project

README

        

AcoustID utility functions for PostgreSQL
=========================================

You need the PostgresSQL development page to build this:

```sh
sudo apt-get install postgresql-server-dev-9.1
```

If you have multiple PostgreSQL versions you need to specify which version to
build against by setting the `PG_CONFIG` variable:

```sh
export PG_CONFIG=/usr/lib/postgresql/9.1/bin/pg_config
```

Build and install the module:

```sh
make
sudo make install
```

Using in PostgreSQL:

```sql
CREATE EXTENSION acoustid;
```

If you have a version from before PostgreSQL 9.1 installed, you can upgrade it
to a properly package one with:

```sql
CREATE EXTENSION acoustid FROM unpackaged;
```