Skip to content

Commit

Permalink
Fixed wav and bumped version.
Browse files Browse the repository at this point in the history
  • Loading branch information
muammar committed May 1, 2016
1 parent 7d44f89 commit 4d222d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* mkchromecast (0.2.0.2) **released**: 2016/05/01

- Fixed wav for Linux.

* mkchromecast (0.2.0.1) **released**: 2016/05/01

- Catching some minimal errors.
Expand Down
2 changes: 1 addition & 1 deletion mkchromecast/ffmpeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def debug_command():
"""
if codec == 'wav':
if platform == 'Linux':
command = [backend, '-re', '-f', '-ac', '2', '-ar', '44100','pulse', '-i', 'mkchromecast.monitor', \
command = [backend, '-re', '-ac', '2', '-ar', '44100','-f', 'pulse', '-i', 'mkchromecast.monitor', \
'-acodec', 'pcm_s24le', '-f', 'wav', '-ac', '2', '-ar', samplerate, 'pipe:']
else:
command = [backend, '-re', '-f', 'avfoundation', '-audio_device_index', '0', '-i', '', \
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.2.0.1'
__version__ = '0.2.0.2'

0 comments on commit 4d222d2

Please sign in to comment.