Replace video audio with high-quality dedicated recordings
Project description
SoundGraft
Replace video clip audio with matched segments from a dedicated audio recording.
When you record an event with both a camera and a separate high-quality audio recorder, SoundGraft automatically aligns each video clip to the audio timeline and swaps in the better audio track. It also cleans up the replacement audio by attenuating applause and impulse noise, then peak-normalizes the result.
How it works
- File classification — Scans the input directory and sorts files into audio recordings and video clips by extension.
- Event grouping — Groups consecutive audio segments into events using a file-size heuristic (a short segment followed by a full-length one marks an event boundary).
- Alignment — Uses Chromaprint fingerprint correlation to find where each video clip sits within the audio timeline. Metadata timestamps provide a search hint when available; falls back to a full scan otherwise.
- Audio processing — For each matched clip:
- Cuts the corresponding segment from the audio recording
- Detects and attenuates applause sections (spectral flatness analysis)
- Detects and attenuates impulse noise (transient peak analysis)
- Peak-normalizes to 0 dBFS
- Muxing — Replaces the video's audio track with the processed audio using ffmpeg.
Per-clip .log files are written to the output directory with alignment, applause, impulse, and normalization details.
Installation
pip install soundgraft
You also need these system tools:
ffmpeg/ffprobesoxfpcalc(fromlibchromaprint-tools)
On Debian/Ubuntu:
sudo apt install ffmpeg sox libchromaprint-tools
Usage
soundgraft --input <input_dir> --output <output_dir> [options]
Place all raw audio recordings and video clips in a single input directory. Output videos (with replaced audio) and per-clip log files are written to the output directory.
Options
| Flag | Description |
|---|---|
--input DIR |
Directory containing raw audio and video files (required) |
--output DIR |
Directory for output files (required) |
--clip N |
Process only video clip number N (1-indexed) |
--from-clip N |
Process video clips from N onwards |
--it-is-what-it-is |
Include low-confidence matches instead of skipping them |
--no-hint |
Skip metadata timestamp heuristic, always do full scan |
--keep-original-audio |
Keep the original video audio as a second track |
--temp-dir DIR |
Directory for temporary files (default: system temp) |
Supported formats
- Audio:
.wav,.flac,.mp3,.ogg,.aac - Video:
.mp4,.mov,.avi,.mkv,.mts
Example
soundgraft --input ./concert-raw --output ./concert-fixed
This scans concert-raw/ for audio and video files, aligns each video clip to the audio recording, processes the audio, and writes the final videos to concert-fixed/.
License
Apache-2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file soundgraft-0.1.1.tar.gz.
File metadata
- Download URL: soundgraft-0.1.1.tar.gz
- Upload date:
- Size: 700.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b07850fb5d4d7a474a9f1221fbeab92ce86dc5ca81a4b9081861a492dab6906c
|
|
| MD5 |
e157fa65ec75d6df00ea1df6688e4c33
|
|
| BLAKE2b-256 |
5fac6a85c9dd059e3f30d261f00b7055c411afd55546709432fc46010cec34a5
|
File details
Details for the file soundgraft-0.1.1-py3-none-any.whl.
File metadata
- Download URL: soundgraft-0.1.1-py3-none-any.whl
- Upload date:
- Size: 17.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9adbc6ce355867ee5122118ced030825dcf0f38ec21e0b59c6ff27791fd735c0
|
|
| MD5 |
959924a08de10de0a21ef3a8bc93c8b8
|
|
| BLAKE2b-256 |
9d23b8902baefab59b89b45982144fabe3fce420da5be8ad93f307e0b3596480
|