@radzor/audio-mix
Mix, trim, and concatenate audio tracks using FFmpeg subprocess. Supports volume adjustment, format conversion, and metadata extraction for server-side audio processing.
Mediav0.1.0typescriptpythonServeraudiomixingffmpegtrimconcatenatemediaby Radzor
Install
View source on GitHub →$npx radzor@latest add audio-mix
⚠ Constraints: Requires FFmpeg and FFprobe installed on the system. Server-only (uses child_process). Operations are synchronous per job; queue externally for high throughput.
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| ffmpegPath | string | ffmpeg | Path to the ffmpeg binary. |
| ffprobePath | string | ffprobe | Path to the ffprobe binary. |
| outputDir | string | — | Default output directory for processed audio files. |
ffmpegPathstring
Path to the ffmpeg binary.
default: ffmpeg
ffprobePathstring
Path to the ffprobe binary.
default: ffprobe
outputDirstring
Default output directory for processed audio files.