Audio Processor Pack
★Trusted◇Sandbox optionalv1.0.0MITUnverifiedby 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.
Quick Start
agentnode install audio-processor-packRuns in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.
Usage
From packagefrom 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
Package installs but has import issues.
Verification failed. This package has issues that prevent it from being installed or imported correctly.
Reason: Tool entrypoint import verification failed
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
Permissions
Declared by the publisher. Checked before execution by the policy gate.
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.
agentnode install audio-processor-packFiles (3)
License
MITStats
Compatibility
Frameworks
Runtime
pythonPython Version
>=3.10Trust & Security
Publisher
AgentNode
@agentnode