Implementation and examples for audio signal processing with using Keras.
This repository is supplementary for my presentation: "Hand-On Audio for Deep Learning (Practice)"
In data/audio_files, 10 audio samples from Freesound.
There are some example codes for treating audio data.
It basically uses librosa for I/O, sounddevice and IPython.display.Audio for playback.
In this repo, all example codes will use them by default,
except for basic codes for other libraries.
You can choose another options like as below:
for I/O:
for playback:
Example codes for basic load/save and play to listen.
- load/save wave
- playback
- plot waveform
Example codes for feature extraction, converting, and feature visualization.
- STFT (spectrogram)
- magnitude & phase
- mel-spectrogram
- MFCC (mel-frequency cepstral coefficient)
- inverse STFT
- RMS normalization