Skip to content

Instantly share code, notes, and snippets.

View WetzelVictor's full-sized avatar

Victor Wetzel WetzelVictor

View GitHub Profile
@WetzelVictor
WetzelVictor / frequency_estimator.py
Created March 26, 2018 15:08 — forked from endolith/frequency_estimator.py
Frequency estimation methods in Python
from __future__ import division
from numpy.fft import rfft
from numpy import argmax, mean, diff, log
from matplotlib.mlab import find
from scipy.signal import blackmanharris, fftconvolve
from time import time
import sys
try:
import soundfile as sf
except ImportError: