A comprehensive Python toolbox for audio processing using PyTorch with device-aware operations and GPU acceleration.
Project description
VoxLab
A comprehensive Python toolbox for audio processing using PyTorch. VoxLab provides a clean, device-aware architecture for audio manipulation with PyTorch tensors and supports GPU acceleration.
Features
- Device-Aware Audio Processing: CPU/GPU operations with automatic device preservation
- Memory-Efficient Operations: In-place processing options to reduce memory usage
- Comprehensive Preprocessing Pipeline: Resampling, mono conversion, silence removal, chunking, and RMS normalization
- Extensive Testing: 62 passing tests covering all functionality
Installation
CUDA Installation (Recommended)
# Create conda environment with Python 3.11.13
conda create -n voxlab python=3.11.13 -y
conda activate voxlab
# Install PyTorch with CUDA 12.6 support
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu126
# Install in editable mode
pip install -e .
CPU-Only Installation
# For CPU-only usage (no CUDA)
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
pip install -e .
Quick Start
Basic Audio Processing
from voxlab.core.audio_samples import AudioSamples
from voxlab.preprocessing.functions import resample_audio, convert_to_mono
# Load and process audio
audio = AudioSamples.load("input.wav")
audio = resample_audio(audio, 16000, inplace=True) # Memory efficient
audio = convert_to_mono(audio, method='left', inplace=True)
audio.export("output.wav")
GPU-Accelerated Workflow
# Move to GPU for processing
audio = AudioSamples.load("input.wav").cuda()
print(f"Audio device: {audio.device}") # cuda:0
# All operations preserve GPU device
audio = resample_audio(audio, 16000, inplace=True) # Stays on GPU
audio = normalize_audio_rms(audio, target_rms=-20, inplace=True) # Stays on GPU
Pipeline Processing
from voxlab.preprocessing.pipeline import PreprocessingPipeline
from voxlab.preprocessing.functions import *
# Create pipeline
pipeline = PreprocessingPipeline()
pipeline.add_step(resample_audio, new_sample_rate=16000)
pipeline.add_step(convert_to_mono, method='left')
pipeline.add_step(normalize_audio_rms, target_rms=-15)
# Process (maintains device throughout)
audio = AudioSamples.load("input.wav").cuda()
result = pipeline.process(audio) # Result stays on GPU
Core Components
AudioSamples Class
- Central data structure using PyTorch tensors
- Device-aware operations (
.cuda(),.cpu(),.to()) - Automatic format conversions and stereo handling
- Export to multiple formats (wav, mp3, ogg, flac)
Preprocessing Functions
resample_audio(): Device-preserving resampling with configurable sample ratesconvert_to_mono(): Stereo-to-mono conversion with channel selectionremove_silence(): Intelligent silence removal with fade transitionsbreak_into_chunks(): Audio segmentation with fade-in/fade-outnormalize_audio_rms(): RMS-based normalization to target dB levels
Testing
Run tests using pytest:
source venv/bin/activate # or conda activate voxlab
pytest tests/ -v
Current Status: ✅ 62 tests passing
- AudioSamples core functionality (11 tests)
- Device awareness and GPU operations (12 tests)
- Preprocessing functions (23 tests)
- Pipeline system (11 tests)
- Utilities and infrastructure (5 tests)
Requirements
Core Dependencies
- Python >= 3.11.13
- PyTorch >= 2.8.0 (with torchaudio)
- scipy >= 1.16.2
- numpy >= 2.1.2
- pytest >= 8.4.2 (for testing)
License
MIT License
Author
Rafaello Virgilli (rvirgilli@gmail.com)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file voxlab-0.3.1.tar.gz.
File metadata
- Download URL: voxlab-0.3.1.tar.gz
- Upload date:
- Size: 20.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4c5c9bfa31c53f88b94e0b1a1e625e8ce86dd926e108e92af4d3a1aaf5f1931
|
|
| MD5 |
8dacea09d47391624f5f56182764a52c
|
|
| BLAKE2b-256 |
ab3197055507fecda543a72730c491030d8e138ea8028d72146f85610b2b3177
|
File details
Details for the file voxlab-0.3.1-py3-none-any.whl.
File metadata
- Download URL: voxlab-0.3.1-py3-none-any.whl
- Upload date:
- Size: 23.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d149818b26bdfba492c5b9326264f43e4333eede5611031a7d4ba27d02e653c9
|
|
| MD5 |
52437dfc694aa763c823906e602d62c7
|
|
| BLAKE2b-256 |
717cef46a2d8ea6af632f3a7ffb179c2ca25c3f00876d54a4234336ae0db7688
|