Giter Site home page Giter Site logo

python_fingerprint_mpeg7's Introduction

Python_Fingerprint_mpeg7

With this project I created a song recognition algorithm using the MPEG-7 standard for fingerprint calculation.

Further information about the algorithm can be found in "Research-Project_Music-Recognition-Using-Python_Konstantin-Brand.pdf"

Requirements

You need:

  • python3,
  • numpy
  • scipy

install it via:

sudo apt-get install python3 python3-venv build-essential libblas-dev \
 liblapack-dev gfortran-4.9 libatlas-dev libatlas-base-dev

and:

sudo pip3 install numpy
sudo pip3 install scipy

Usage:

  • calculate some fingerprints using:
fingerprint = calc_fingerprint(wavefile.wav)
  • compare to other fingerprint
compare_file = 'path/to/fingerprint.csv'  # must be pre calculated before
comparison = np.loadtxt(compare_file, delimiter=",")
result = np.min(euclideanDistance(fingerprint, comparison))

compare it to other files and you will find what audio file it is most similar to with the over all minimum result

ToDo:

  • finish caomparison with a database

python_fingerprint_mpeg7's People

Contributors

kobrand avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Forkers

krishvishal

python_fingerprint_mpeg7's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.