The Patchbay_

pydub

High-level Python library for simple audio editing: slice, concatenate, convert, and apply gain.

LanguagePython
CategorySynthesis & DSP
LicenseMIT
PlatformsmacOS Windows Linux
Installpip install pydub
First released2011
MaintainedYes
LinksWebsite · Source

Strengths

Limitations

Best for

Quick, scripted audio-file editing and format conversion.

Minimal example

from pydub import AudioSegment
sound = AudioSegment.from_file('in.mp3')
louder = sound + 6
louder.export('out.mp3', format='mp3')

Alternatives to pydub

pyoCsoundPure DataFaust

← Back to all tools