Skip to content

kylerbrown/resin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Resin

Resin is a spectral analysis toolbox for Python inspired by SAP.

Requirements

  • Python 2.7+
  • Numpy

Optional Requirements

  • Scipy
  • Matplotlib

Installation

git clone https://github.com/kylerbrown/resin
cd resin
pip install .

Usage example

The folder examples contains some example usage.

# loading in the data
sr, data = wavfile.read('black33.wav')
# create a Spectra object using SAP-like defaults
spa = resin.sap_spectra(sr)
spa.signal(data)
spa.spectrogram()

Example spectrogram 1

# Alternately, customize the mutli-taper parameters
# by creating a Spectra object directly.

spa2 = resin.Spectra(sr, 
                    NFFT=1024, 
                    noverlap=1000, 
                    data_window=int(0.01 * sr), 
                    n_tapers=3, 
                    NW=1.8,
                    freq_range=(300, 9000))
spa2.signal(data)
spa2.spectrogram()

Example spectrogram 2

Tips for speed

  • Install scipy, which allows resin to use a faster fft library than the numpy default. In my experience, scipy's fft is about 40% faster than numpy's, even when using the Anaconda MKL FFT.
  • Use an NFFT equal to a power of 2 (512, 1024, etc.)

Authors

Mike Lusignan wrote segmentation as part of his PhD thesis. Details of the algorithms can be found in: Lusignan, M. E. University of Chicago. (2012). Growing up singing: Behavioral and physiological perspectives on song acquisition.

Resin is a fork of segmentation, writen by Kyler Brown, 2017.

About

A spectral analysis and feature extraction library similar to Sound Analysis Pro

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages