spectra_torch
Considering the pytorch-kalda is presented, so it is more practical to use it. Also, SpeechBrain, A PyTorch-based Speech Toolkit, is coming. I am looking forward to a nice step on speech. To conclude, this package is used to learn spectra of a signal, so it is valuable at all.
This library provides common spectra features from an audio signal including MFCCs and filter bank energies. This library mimics the library python_speech_features but PyTorch-style.
This library provides voice activity detection (VAD) based on energy. This library mimics the library VAD-python but PyTorch-style.
Use: Rui Wang. (2020, March 14). mechanicalsea/spectra: release v0.4.0 (Version 0.4.0).
Installation
This library is avaliable on pypi.org
To install from Pypi:
pip install --upgrade spectra-torch
Require:
- python: 3.7.3
- torch: 1.4.0
- torchaudio: 0.4.0
Usage
Supported features:
- Mel Frequency Cepstral Coefficients (MFCC)
- Filterbank Energies
- Log Filterbank Energies
- Voice Activity Detection (VAD)
Here are examples.
Easy demo:
# Ensure cuda is available.
import spectra_torch.base as mm
import torchaudio as ta
sig, sr = ta.load_wav('piece_20_32k.wav')
sig = sig[0].cuda()
mfcc = mm.mfcc(sig, sr) # MFCC
starts, detection = mm.is_speech(sig, sr, speechlen=0.5) # VAD
Tutorial
Tutorials of MFCC and VAD is provided at notebooks.
Step-by-step description is presented. Welcome to enjoy it.
Performance
The difference between spectra_torch and python_speech_features:
- Precision bais: 1e-4
- Speed up: 0.1s/mfcc
MFCC
def mfcc(signal, samplerate=16000, winlen=0.025, hoplen=0.01,
numcep=13, nfilt=26, nfft=None, lowfreq=0, highfreq=None,
preemph=0.97, ceplifter=22, plusEnergy=True)
Filterbank
def fbank(signal, samplerate=16000, winlen=0.025, hoplen=0.01,
nfilt=26, nfft=512, lowfreq=0, highfreq=None, preemph=0.97)
VAD
def is_speech(signal, samplerate=16000, winlen=0.02, hoplen=0.01,
thresEnergy=0.6, speechlen=0.5, lowfreq=300, highfreq=3000,
preemph=0.97)
Reference
python_speeck_features: https://github.com/jameslyons/python_speech_featuresVAD-python: https://github.com/marsbroshok/VAD-pythonpythonaudio: https://pytorch.org/audio/_modules/torchaudio/functional.html
Thanks for you attention.
Free for question to my email (rwang@tongji.edu.cn).
Release files for spectra-torch 0.4.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| spectra-torch-0.4.0.tar.gz | 5.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| spectra_torch-0.4.0-py2.py3-none-any.whl | Python 3, Python 2 | none | any | Details |
Total release size: 12.0 kB
Release files / spectra-torch-0.4.0.tar.gz
| Download URL | spectra-torch-0.4.0.tar.gz |
|---|---|
| Size | 5.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
47b038c8f458c27885e1de125aead585906bc8cbcb3bea4d60e8b22c787a50bf
|
|
BLAKE2b-256 checksum How to use checksums |
c27b30e5dd987093b3edc7e8fd68378badd5015215d1caa7a2975052909c0ae3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6
|
Release files / spectra_torch-0.4.0-py2.py3-none-any.whl
| Download URL | spectra_torch-0.4.0-py2.py3-none-any.whl |
|---|---|
| Size | 6.2 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
c81b6eb92f37f4fdc0c6b35538c0c58901842277343f9c4400ae2c716b97b05d
|
|
BLAKE2b-256 checksum How to use checksums |
a68096ee4a58b1759f9fa9aa9a519d39230137a89f60cbf9244d874a299259e5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6
|