├── BaiduMusicSpider └── Spider.py ├── Makefile ├── README.md ├── bin └── runall.sh ├── data ├── dataset.txt └── getdata.sh ├── doc ├── slides1.pdf ├── slides2.pdf └── slides3.pdf ├── include ├── build.h ├── fingerprint.h ├── hash.h ├── recog.h └── wav.h ├── references ├── Audio Fingerprinting.pdf └── Wang03-shazam.pdf └── src ├── build.cpp ├── fingerprint.cpp ├── hash.cpp ├── recog.cpp └── wav.cpp /BaiduMusicSpider/Spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/BaiduMusicSpider/Spider.py -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/README.md -------------------------------------------------------------------------------- /bin/runall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/bin/runall.sh -------------------------------------------------------------------------------- /data/dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/data/dataset.txt -------------------------------------------------------------------------------- /data/getdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/data/getdata.sh -------------------------------------------------------------------------------- /doc/slides1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/doc/slides1.pdf -------------------------------------------------------------------------------- /doc/slides2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/doc/slides2.pdf -------------------------------------------------------------------------------- /doc/slides3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/doc/slides3.pdf -------------------------------------------------------------------------------- /include/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/include/build.h -------------------------------------------------------------------------------- /include/fingerprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/include/fingerprint.h -------------------------------------------------------------------------------- /include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/include/hash.h -------------------------------------------------------------------------------- /include/recog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/include/recog.h -------------------------------------------------------------------------------- /include/wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/include/wav.h -------------------------------------------------------------------------------- /references/Audio Fingerprinting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/references/Audio Fingerprinting.pdf -------------------------------------------------------------------------------- /references/Wang03-shazam.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/references/Wang03-shazam.pdf -------------------------------------------------------------------------------- /src/build.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/src/build.cpp -------------------------------------------------------------------------------- /src/fingerprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/src/fingerprint.cpp -------------------------------------------------------------------------------- /src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/src/hash.cpp -------------------------------------------------------------------------------- /src/recog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/src/recog.cpp -------------------------------------------------------------------------------- /src/wav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JiahuiYu/audio_recognition/HEAD/src/wav.cpp --------------------------------------------------------------------------------