Source code for timeside.plugins.analyzer.externals.aubio_specdesc

# -*- coding: utf-8 -*-
#
# Copyright (c) 2013 Paul Brossier <piem@piem.org>

# This file is part of TimeSide.

# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.

# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# Authors:
#  Paul Brossier <piem@piem.org>
#  Thomas Fillon <thomas@parisson.com>

from __future__ import absolute_import

from timeside.core import implements, interfacedoc
from timeside.core.analyzer import Analyzer
from timeside.core.api import IAnalyzer
from timeside.core.preprocessors import downmix_to_mono, frames_adapter

from aubio import specdesc, pvoc


[docs]class AubioSpecdesc(Analyzer): """Aubio Spectral Descriptors collection analyzer""" implements(IAnalyzer) def __init__(self): super(AubioSpecdesc, self).__init__() self.input_blocksize = 1024 self.input_stepsize = self.input_blocksize / 4 # Aubio Specdesc Initialisation self.block_read = 0 self.pvoc = pvoc(self.input_blocksize, self.input_stepsize) self.methods = [ 'default', 'energy', 'hfc', 'complex', 'phase', 'specdiff', 'kl', 'mkl', 'specflux', 'centroid', 'slope', 'rolloff', 'spread', 'skewness', 'kurtosis', 'decrease'] self.specdesc = {} self.specdesc_results = {} for method in self.methods: self.specdesc[method] = specdesc(method, self.input_blocksize) self.specdesc_results[method] = []
[docs] @interfacedoc def setup(self, channels=None, samplerate=None, blocksize=None, totalframes=None): super(AubioSpecdesc, self).setup(channels, samplerate, blocksize, totalframes)
[docs] @staticmethod @interfacedoc def id(): return "aubio_specdesc"
[docs] @staticmethod @interfacedoc def name(): return "Spectral Descriptor (aubio)"
[docs] @staticmethod @interfacedoc def unit(): return ""
[docs] @downmix_to_mono @frames_adapter def process(self, frames, eod=False): # WARNING : All Aubio analyzer process functions manages frames reconstruction by themself # from small stepsize input blocksize # i.e. Aubio process functions should receive non overlapping input blocksize # of length stepsize. # This is achieve through @frames_adapter that handles Aubio Analyzer specifically (blocksize=stepsize). fftgrain = self.pvoc(frames) for method in self.methods: self.specdesc_results[method] += [ self.specdesc[method](fftgrain)[0]] return frames, eod
[docs] def post_process(self): # For each method store results in container for method in self.methods: res_specdesc = self.new_result(data_mode='value', time_mode='framewise') # Set metadata res_specdesc.id_metadata.id += '.' + method res_specdesc.id_metadata.name = ' ' + method res_specdesc.data_object.value = self.specdesc_results[method] self.add_result(res_specdesc)