Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] update MFCC implementation #269

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Release Notes
Version 0.17.dev0
-----------------

New features:

* New `cepstrogram` module, includes `MFCC` data class and processors (#269)

Bug fixes:

* `BufferProcessor` can handle data longer than buffer length (#398)
Expand Down
18 changes: 13 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -366,8 +366,16 @@ References
Acknowledgements
================

Supported by the European Commission through the `GiantSteps project
<http://www.giantsteps-project.eu>`_ (FP7 grant agreement no. 610591) and the
`Phenicx project <http://phenicx.upf.edu>`_ (FP7 grant agreement no. 601166)
as well as the `Austrian Science Fund (FWF) <https://www.fwf.ac.at>`_ project
Z159.
Developed at the `Johannes Kepler University Linz
<https://www.jku.at/en/institute-of-computational-perception/>`_, the
`Austrian Research Institute for Artificial Intelligence (OFAI)
<http://www.ofai.at>`_, and the `TU Wien <https://www.tuwien.ac.at>`_.

Supported by the European Commission through the projects `GiantSteps
<http://www.giantsteps-project.eu>`_ (FP7 grant agreement no. 610591) and
`Phenicx <http://phenicx.upf.edu>`_ (FP7 grant agreement no. 601166), the
`Austrian Science Fund (FWF) <https://www.fwf.ac.at>`_ project
Z159, as well as the `Austrian Research Promotion Agency (FFG)
<https://www.ffg.at>`_ trough the
`SmarterJam <https://tiss.tuwien.ac.at/fpl/project/index.xhtml?id=1374027>`_
(BRIDGE 1 grant no. 858514) project.
18 changes: 13 additions & 5 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,16 @@ Indices and tables
Acknowledgements
----------------

Supported by the European Commission through the `GiantSteps project
<http://www.giantsteps-project.eu>`_ (FP7 grant agreement no. 610591) and the
`Phenicx project <http://phenicx.upf.edu>`_ (FP7 grant agreement no. 601166)
as well as the `Austrian Science Fund (FWF) <https://www.fwf.ac.at>`_ project
Z159.
Developed at the `Johannes Kepler University Linz
<https://www.jku.at/en/institute-of-computational-perception/>`_, the
`Austrian Research Institute for Artificial Intelligence (OFAI)
<http://www.ofai.at>`_, and the `TU Wien <https://www.tuwien.ac.at>`_.

Supported by the European Commission through the projects `GiantSteps
<http://www.giantsteps-project.eu>`_ (FP7 grant agreement no. 610591) and
`Phenicx <http://phenicx.upf.edu>`_ (FP7 grant agreement no. 601166), the
`Austrian Science Fund (FWF) <https://www.fwf.ac.at>`_ project
Z159, as well as the `Austrian Research Promotion Agency (FFG)
<https://www.ffg.at>`_ trough the
`SmarterJam <https://tiss.tuwien.ac.at/fpl/project/index.xhtml?id=1374027>`_
(BRIDGE 1 grant no. 858514) project.
3 changes: 2 additions & 1 deletion madmom/audio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ class or inherit from madmom.SequentialProcessor or ParallelProcessor.
from __future__ import absolute_import, division, print_function

# import the submodules
from . import comb_filters, filters, signal, spectrogram, stft
from . import cepstrogram, comb_filters, filters, signal, spectrogram, stft
# import classes used often
from .cepstrogram import MFCC, MFCCProcessor
from .chroma import DeepChromaProcessor
from .signal import (FramedSignal, FramedSignalProcessor, Signal,
SignalProcessor, )
Expand Down
Loading