Skip to main content

This Python module provides bindings for the PortAudio library and a few convenience functions to play and record NumPy arrays containing audio signals.

Documentation:

http://python-sounddevice.rtfd.org/

Code:

http://github.com/spatialaudio/python-sounddevice/

Python Package Index:

http://pypi.python.org/pypi/sounddevice/

Requirements

Python:

Of course, you’ll need Python. Any version where CFFI (see below) is supported should work. If you don’t have Python installed yet, you should get one of the distributions which already include CFFI and NumPy (and many other useful things), e.g. Anaconda or WinPython.

pip/setuptools:

Those are needed for the installation of the Python module and its dependencies. Most systems will have these installed already, but if not, you should install it with your package manager or you can download and install pip and setuptools as described on the pip installation page. If you happen to have pip but not setuptools, use this command:

pip install setuptools --user
CFFI:

The C Foreign Function Interface for Python is used to access the C-API of the PortAudio library from within Python. It supports CPython 2.6, 2.7, 3.x; and is distributed with PyPy 2.0 beta2 or later. You should install it with your package manager (if it’s not installed already), or you can get it with:

pip install cffi --user
PortAudio library:

The PortAudio library must be installed on your system (and CFFI must be able to find it). Again, you should use your package manager to install it. If you prefer, you can of course also download the sources and compile the library yourself. If you are using Mac OS X or Windows, the library will be installed automagically with pip (see “Installation” below).

NumPy (optional):

NumPy is only needed if you want to play back and record NumPy arrays. The classes sounddevice.RawStream, sounddevice.RawInputStream and sounddevice.RawOutputStream use plain Python buffer objects and don’t need NumPy at all. If you need NumPy, you should install it with your package manager or use a Python distribution that already includes NumPy (see above). Installing NumPy with pip is not recommended.

Installation

Once you have installed the above-mentioned dependencies, you can use pip to download and install the latest release with a single command:

pip install sounddevice --user

If you want to install it system-wide for all users (assuming you have the necessary rights), you can just drop the --user option.

To un-install, use:

pip uninstall sounddevice

Usage

First, import the module:

import sounddevice as sd

Playback

Assuming you have a NumPy array named myarray holding audio data with a sampling frequency of fs (in the most cases this will be 44100 or 48000 frames per second), you can play it back with sounddevice.play():

sd.play(myarray, fs)

This function returns immediately but continues playing the audio signal in the background. You can stop playback with sounddevice.stop():

sd.stop()

If you know that you will use the same sampling frequency for a while, you can set it as default using sounddevice.default.samplerate:

sd.default.samplerate = fs

After that, you can drop the samplerate argument:

sd.play(myarray)

Recording

To record audio data from your sound device into a NumPy array, use sounddevice.rec():

duration = 10  # seconds
myrecording = sd.rec(duration * fs, samplerate=fs, channels=2)

Again, for repeated use you can set defaults using sounddevice.default:

sd.default.samplerate = fs
sd.default.channels = 2

After that, you can drop the additional arguments:

myrecording = sd.rec(duration * fs)

This function also returns immediately but continues recording in the background. In the meantime, you can run other commands. If you want to check if the recording is finished, you should use sounddevice.wait():

sd.wait()

If the recording was already finished, this returns immediately; if not, it waits and returns as soon as the recording is finished.

Alternatively, you could have used the blocking argument in the first place:

myrecording = sd.rec(duration * fs, blocking=True)

By default, the recorded array has the data type 'float32' (see sounddevice.default.dtype), but this can be changed with the dtype argument:

myrecording = sd.rec(duration * fs, dtype='float64')

Simultaneous Playback and Recording

To play back an array and record at the same time, use sounddevice.playrec():

myrecording2 = sd.playrec(myarray, fs, channels=2)

The number of output channels is obtained from myarray, but the number of input channels still has to be specified.

Again, default values can be used:

sd.default.samplerate = fs
sd.default.channels = 2
myrecording2 = sd.playrec(myarray)

In this case the number of output channels is still taken from myarray (which may or may not have 2 channels), but the number of input channels is taken from sounddevice.default.channels.

Device Selection

In many cases, the default input/output device(s) will be the one(s) you want, but it is of course possible to choose a different device. Use sounddevice.print_devices() to get a list of supported devices. You can use the corresponding device ID to select a desired device by assigning to sounddevice.default.device or by passing it as device argument to sounddevice.play(), sounddevice.Stream() etc.

Callback Streams

Callback “wire” with sounddevice.Stream:

import sounddevice as sd
duration = 5  # seconds

def callback(indata, outdata, frames, time, status):
    if status:
        print(status)
    outdata[:] = indata

with sd.Stream(channels=2, callback=callback):
    sd.sleep(duration * 1000)

Same thing with sounddevice.RawStream:

import sounddevice as sd
duration = 5  # seconds

def callback(indata, outdata, frames, time, status):
    if status:
        print(status)
    outdata[:] = indata

with sd.RawStream(channels=2, dtype='int24', callback=callback):
    sd.sleep(duration * 1000)

Blocking Read/Write Streams

Coming soon!

