Skip to content

Commit

Permalink
increment version number
Browse files Browse the repository at this point in the history
and add changelog
  • Loading branch information
bastibe committed Mar 14, 2021
1 parent 754d915 commit a2ebd94
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
16 changes: 12 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,12 @@ as silence for both playback and recording.

FAQ
---
Q: How to make it work on a headless Raspberry Pi?
Q: How to make it work on a headless Raspberry Pi?

A: PulseAudio is not installed by default on the Raspberry Pi OS Lite distribution (https://www.raspberrypi.org/software/operating-systems/). In order to use ``soundcard``, you have to install PulseAudio first, and edit the configuration (with a fix to avoid the main output to be in mono-only). ::
A: PulseAudio is not installed by default on the Raspberry Pi OS Lite distribution (https://www.raspberrypi.org/software/operating-systems/). In order to use ``soundcard``, you have to install PulseAudio first, and edit the configuration (with a fix to avoid the main output to be in mono-only). ::

sudo apt install -y python3-pip python3-numpy pulseaudio
sudo nano /usr/share/pulseaudio/alsa-mixer/profile-sets/default.conf
sudo apt install -y python3-pip python3-numpy pulseaudio
sudo nano /usr/share/pulseaudio/alsa-mixer/profile-sets/default.conf
# comment the block [Mapping analog-mono] with ';'
pulseaudio -D
python3 -m pip install soundcard
Expand Down Expand Up @@ -208,3 +208,11 @@ Changelog
(Thank you, Bob Thomas!)
- 2020-05-19 adds compatibility with Windows 7
(Thank you, demberto!)
- 2020-07-22 fixes freezing bug on Linux during startup
(Thank you, zhujisheng!)
- 2020-08-01 improves error reporting on Linux
(Thank you, Rik van Riel!)
- 2020-08-13 fixes crash due to use-after-free on Linux
(Thank you, Rik van Riel!)
- 2021-01-13 fixes unicode error on Windows
(Thank you, paulzzh!)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='SoundCard',
version='0.4.0',
version='0.4.1',
description='Play and record audio without resorting to CPython extensions',
author='Bastian Bechtold',
url='https://github.com/bastibe/SoundCard',
Expand Down

0 comments on commit a2ebd94

Please sign in to comment.