blog-acoustic-fingerprinting
ARCHIVED - acoustic fingerprinting television shows with python
git clone https://git.vogt.world/blog-acoustic-fingerprinting.git
Log | Files | README.md
← All files
name: README.md
-rw-r--r--
1043
 1# Acoustic Fingerprinting Television
 2
 3This is the repo that accompanies the blog post for [http://benvogt.io/blog/acoustic-fingerprinting-television/](http://benvogt.io/blog/acoustic-fingerprinting-television/).
 4
 5
 6### Loading data to fingerprint database
 7
 8Copyright law and sheer size of data keeps me from uploading my test data, but here's how you would load test data, if you had it.
 9
10```bash
11python src/python/load.py -d=/Users/bvogt/dev/data/the_drew_carey_show/wav/
12```
13
14
15### Looking up a .wav sample
16
17```bash
18python src/python/lookup.py -f=/Users/bvogt/dev/data/distorted_dcs/s01e10_dist.wav
19```
20
21
22### Plot a .wav sample
23
24```bash
25python src/python/plot.py -f=/Users/bvogt/dev/data/distorted_dcs/s01e10_dist.wav
26```
27
28
29### Cut clips of all .wav files in a directory
30
31```bash
32python src/python/clips.py -d=/Users/bvogt/dev/data/the_drew_carey_show/wav/ -o=/Users/bvogt/dev/data/samples/
33```
34
35
36### Analyze clips, plotting results
37
38```bash
39python src/python/analyze.py -d=/Users/bvogt/dev/data/samples/ -o=/Users/bvogt/dev/data/samples/
40```