agentsclimarketplace

Audio mel spectrogram preprocessing with min width trimming

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8/audio-mel-spectrogram-preprocessing-with-min-width-trimming

AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill audio-mel-spectrogram-preprocessing-with-min-width-trimming

Assembled 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

  1. Input Processing: Iterate through files in the specified directory. Filter for .mp3 files.
  2. Feature Extraction: Use librosa to 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.
  3. Labeling: Extract labels based on filename prefixes:
    • human_ -> 0
    • ai_ -> 1
  4. 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].
  5. Output: Save the processed features and labels as features.npy and labels.npy respectively.

Anti-Patterns

  • Do not use padding; strictly use trimming to the minimum width as requested.
  • Do not assume file extensions other than .mp3 unless 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

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.