Skip to content

Instantly share code, notes, and snippets.

@NiezSellami
NiezSellami / shazoom.py
Created May 9, 2023 10:13 — forked from ychalier/shazoom.py
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.
"""
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