All Projects → Ryuk17 → AudioProcessing-toolbox

Ryuk17 / AudioProcessing-toolbox

Licence: MIT License
extract the time domain or frequent domain features from wav format audio

Programming Languages

matlab
3953 projects

Projects that are alternatives of or similar to AudioProcessing-toolbox

music in python
Sound processing in Python
Stars: ✭ 37 (+42.31%)
Mutual labels:  signal-processing
Pruned-DFT-s-FBMC Python
Simulates pruned DFT spread FBMC and compares the performance to OFDM, SC-FDMA and conventional FBMC. The included classes (QAM, DoublySelectiveChannel, OFDM, FBMC) can be reused in other projects.
Stars: ✭ 22 (-15.38%)
Mutual labels:  signal-processing
Audio cat dog classification
Classification of WAV files from cats and dogs
Stars: ✭ 16 (-38.46%)
Mutual labels:  signal-processing
SP Lib
Signal processing method and algorithm library
Stars: ✭ 93 (+257.69%)
Mutual labels:  signal-processing
Python-Adaptive-Signal-Processing-Handbook
Python adaptive signal processing tutorials
Stars: ✭ 80 (+207.69%)
Mutual labels:  signal-processing
GNSS Compare
A novel framework for processing raw GNSS measurements on an Android smartphone
Stars: ✭ 49 (+88.46%)
Mutual labels:  signal-processing
audiowmark
Audio Watermarking
Stars: ✭ 101 (+288.46%)
Mutual labels:  signal-processing
filtering-stft-and-laplace-transform
Simple demo of filtering signal with an LPF and plotting its Short-Time Fourier Transform (STFT) and Laplace transform, in Python.
Stars: ✭ 50 (+92.31%)
Mutual labels:  signal-processing
kafbox
A Matlab benchmarking toolbox for kernel adaptive filtering
Stars: ✭ 70 (+169.23%)
Mutual labels:  signal-processing
pySmooth
A unique time series library in Python that consists of Kalman filters (discrete, extended, and unscented), online ARIMA, and time difference model.
Stars: ✭ 29 (+11.54%)
Mutual labels:  signal-processing
RS-MET
Codebase for RS-MET products (Robin Schmidt's Music Engineering Tools)
Stars: ✭ 32 (+23.08%)
Mutual labels:  signal-processing
iirj
An efficient IIR filter library written in JAVA
Stars: ✭ 95 (+265.38%)
Mutual labels:  signal-processing
RTspice
A real-time netlist based audio circuit plugin
Stars: ✭ 51 (+96.15%)
Mutual labels:  signal-processing
jtk
The Mines Java Toolkit
Stars: ✭ 53 (+103.85%)
Mutual labels:  signal-processing
ksvd reg
Regularized K-SVD Algorithm
Stars: ✭ 29 (+11.54%)
Mutual labels:  signal-processing
juceSynths
Collection of JUCE synthesisers utilising the Maximilian library.
Stars: ✭ 78 (+200%)
Mutual labels:  signal-processing
vor-python-decoder
Decodes VOR signal from WAV file to get the bearing to your position
Stars: ✭ 33 (+26.92%)
Mutual labels:  signal-processing
RpiANC
Active Noise Control on Raspberry Pi
Stars: ✭ 49 (+88.46%)
Mutual labels:  signal-processing
DTMF-Decoder
A Java program to implement a DMTF Decoder.
Stars: ✭ 28 (+7.69%)
Mutual labels:  signal-processing
scarplet
Topographic edge detection of fault scarps and other landforms in digital elevation data
Stars: ✭ 14 (-46.15%)
Mutual labels:  signal-processing

AudioProcessing

An toolbox for audio processing in Matlab,the verison of Matlab is R2016a.
The audio sample in this toobox is 8000Hz, 16 bits.

1. getAudioFingerpriner

  • getAudioFingerprinter calcuates the difference of the energy of each frequency sub-band as shown below.
    Extraction process

  • Specifically, the extraction process including the following steps:

  1. divide audio into frames, the overlap length is alterable
  2. do fft for each frame
  3. divide frequency spectrum into 32 frequency sub bands
  4. calcuate the energy of each sub band
  5. calcuate audio fingerprinter as follow
    Bit Derviation
  • The result is shown below printer

2. getZCR

  • getZCR calcuates the zero-crossing rate which can be used to predict the frequency roughly.
  • Specifically, the extraction process including the following steps:
  1. divide audio into frames
  2. calcuate zcr of each frame using the following equation
    ZCR
    where sgn(x) is given by
    sgn(x)
  • The result is shown below
    zcrpic

3. getLandmarks

  • getLandmarks calcuates the max-enegry points(also called landmark) in the frequency spectrum.

  • Specifically, the extraction process including the following steps:

  1. divide audio into frames, the overlap length is alterable
  2. do fft for each frame
  3. calcuate the energy of frequency
  4. calcuate the local maximum as landmark
  • The result is shown below
    landmark-2d landmark-3d

4. getEnergy

  • getEnergy calcuates the short-time energy.

  • Specifically, the extraction process including the following steps:
    1.divide audio into frames, the overlap length is alterable
    2.calcuate the energy using the following equation:
    stenergy

  • The result is shown below
    getEnrgy

5. getSpecgram

  • getSpecgram calcuates the spectgram.
  • Specifically, the extraction process including the following steps:
  1. divide signal into frames in time domain
  2. do fft of each frame
  • The result is shown below
    specgram

6. getLMSPredictor

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].