Skip to content

Commit 4446739

Browse files
committed
increment version for release
1 parent 3028a63 commit 4446739

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

Diff for: CHANGELOG.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v0.18.0
2+
- Add a new constructor: `pydub.AudioSegment.from_mono_audiosegments()` which allows users to create a multi-channel audiosegment out of multiple mono ones.
3+
- Refactor `pydub.AudioSegment._sync()` to support an arbitrary number of audiosegment arguments.
4+
15
# v0.17.0
26
- Add the ability to add a cover image to MP3 exports via the `cover` keyword argument to `pydub.AudioSegment().export()`
37
- Add `pydub.AudioSegment().get_dc_offset()` and `pydub.AudioSegment().remove_dc_offset()` which allow detection and removal of DC offset in audio files.
@@ -35,7 +39,7 @@
3539
- Add `pydub.AudioSegment().raw_data` property which returns the raw audio data for an audio segment as a bytes (python 3) or a bytestring (python 3)
3640
- Allow users to specify frame rate in `pydub.AudioSegment.silent()` constructor
3741

38-
# v0.15.0
42+
# v0.15.0
3943
- Add support for RAW audio (basically WAV format, but without wave headers)
4044
- Add a new exception `pydub.exceptions.CouldntDecodeError` to indicate a failure of ffmpeg/avconv to decode a file (as indicated by ffmpeg/avconv exit code)
4145

@@ -55,7 +59,7 @@
5559
- Add a logger, `"pydub.converter"` which logs the ffmpeg commands being run by pydub.
5660
- Add `pydub.AudioSegment().split_to_mono()` method which returns a list of mono audio segments. One for each channel in the original audio segment.
5761
- Fix a bug in `pydub.silence.detect_silence()` which caused the function to break when a silent audio segment was equal in length to the minimum silence length. It should report a single span of silence covering the whole silent audio segment. Now it does.
58-
- Fix a bug where uncommon wav formats (those not supported by the stdlib wave module) would throw an exception rather than converting to a more common format via ffmpeg/avconv
62+
- Fix a bug where uncommon wav formats (those not supported by the stdlib wave module) would throw an exception rather than converting to a more common format via ffmpeg/avconv
5963

6064
# v0.11.0
6165
- Add `pydub.AudioSegment().max_dBFS` which reports the loudness (in dBFS) of the loudest point (i.e., highest amplitude sample) of an audio segment
@@ -87,7 +91,7 @@
8791
- Add a runtime warning when ffmpeg/avconv cannot be found to aid debugging
8892

8993
# v0.9.0
90-
- Added support for pypy (by reimplementing audioop in python). Also, we contributed our implementation to the pypy project, so that's 💯
94+
- Added support for pypy (by reimplementing audioop in python). Also, we contributed our implementation to the pypy project, so that's 💯
9195
- Add support for avconv as an alternative to ffmpeg
92-
- Add a new helper module `pydub.playback` which allows you to quickly listen to an audio segment using ffplay (or avplay)
96+
- Add a new helper module `pydub.playback` which allows you to quickly listen to an audio segment using ffplay (or avplay)
9397
- Add new function `pydub.utils.mediainfo('/path/to/audio/file.ext')` which reports back the results of ffprobe (or avprobe) including codec, bitrate, channels, etc

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='pydub',
11-
version='0.17.0',
11+
version='0.18.0',
1212
author='James Robert',
1313
author_email='[email protected]',
1414
description='Manipulate audio with an simple and easy high level interface',

0 commit comments

Comments
 (0)