Skip to content

Commit

Permalink
- version bumped to 0.1.6.
Browse files Browse the repository at this point in the history
- Updated README.
- Updated Changelog.
  • Loading branch information
muammar committed Apr 16, 2016
1 parent e8d1837 commit 5d9ddc2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
9 changes: 6 additions & 3 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion mkchromecast/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# This file is part of mkchromecast.

__version__ = '0.1.5'
__version__ = '0.1.6'

0 comments on commit 5d9ddc2

Please sign in to comment.