Skip to main content

Audio Processor Pack

TrustedSandbox optionalv1.0.0MITUnverified

by AgentNode · published 5 months ago · toolpack

Edit, convert, and analyze audio files.

Trim, merge, convert audio formats, adjust volume, add effects, and extract metadata. Uses pydub and ffmpeg for audio processing.

langchaincrewaigeneric

Quick Start

bash
agentnode install audio-processor-pack

Runs in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.

Usage

From package
python
from audio_processor_pack.tool import run

result = run(
    capability="process_audio",
    params={
        "input_path": "/tmp/interview_raw.wav",
        "operations": [
            {"type": "trim", "start_ms": 2500, "end_ms": 3600000},
            {"type": "normalize", "target_dbfs": -20.0},
            {"type": "convert", "format": "mp3", "bitrate": "192k"}
        ]
    }
)

print(f"Output: {result['output_path']}")
print(f"Duration: {result['duration_seconds']:.1f}s")
print(f"File size: {result['file_size_kb']:.0f} KB")

Runs locally on your machine. No execution data is sent to AgentNode. Permissions are checked before execution. Learn how this works

Verification

low confidence15/100✖ Failed
smokeSmoke test failed
0/25
testsTests failed
0/15
importImport verification failed
0/15
installInstalled in 1.5s
+15/15
contractContract not validated
0/10
determinismNo determinism data
0/5
reliabilityNo stability data
0/10

Package installs but has import issues.

install1.5s
import116ms

Verification failed. This package has issues that prevent it from being installed or imported correctly.

Reason: Tool entrypoint import verification failed

Python 3.12.3ffmpegpopplertesseractuv

Last verified 2d ago· Runner v2.0.0

Use this when you need to...

  • Trim silence from podcast recordings
  • Convert WAV files to MP3 with bitrate control
  • Merge multiple audio clips into a single track
  • Normalize volume across a batch of audio files
  • Extract metadata and duration from audio files

README

Version History

Capabilities

audio_processingprocess_audiotool

Permissions

Sandbox optionalFrom a trusted publisher — runs on the host by default. You can require isolation with sandbox.host_trust_policy.

Declared by the publisher. Checked before execution by the policy gate.

Networknone
Filesystemtemp
Code Executionlimited_subprocess
Data Accessinput_only
User Approvalnever

Permissions are policy-checked before execution. For trusted and curated packages that run on the host, network and filesystem access are policy-checked but not OS-sandboxed. When runtime isolation is required for untrusted/community code, AgentNode uses sandbox-or-fail-closed if the required container runtime and pinned image are available. Learn more

Privacy

All tool execution happens locally on your machine. AgentNode never receives:

  • • Tool inputs or outputs
  • • Execution logs
  • • Data your agent processes

Only install events and search queries are sent to the registry.

bash
agentnode install audio-processor-pack

Files (3)

License

MIT

Stats

Downloads0
Installs0
Versionv1.0.0
Published3/16/2026
Channelstable
Typetoolpack
Entrypointaudio_processor_pack.tool

Compatibility

Frameworks

langchaincrewaigeneric

Runtime

python

Python Version

>=3.10

Trust & Security

PublisherTrusted
SignatureNone
ProvenanceNone
Security Issues0

Publisher

A

AgentNode

@agentnode