Release files for sounddevice 0.2.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for sounddevice 0.2.2
File Size Uploaded
sounddevice-0.2.2.tar.gz 32.8 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for sounddevice 0.2.2
File
sounddevice-0.2.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win_amd64.whl CPython 2.7, Python 3, CPython 2.6, PyPy 3.2, CPython 3.5, CPython 3.4, CPython 3.3, Python 2, CPython 3.2, PyPy 2.7 none Windows x86-64 Details
sounddevice-0.2.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win32.whl CPython 2.7, CPython 2.6, PyPy 3.2, Python 3, CPython 3.4, Python 2, CPython 3.5, CPython 3.3, CPython 3.2, PyPy 2.7 none Windows x86-32 Details
sounddevice-0.2.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-macosx_10_6_x86_64.whl PyPy 2.7, CPython 2.7, CPython 2.6, PyPy 3.2, Python 3, CPython 3.4, Python 2, CPython 3.5, CPython 3.3, CPython 3.2 none macOS 10.6+ x86-64 Details
sounddevice-0.2.2-py2.py3-none-any.whl Python 2, Python 3 none any Details

Total release size: 1.2 MB

Release files / sounddevice-0.2.2.tar.gz

Download URL sounddevice-0.2.2.tar.gz
Size 32.8 kB
Tags Source
SHA-256 checksum
How to use checksums
ef01fcfe50b5c582c882ca9d8abac5dc3235688d842f9a9ad295d7b1eea2993a
BLAKE2b-256 checksum
How to use checksums
130f3e19622ef01621ca9e5a68addb473a988f6cd5b78da6e70eda038e617e09
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / sounddevice-0.2.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win_amd64.whl

Download URL sounddevice-0.2.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win_amd64.whl
Size 415.4 kB
Tags CPython 2.6 CPython 2.7 CPython 3.2 CPython 3.3 CPython 3.4 CPython 3.5 PyPy 2.7 PyPy 3.2 Python 2 Python 3 Windows x86-64
SHA-256 checksum
How to use checksums
61966a37d6693ae88fe39f85eb207e0fc4315d1def794b714e72f7cc3f05ca67
BLAKE2b-256 checksum
How to use checksums
4d5bc77aaf9e36dbf4b7c74645bb814d4b7863da25bc075552c42a7e57592f2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / sounddevice-0.2.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win32.whl

Download URL sounddevice-0.2.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win32.whl
Size 407.2 kB
Tags CPython 2.6 CPython 2.7 CPython 3.2 CPython 3.3 CPython 3.4 CPython 3.5 PyPy 2.7 PyPy 3.2 Python 2 Python 3 Windows x86-32
SHA-256 checksum
How to use checksums
4e8cf94e0692823f92c0d929eceab6e38bca3c90d1bd120ec4060477784dd67e
BLAKE2b-256 checksum
How to use checksums
8af059c99282efcfdf1d534294f8bc45043b287fdd0e92b68506cdfee59fa1f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / sounddevice-0.2.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-macosx_10_6_x86_64.whl

Download URL sounddevice-0.2.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-macosx_10_6_x86_64.whl
Size 233.4 kB
Tags CPython 2.6 CPython 2.7 CPython 3.2 CPython 3.3 CPython 3.4 CPython 3.5 PyPy 2.7 PyPy 3.2 Python 2 Python 3 macOS 10.6+ x86-64
SHA-256 checksum
How to use checksums
bfd417313eed0e6017a5cd81fa032ad1b4e15944e887fe1244c75e82c0bff798
BLAKE2b-256 checksum
How to use checksums
0b2c59ac58b3f0f6a12a2ab88b8c58cbe44f075fe06790f1e68b003deedd3e50
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / sounddevice-0.2.2-py2.py3-none-any.whl

Download URL sounddevice-0.2.2-py2.py3-none-any.whl
Size 106.0 kB
Tags Python 2 Python 3
SHA-256 checksum
How to use checksums
768874be2e356ad1913c23ffc57733660778a8d915d55e76ba369191b53b81e5
BLAKE2b-256 checksum
How to use checksums
2c867faf59cf5195a2cecd75300e669fca7f45115cdddb982eb774c4868fded1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

0.5.6

6 release files

0.5.5

6 release files

0.5.4

6 release files

0.5.3

5 release files

0.5.2

5 release files

0.5.1

5 release files

0.5.0

5 release files

0.4.7

5 release files

0.4.6

5 release files

0.4.5

5 release files

0.4.4

5 release files

0.4.3

5 release files

0.4.2

5 release files

0.4.1

5 release files

0.4.0

5 release files

0.3.15

5 release files

0.3.14

5 release files

0.3.13

5 release files

0.3.10

5 release files

0.3.9

5 release files

0.3.8

5 release files

0.3.7

5 release files

0.3.6

5 release files

0.3.5

5 release files

0.3.4

5 release files

0.3.3

5 release files

0.3.2

5 release files

0.3.1

5 release files

0.3.0

5 release files

This release

0.2.2 This release

5 release files

0.2.1

5 release files

0.2.0

5 release files

0.1.0

2 release files

0.0.0

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page