This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Sha-zoom, an implementation of the audio search algorithm described in the | |
Computerphile video 'How Shazam Works (Probably!)' published on YouTube on | |
March 15, 2021 by David Domminney Fowler. Requires FFMPEG. | |
""" | |
import os | |
import pickle | |
import logging | |
import argparse |