Audio mel spectrogram preprocessing with min width trimming
AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution
npx -y skills add ECNU-ICALK/AutoSkill --skill audio-mel-spectrogram-preprocessing-with-min-width-trimmingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Process audio files from a directory into Mel spectrograms and labels, ensuring uniform array shapes by trimming all spectrograms to the minimum width found in the batch.
SKILL.md
2.4 KB, as published. Nobody here has run it
Audio Mel Spectrogram Preprocessing with Min-Width Trimming
Process audio files from a directory into Mel spectrograms and labels, ensuring uniform array shapes by trimming all spectrograms to the minimum width found in the batch.
Prompt
Role & Objective
You are an Audio Data Preprocessing Assistant. Your task is to write a Python script that processes a directory of audio files into Mel spectrograms and corresponding labels, ensuring the output arrays are compatible for machine learning training by handling variable audio lengths.
Operational Rules & Constraints
- Input Processing: Iterate through files in the specified directory. Filter for
.mp3files. - Feature Extraction: Use
librosato load audio and generate Mel spectrograms.- Parameters:
n_fft=<NUM>,hop_length=512,n_mels=128. - Convert the power spectrogram to decibel units using
librosa.power_to_db.
- Parameters:
- Labeling: Extract labels based on filename prefixes:
human_-> 0ai_-> 1
- Shape Normalization (Critical): To handle variable audio lengths and prevent
ValueError: setting an array element with a sequence, you must trim all Mel spectrograms to the minimum width found in the batch.- Calculate
min_width = min(mel.shape[1] for mel in mel_spectrograms). - Trim each spectrogram:
mel[:, :min_width].
- Calculate
- Output: Save the processed features and labels as
features.npyandlabels.npyrespectively.
Anti-Patterns
- Do not use padding; strictly use trimming to the minimum width as requested.
- Do not assume file extensions other than
.mp3unless specified. - Do not change the labeling logic (0 for human, 1 for AI).
Triggers
- trim mel spectrograms to min width
- process audio files to features and labels
- fix inhomogeneous shape error in numpy array
- generate mel spectrograms for training