├── .gitignore ├── LICENSE ├── Makefile ├── README-dpwe-audfprint.txt ├── README.md ├── __init__.py ├── audfprint.py ├── audfprint_analyze.py ├── audfprint_match.py ├── audio_read.py ├── comp_file_lines.py ├── config.txt ├── config_tiny.txt ├── dpwe_builder.py ├── dpwe_matcher.py ├── hash_table.py ├── requirements.txt ├── searching_for_ads.md ├── stft.py └── tests ├── data ├── Nine_Lives │ ├── 01-Nine_Lives.mp3 │ ├── 02-Falling_In_Love.mp3 │ ├── 03-Hole_In_My_Soul.mp3 │ ├── 04-Taste_Of_India.mp3 │ ├── 05-Full_Circle.mp3 │ ├── 06-Something_s_Gotta_Give.mp3 │ ├── 07-Ain_t_That_A_Bitch.mp3 │ ├── 08-The_Farm.mp3 │ ├── 09-Crash.mp3 │ ├── 10-Kiss_Your_Past_Good-bye.mp3 │ ├── 11-Pink.mp3 │ ├── 12-Attitude_Adjustment.mp3 │ └── 13-Fallen_Angels.mp3 └── query.mp3 ├── profile_audfprint.py ├── profile_audfprint_match.py └── report_prof.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/Makefile -------------------------------------------------------------------------------- /README-dpwe-audfprint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/README-dpwe-audfprint.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | # coding=utf-8 2 | -------------------------------------------------------------------------------- /audfprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/audfprint.py -------------------------------------------------------------------------------- /audfprint_analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/audfprint_analyze.py -------------------------------------------------------------------------------- /audfprint_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/audfprint_match.py -------------------------------------------------------------------------------- /audio_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/audio_read.py -------------------------------------------------------------------------------- /comp_file_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/comp_file_lines.py -------------------------------------------------------------------------------- /config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/config.txt -------------------------------------------------------------------------------- /config_tiny.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/config_tiny.txt -------------------------------------------------------------------------------- /dpwe_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/dpwe_builder.py -------------------------------------------------------------------------------- /dpwe_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/dpwe_matcher.py -------------------------------------------------------------------------------- /hash_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/hash_table.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | docopt 4 | joblib 5 | psutil 6 | -------------------------------------------------------------------------------- /searching_for_ads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/searching_for_ads.md -------------------------------------------------------------------------------- /stft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/stft.py -------------------------------------------------------------------------------- /tests/data/Nine_Lives/01-Nine_Lives.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/data/Nine_Lives/01-Nine_Lives.mp3 -------------------------------------------------------------------------------- /tests/data/Nine_Lives/02-Falling_In_Love.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/data/Nine_Lives/02-Falling_In_Love.mp3 -------------------------------------------------------------------------------- /tests/data/Nine_Lives/03-Hole_In_My_Soul.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/data/Nine_Lives/03-Hole_In_My_Soul.mp3 -------------------------------------------------------------------------------- /tests/data/Nine_Lives/04-Taste_Of_India.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/data/Nine_Lives/04-Taste_Of_India.mp3 -------------------------------------------------------------------------------- /tests/data/Nine_Lives/05-Full_Circle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/data/Nine_Lives/05-Full_Circle.mp3 -------------------------------------------------------------------------------- /tests/data/Nine_Lives/06-Something_s_Gotta_Give.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/data/Nine_Lives/06-Something_s_Gotta_Give.mp3 -------------------------------------------------------------------------------- /tests/data/Nine_Lives/07-Ain_t_That_A_Bitch.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/data/Nine_Lives/07-Ain_t_That_A_Bitch.mp3 -------------------------------------------------------------------------------- /tests/data/Nine_Lives/08-The_Farm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/data/Nine_Lives/08-The_Farm.mp3 -------------------------------------------------------------------------------- /tests/data/Nine_Lives/09-Crash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/data/Nine_Lives/09-Crash.mp3 -------------------------------------------------------------------------------- /tests/data/Nine_Lives/10-Kiss_Your_Past_Good-bye.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/data/Nine_Lives/10-Kiss_Your_Past_Good-bye.mp3 -------------------------------------------------------------------------------- /tests/data/Nine_Lives/11-Pink.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/data/Nine_Lives/11-Pink.mp3 -------------------------------------------------------------------------------- /tests/data/Nine_Lives/12-Attitude_Adjustment.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/data/Nine_Lives/12-Attitude_Adjustment.mp3 -------------------------------------------------------------------------------- /tests/data/Nine_Lives/13-Fallen_Angels.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/data/Nine_Lives/13-Fallen_Angels.mp3 -------------------------------------------------------------------------------- /tests/data/query.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/data/query.mp3 -------------------------------------------------------------------------------- /tests/profile_audfprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/profile_audfprint.py -------------------------------------------------------------------------------- /tests/profile_audfprint_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/profile_audfprint_match.py -------------------------------------------------------------------------------- /tests/report_prof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpwe/audfprint/HEAD/tests/report_prof.py --------------------------------------------------------------------------------