Skip to content

lapd-python/Cover-Song-Detection

 
 

Repository files navigation

Cover-Song-Detection

Using dft-fingerprinting and k-nn to determine which song the input is a cover of

docker rm -f coverid
docker run -itd --name coverid \
    -v "$PWD":/usr/src/myapp \
    -w /usr/src/myapp \
    python:3.5

docker exec -it coverid bash

cat > requirements.txt << EOL
librosa
EOL
pip install -r requirements.txt
# Create DB
python create_database.py

# Check
python alpha.py

About

Using dft-fingerprinting and k-nn to determine which song the input is a cover of

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 99.2%
  • Python 0.8%