• Stars
    star
    180
  • Rank 213,097 (Top 5 %)
  • Language
    Python
  • License
    MIT License
  • Created over 6 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Painless Wiener filters for audio separation

Norbert

Build Status Latest Version Supported Python versions DOI

Norbert is an implementation of multichannel Wiener filter, that is a very popular way of filtering multichannel audio for several applications, notably speech enhancement and source separation.

This filtering method assumes you have some way of estimating power or magnitude spectrograms for all the audio sources (non-negative) composing a mixture. If you only have a model for some target sources, and not for the rest, you may use norbert.residual_model to let Norbert create a residual model for you.

Given all source spectrograms and the mixture Time-Frequency representation, this repository can build and apply the filter that is appropriate for separation, by optimally exploiting multichannel information (like in stereo signals). This is done in an iterative procedure called Expectation Maximization, where filtering and re-estimation of the parameters are iterated.

From a beginner's perspective, all you need to do is often to call norbert.wiener with the mix and your spectrogram estimates. This should handle the rest.

From a more expert perspective, you will find the different ingredients from the EM algorithm as functions in the module as described in the API documentation

Installation

pip install norbert

Usage

Asssuming a complex spectrogram X, and a (magnitude) estimate of a target V to be extracted from the spectrogram, performing the multichannel wiener filter is as simple as this:

X = stft(audio)
V = model(X)
Y = norbert.wiener(V, X)
estimate = istft(Y)

How to contribute

norbert is a community focused project, we therefore encourage the community to submit bug-fixes and requests for technical support through github issues. For more details of how to contribute, please follow our CONTRIBUTING.md.

Authors

Antoine Liutkus, Fabian-Robert Stรถter

Citation

If you want to cite the Norbert software package, please use the DOI from Zenodo:

DOI

License

MIT

More Repositories

1

open-unmix-pytorch

Open-Unmix - Music Source Separation for PyTorch
Python
1,232
star
2

sigsep-mus-eval

museval - source separation evaluation tools for python
Python
196
star
3

sigsep-mus-db

Python parser and tools for MUSDB18 Music Separation Dataset
Python
159
star
4

website

Vue
104
star
5

open-unmix-nnabla

Open-Unmix - Music Source Separation for NNabla
Python
63
star
6

sigsep-mus-2018

SiSEC MUS 2018 Submission System
Python
43
star
7

bsseval

audio source separation evaluation metrics
Python
27
star
8

open-unmix-tensorflow

open unmix - music source separation for tensorflow
22
star
9

open-unmix-demo-electron

desktop source separation demo player
Vue
21
star
10

open-unmix-js

web based audio unmixing
JavaScript
12
star
11

sigsep-mus-2018-analysis

Analysis and Visualization for SiSEC 2018
Jupyter Notebook
9
star
12

sigsep-mus-io

Tools to convert sigsep mus dataset from STEMS <-> WAV
Shell
8
star
13

ismir2018_tutorial

Music source separation: making it work
CSS
7
star
14

open-unmix-paper-joss

Repository for the open-unmix JOSS submission
TeX
6
star
15

share

multitrack share platform
Vue
3
star
16

stem-player-website

CSS
2
star
17

slides-pytorch-summer-hackathon

HTML
2
star
18

sigsep-mus-mdbconvert

Python
2
star
19

sigsep-mus-preview-generator

Trimmer for generating the SiSEC MUS 2018 previews
Python
2
star
20

sigsep.github.io

sigsep website. Edit here: https://github.com/sigsep/website
HTML
2
star
21

eusipco2019_tutorial

Deep learning for music separation
HTML
1
star
22

sigsep-mus-2018-website

SiSEC MUS 2018 Website
Vue
1
star
23

talk-rennes2018-dl-slides

JavaScript
1
star
24

pub-SiSEC2018

Paper for SiSEC 2018, published at LVA/ICA
TeX
1
star
25

slides-deeplearning-musicseparation

JavaScript
1
star