Releases: jiaaro/pydub
Releases · jiaaro/pydub
v0.19.0
- Allow codec and ffmpeg/avconv parameters to be set in the
pydub.AudioSegment.from_file()
for more control while decoding audio files - Allow
AudioSegment
objects with more than two channels to be split usingpydub.AudioSegment().split_to_mono()
- Add support for inverting the phase of only one channel in a multi-channel
pydub.AudioSegment
object - Fix a bug with the latest avprobe that broke
pydub.utils.mediainfo()
- Add tests for webm encoding/decoding
v0.18.0
v0.17.0
- Add the ability to add a cover image to MP3 exports via the
cover
keyword argument topydub.AudioSegment().export()
- Add
pydub.AudioSegment().get_dc_offset()
andpydub.AudioSegment().remove_dc_offset()
which allow detection and removal of DC offset in audio files. - Minor fixes for windows users