Source code for madmom.audio.chroma

# encoding: utf-8
# pylint: disable=no-member
# pylint: disable=invalid-name
# pylint: disable=too-many-arguments
"""
This module contains chroma related functionality.

"""

from __future__ import absolute_import, division, print_function

import numpy as np

from madmom.audio.spectrogram import SemitoneBandpassSpectrogram
from madmom.processors import SequentialProcessor


def _dcp_flatten(fs):
    """Flatten spectrograms for DeepChromaProcessor. Needs to be outside
       of the class in order to be picklable for multiprocessing.
    """
    return np.concatenate(fs).reshape(len(fs), -1)


[docs]class DeepChromaProcessor(SequentialProcessor): """ Compute chroma vectors from an audio file using a deep neural network that focuses on harmonically relevant spectral content. Parameters ---------- fmin : int, optional Minimum frequency of the filterbank [Hz]. fmax : float, optional Maximum frequency of the filterbank [Hz]. unique_filters : bool, optional Indicate if the filterbank should contain only unique filters, i.e. remove duplicate filters resulting from insufficient resolution at low frequencies. models : list of filenames, optional List of model filenames. Notes ----- Provided model files must be compatible with the processing pipeline and the values of `fmin`, `fmax`, and `unique_filters`. The general use case for the `models` parameter is to use a specific model instead of an ensemble of all models. The models shipped with madmom differ slightly from those presented in the paper (less hidden units, narrower frequency band for spectrogram), but achieve similar results. References ---------- .. [1] Filip Korzeniowski and Gerhard Widmer, "Feature Learning for Chord Recognition: The Deep Chroma Extractor", Proceedings of the 17th International Society for Music Information Retrieval Conference (ISMIR), 2016. Examples -------- Extract a chroma vector using the deep chroma extractor: >>> dcp = DeepChromaProcessor() >>> chroma = dcp('tests/data/audio/sample2.wav') >>> chroma # doctest: +NORMALIZE_WHITESPACE +ELLIPSIS array([[ 0.01317, 0.00721, ..., 0.00546, 0.00943], [ 0.36809, 0.01314, ..., 0.02213, 0.01838], ..., [ 0.1534 , 0.06475, ..., 0.00896, 0.05789], [ 0.17513, 0.0729 , ..., 0.00945, 0.06913]], dtype=float32) >>> chroma.shape (41, 12) """ def __init__(self, fmin=65, fmax=2100, unique_filters=True, models=None, **kwargs): from ..models import CHROMA_DNN from ..audio.signal import SignalProcessor, FramedSignalProcessor from ..audio.stft import ShortTimeFourierTransformProcessor from ..audio.spectrogram import LogarithmicFilteredSpectrogramProcessor from madmom.ml.nn import NeuralNetworkEnsemble # signal pre-processing sig = SignalProcessor(num_channels=1, sample_rate=44100) frames = FramedSignalProcessor(frame_size=8192, fps=10) stft = ShortTimeFourierTransformProcessor() # caching FFT window spec = LogarithmicFilteredSpectrogramProcessor( num_bands=24, fmin=fmin, fmax=fmax, unique_filters=unique_filters) # split the spectrogram into overlapping frames spec_signal = SignalProcessor(sample_rate=10) spec_frames = FramedSignalProcessor(frame_size=15, hop_size=1, fps=10) # predict chroma bins with a DNN nn = NeuralNetworkEnsemble.load(models or CHROMA_DNN, **kwargs) # instantiate a SequentialProcessor super(DeepChromaProcessor, self).__init__([ sig, frames, stft, spec, spec_signal, spec_frames, _dcp_flatten, nn ])
[docs]class CLPChroma(np.ndarray): """ Compressed Log Pitch (CLP) chroma as proposed in [1]_ and [2]_. Parameters ---------- data : str, Signal, or SemitoneBandpassSpectrogram Input data. fps : int, optional Desired sample rate of the signal [Hz]. fmin : float, optional Lowest frequency [Hz] of the spectrogram. fmax : float, optional Highest frequency [Hz] of the spectrogram. compression_factor : float, optional Factor for compression of the energy. norm : bool, optional Normalize the energy of each frame to one (divide by the L2 norm). threshold : float, optional If the energy of a frame is below a threshold, the energy is equally distributed among all chroma bins. Notes ----- The resulting chromagrams differ slightly from those obtained by the MATLAB chroma toolbox [2]_ because of different resampling and filter methods. References ---------- .. [1] Meinard Müller, "Information retrieval for music and motion", Springer, 2007. .. [2] Meinard Müller and Sebastian Ewert, "Chroma Toolbox: MATLAB Implementations for Extracting Variants of Chroma-Based Audio Features", Proceedings of the International Conference on Music Information Retrieval (ISMIR), 2011. """ def __init__(self, data, fps=50, fmin=27.5, fmax=4186., compression_factor=100, norm=True, threshold=0.001): # this method is for documentation purposes only pass def __new__(cls, data, fps=50, fmin=27.5, fmax=4200., compression_factor=100, norm=True, threshold=0.001): from madmom.audio.filters import hz2midi # check input type if not isinstance(data, SemitoneBandpassSpectrogram): # compute SemitoneBandpassSpectrogram data = SemitoneBandpassSpectrogram(data, fps=fps, fmin=fmin, fmax=fmax) # apply log compression log_pitch_energy = np.log10(data * compression_factor + 1) # compute chroma by adding up bins that correspond to the same # pitch class obj = np.zeros((log_pitch_energy.shape[0], 12)).view(cls) midi_min = int(np.round(hz2midi(data.bin_frequencies[0]))) for p in range(log_pitch_energy.shape[1]): # make sure that p maps to the correct bin_label (midi_min=12 # corresponds to a C and therefore chroma_idx=0) chroma_idx = np.mod(midi_min + p, 12) obj[:, chroma_idx] += log_pitch_energy[:, p] obj.bin_labels = ['C', 'C#', 'D', 'D#', 'E', 'F', 'F#', 'G', 'G#', 'A', 'A#', 'B'] obj.fps = fps if norm: # normalise the vectors according to the l2 norm mean_energy = np.sqrt((obj ** 2).sum(axis=1)) idx_below_threshold = np.where(mean_energy < threshold) obj /= mean_energy[:, np.newaxis] obj[idx_below_threshold, :] = np.ones((1, 12)) / np.sqrt(12) return obj def __array_finalize__(self, obj): if obj is None: return # set default values here self.fps = getattr(obj, 'fps', None) self.bin_labels = getattr(obj, 'bin_labels', None)