Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itspoma/audio-fingerprint-identifying-python
The Shazam-similar app, that identify the song using audio fingerprints & spectrum analysis and Fast Fourier transform
https://github.com/itspoma/audio-fingerprint-identifying-python
Last synced: 3 months ago
JSON representation
The Shazam-similar app, that identify the song using audio fingerprints & spectrum analysis and Fast Fourier transform
- Host: GitHub
- URL: https://github.com/itspoma/audio-fingerprint-identifying-python
- Owner: itspoma
- License: mit
- Created: 2016-08-27T20:33:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-06-06T12:29:44.000Z (over 1 year ago)
- Last Synced: 2024-08-02T21:38:35.327Z (6 months ago)
- Language: Python
- Size: 359 KB
- Stars: 352
- Watchers: 13
- Forks: 166
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-python-audio - audio-fingerprint-identifying-python - similar app, that can identify the song using audio fingerprints & spectrum analysis and Fast Fourier transform (Analysis and Visualization)
README
# Fingerprint audio files & identify what's playing
- conference [PaceMaker: BackEnd-2016 conference](http://www.pacemaker.in.ua/BackEnd-2016/about)
- slides are on [slideshare.net/rodomansky/ok-shazam-la-lalalaa](http://www.slideshare.net/rodomansky/ok-shazam-la-lalalaa)![](http://new.tinygrab.com/7020c0e8b010392da4053fa90ab8e0c8419bded864.png)
## How to set up
1. Run `$ make clean reset` to clean & init database struct
1. Run `$ make tests` to make sure that everything is properly configurated
1. Copy some `.mp3` audio files into `mp3/` directory
1. Run `$ make fingerprint-songs` to analyze audio files & fill your db with hashes
1. Start play any of audio file (from any source) from `mp3/` directory, and run (parallely) `$ make recognize-listen seconds=5`![](http://new.tinygrab.com/7020c0e8b0393eec4a18c62170458c029577d378c2.png)
## How to
- To remove a specific song & related hash from db```bash
$ python sql-execute.py -q "DELETE FROM songs WHERE id = 6;"
$ python sql-execute.py -q "DELETE FROM fingerprints WHERE song_fk = 6;"
```## Thanks to
- [How does Shazam work](http://coding-geek.com/how-shazam-works/)
- [Audio fingerprinting and recognition in Python](https://github.com/worldveil/dejavu) - thanks for fingerprinting login via pynum
- [Audio Fingerprinting with Python and Numpy](http://willdrevo.com/fingerprinting-and-audio-recognition-with-python/)
- [Shazam It! Music Recognition Algorithms, Fingerprinting, and Processing](https://www.toptal.com/algorithms/shazam-it-music-processing-fingerprinting-and-recognition)
- [Creating Shazam in Java](http://royvanrijn.com/blog/2010/06/creating-shazam-in-java/)