From 5d9ddc2fb852ab422967711ccb0b0cfc67642d28 Mon Sep 17 00:00:00 2001 From: Muammar El Khatib Date: Sat, 16 Apr 2016 21:08:15 +0200 Subject: [PATCH] - version bumped to 0.1.6. - Updated README. - Updated Changelog. --- README.md | 8 +++++++- changelog.md | 9 ++++++--- mkchromecast/version.py | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 13deec77d..633774204 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ When using ffmpeg, the following codecs are available: - mp3 [192k] MPEG Audio Layer III (default) - ogg [192k] Ogg Vorbis -- aac [128k] Advanced Audio Coding (AAC) +- aac [192k] Advanced Audio Coding (AAC) - wav [24-Bit, HQ] Waveform Audio File Format - flac [24-Bit, HQ] Free Lossless Audio Codec @@ -108,6 +108,12 @@ Example using wav: python mkchromecast.py --encoder-backend ffmpeg -c wav ``` +There is also an option to change the `bitrate`. See example below: + +``` +python mkchromecast.py --encoder-backend ffmpeg -c ogg -b 128 +``` + #### PyQt5 These Python bindings are needed if you intend to use the system tray menu. As diff --git a/changelog.md b/changelog.md index 51a82871e..56c21cd63 100644 --- a/changelog.md +++ b/changelog.md @@ -1,7 +1,10 @@ -* mkchromecast (0.1.6) **unreleased** +* mkchromecast (0.1.6) **released**: 2016/04/16 - - ffmpeg is now a supported backend. - - We support mp3, ogg codecs. + - ffmpeg is now a supported backend. You can check how to use this backend + by consulting `python mkchromecast.py -h`. + - The following codecs are supported:'mp3', 'ogg', 'aac', 'wav', 'flac'. + - Improved screen messages. + - Date format in changelog has been changed. * mkchromecast (0.1.5) **released**: Wed Apr 13 18:08:44 2016 +0200 diff --git a/mkchromecast/version.py b/mkchromecast/version.py index 486795ea3..70129a4c6 100644 --- a/mkchromecast/version.py +++ b/mkchromecast/version.py @@ -2,4 +2,4 @@ # This file is part of mkchromecast. -__version__ = '0.1.5' +__version__ = '0.1.6'