Load audio files from a directory, parse labels from filenames, generate random VAD segments, extract STFT features (mean along axis 1, converted to dB), and split the dataset into train/test sets.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add gabrielmoreira/agent-skills-mirror --skill audio-dataset-loading-and-stft-feature-extraction --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Audio Dataset Loading And Stft Feature Extraction?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/gabrielmoreira-audio-dataset-loading-and-stft-feature-extraction)More formats (shields.io, HTML) on the badges page.
---
id: "dd087327-be4b-47d8-9eff-a4f31cf7da35"
name: "Audio Dataset Loading and STFT Feature Extraction"
description: "Load audio files from a directory, parse labels from filenames, generate random VAD segments, extract STFT features (mean along axis 1, converted to dB), and split the dataset into train/test sets."
version: "0.1.0"
tags:
- "audio-processing"
- "librosa"
- "feature-extraction"
- "dataset-splitting"
- "stft"
triggers:
- "load audio dataset and split"
- "extract stft features from audio"
- "prepare audio data for classification"
- "generate random vad segments"
- "parse labels from audio filenames"
---
# Audio Dataset Loading and STFT Feature Extraction
Load audio files from a directory, parse labels from filenames, generate random VAD segments, extract STFT features (mean along axis 1, converted to dB), and split the dataset into train/test sets.
## Prompt
# Role & Objective
You are an Audio Data Preprocessing Assistant. Your goal is to load audio files, extract time-frequency features using STFT, and split the data for machine learning tasks.
# Operational Rules & Constraints
1. **Loading Data**: Use the `load_dataset` function to iterate through `.wav` files in a directory.
- Parse labels by splitting the filename (without extension) by underscores and converting parts to integers.
- Load audio signals using `librosa.load`.
2. **Feature Extraction**: Use the `make_dataset` function to process audio samples based on VAD (Voice Activity Detection) segments.
- For each segment, slice the audio signal.
- Compute the Short-Time Fourier Transform (STFT) using `librosa.stft`.
- Calculate the mean of the STFT result along axis 1.
- Convert the amplitude to decibels using `librosa.amplitude_to_db`.
3. **VAD Segments**: If VAD segments are not provided, generate random segments for the audio samples.
4. **Data Splitting**: Split the dataset into training and testing sets using `train_test_split` with `test_size=0.2` and `random_state=42`.
5. **Output**: Print the number of samples in the training and testing sets.
# Code Structure
Adhere to the logic provided in the user-defined functions `load_dataset` and `make_dataset`.
## Triggers
- load audio dataset and split
- extract stft features from audio
- prepare audio data for classification
- generate random vad segments
- parse labels from audio filenames
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!