Skip to content

LiweiDong/audioFlux

 
 

Repository files navigation

audioFlux

GitHub Workflow Status (with branch) example branch parameter language PyPI - Version PyPI - Python Version Docs GitHub

DOI

audioflux is a deep learning tool library for audio and music analysis, feature extraction. It supports dozens of time-frequency analysis transformation methods and hundreds of corresponding time-domain and frequency-domain feature combinations. It can be provided to deep learning networks for training, and is used to study various tasks in the audio field such as Classification, Separation, Music Information Retrieval(MIR) and ASR etc.

Table of Contents

Overview

audioFlux is based on data stream design. It decouples each algorithm module in structure, and can quickly and efficiently extract features of multiple dimensions. The following is the main feature architecture diagram.

You can use multiple dimensional feature combinations, select different deep learning networks training, study various tasks in the audio field such as Classification, Separation, MIR etc.

The main functions of audioFlux include transform, feature and mir modules.

1. Transform

In the time–frequency representation, main transform algorithm:

  • BFT   -   Based Fourier Transform, similar short-time Fourier transform.
  • NSGT -   Non-Stationary Gabor Transform.
  • CWT   -   Continuous Wavelet Transform.
  • PWT   -   Pseudo Wavelet Transform.

The above transform supports all the following frequency scale types:

  • Linear - Short-time Fourier transform spectrogram.
  • Linspace - Linspace-scale spectrogram.
  • Mel - Mel-scale spectrogram.
  • Bark - Bark-scale spectrogram.
  • Erb - Erb-scale spectrogram.
  • Octave - Octave-scale spectrogram.
  • Log - Logarithmic-scale spectrogram.

The following transform are not supports multiple frequency scale types, only used as independent transform:

  • CQT -   Constant-Q Transform.
  • VQT -   Variable-Q Transform.
  • ST   -   S-Transform/Stockwell Transform.
  • FST -   Fast S-Transform.
  • DWT -   Discrete Wavelet Transform.
  • WPT -   Wave Packet Transform.
  • SWT -   Stationary Wavelet Transform.

Detailed transform function, description, and use view the documentation.

The synchrosqueezing or reassignment is a technique for sharpening a time-frequency representation, contains the following algorithms:

  • reassign - reassign transform for STFT.
  • synsq - reassign data use CWT data.
  • wsst - reassign transform for CWT.

2. Feature

The feature module contains the following algorithms:

  • spectral - Spectrum feature, supports all spectrum types.
  • xxcc - Cepstrum coefficients, supports all spectrum types.
  • deconv - Deconvolution for spectrum, supports all spectrum types.
  • chroma - Chroma feature, only supports CQT spectrum, Linear/Octave spectrum based on BFT.

3. MIR

The mir module contains the following algorithms:

  • pitch - YIN, STFT, etc algorithm.
  • onset - Spectrum flux, novelty, etc algorithm.
  • hpss - Median filtering, NMF algorithm.

Installation

language

The library is cross-platform and currently supports Linux, macOS, Windows, iOS and Android systems.

Python Package Install

To install the audioFlux package, Python >=3.6, using the released python package.

Using PyPI:

$ pip install audioflux 

Using Anaconda:

$ conda install -c tanky25 -c conda-forge audioflux

Other Build

Quickstart

More example scripts are provided in the Documentation section.

Benchmark

Server Performance

server hardware:

- CPU: AMD Ryzen Threadripper 3970X 32-Core Processor
- Memory: 128GB

Each sample data is 128ms(sampling rate: 32000, data length: 4096).

The total time spent on extracting features for 1000 sample data.

Package audioFlux librosa pyAudioAnalysis python_speech_features
Mel 0.777s 2.967s -- --
MFCC 0.797s 2.963s 0.805s 2.150s
CQT 5.743s 21.477s -- --
Chroma 0.155s 2.174s 1.287s --

Mobile Performance

For 128ms audio data per frame(sampling rate: 32000, data length: 4096).

The time spent on extracting features for 1 frame data.

Mobile iPhone 13 Pro iPhone X Honor V40 OPPO Reno4 SE 5G
Mel 0.249ms 0.359ms 0.313ms 0.891ms
MFCC 0.249ms 0.361ms 0.315ms 1.116ms
CQT 0.350ms 0.609ms 0.786ms 1.779ms
Chroma 0.354ms 0.615ms 0.803ms 1.775ms

Documentation

Documentation of the package can be found online:

https://audioflux.top

Contributing

We are more than happy to collaborate and receive your contributions to audioFlux. If you want to contribute, please fork the latest git repository and create a feature branch. Submitted requests should pass all continuous integration tests.

You are also more than welcome to suggest any improvements, including proposals for need help, find a bug, have a feature request, ask a general question, new algorithms. Open an issue

Citing

If you want to cite audioFlux in a scholarly work, please use the following ways:

  • If you are using the library for your work, for the sake of reproducibility, please cite the version you used as indexed at Zenodo:

    DOI

License

audioFlux project is available MIT License.

About

A library for audio and music analysis, feature extraction.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 65.4%
  • Python 34.2%
  • Other 0.4%