From 6593c4777607c0207dd73d56594cb46d24b7b277 Mon Sep 17 00:00:00 2001 From: James Robert Date: Sat, 9 Jan 2016 15:02:42 -0500 Subject: [PATCH] updates for next release Add authors from pull requests, increment version and update docs --- API.markdown | 2 ++ AUTHORS | 3 +++ setup.py | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/API.markdown b/API.markdown index 1562c470..1e3034f9 100644 --- a/API.markdown +++ b/API.markdown @@ -151,6 +151,8 @@ ten_second_silence = AudioSegment.silent(duration=10000) - `duration` | example: `3000` | default: `1000` (1 second) Length of the silent `AudioSegment`, in milliseconds +- `frame_rate` | example `44100` | default: `11025` (11.025 kHz) + Frame rate (i.e., sample rate) of the silent `AudioSegment` in Hz ### AudioSegment(…).dBFS diff --git a/AUTHORS b/AUTHORS index 49ea1768..eae63bd7 100644 --- a/AUTHORS +++ b/AUTHORS @@ -36,3 +36,6 @@ John McMellen Johan Lövgren github: dashj + +Joachim Krüger + github: jkrgr \ No newline at end of file diff --git a/setup.py b/setup.py index 7757b0cf..f301c138 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='pydub', - version='0.16.0', + version='0.16.1', author='James Robert', author_email='jiaaro@gmail.com', description='Manipulate audio with an simple and easy high level interface',