Skip to main content

Play and Record Sound with Python

Project description

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.query_devices() to get a list of supported devices. The same list can be obtained from a terminal by typing the command

python -m sounddevice

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!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sounddevice-0.3.0.tar.gz (33.3 kB view details)

Uploaded Source

Built Distributions

sounddevice-0.3.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win_amd64.whl (417.4 kB view details)

Uploaded CPython 2.6 CPython 2.7 CPython 3.2 CPython 3.3 CPython 3.4 CPython 3.5 PyPy Python 2 Python 3 Windows x86-64

sounddevice-0.3.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win32.whl (409.2 kB view details)

Uploaded CPython 2.6 CPython 2.7 CPython 3.2 CPython 3.3 CPython 3.4 CPython 3.5 PyPy Python 2 Python 3 Windows x86

sounddevice-0.3.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-macosx_10_6_x86_64.whl (235.4 kB view details)

Uploaded CPython 2.6 CPython 2.7 CPython 3.2 CPython 3.3 CPython 3.4 CPython 3.5 PyPy Python 2 Python 3 macOS 10.6+ x86-64

sounddevice-0.3.0-py2.py3-none-any.whl (107.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file sounddevice-0.3.0.tar.gz.

File metadata

  • Download URL: sounddevice-0.3.0.tar.gz
  • Upload date:
  • Size: 33.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for sounddevice-0.3.0.tar.gz
Algorithm Hash digest
SHA256 a9c81367d335d592e95153445c205f0dc8d26e9aba1ddfa37a3123ee49e8103c
MD5 9173d17ee5043e9c3fe530d00d849d81
BLAKE2b-256 3eb9d85ff9316fa2bf15e09bf2370dc8b103f3f4a86bce11297e7dbec7c3970f

See more details on using hashes here.

File details

Details for the file sounddevice-0.3.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win_amd64.whl.

File metadata

File hashes

Hashes for sounddevice-0.3.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win_amd64.whl
Algorithm Hash digest
SHA256 1f353238282ca3af666796e93feca2a1e6ec1c1fdcdda4407384a347d81e51d5
MD5 4744331ee362e69f7ea7bc760c584ba2
BLAKE2b-256 fe5a6353dd94c88088972acb7d0debdf0d7111cc215aad84befc4cb42b257acd

See more details on using hashes here.

File details

Details for the file sounddevice-0.3.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win32.whl.

File metadata

File hashes

Hashes for sounddevice-0.3.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win32.whl
Algorithm Hash digest
SHA256 a785dc0dc0fae5a2b80acf4cc4042cca3468e85303d64e099fc842a797e83656
MD5 866d518a1bb499290afd7a81a6226c31
BLAKE2b-256 7bc79f145e307a6163c4295bd2596c939a30f25b262c78e4aa0f7055f48cd1b5

See more details on using hashes here.

File details

Details for the file sounddevice-0.3.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-macosx_10_6_x86_64.whl.

File metadata

File hashes

Hashes for sounddevice-0.3.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-macosx_10_6_x86_64.whl
Algorithm Hash digest
SHA256 3a52d7d87a4df639cc9775933d74a3140419da07e324cffd512892456c0df8c0
MD5 9e022498a31be5a516a7c73f538cabcf
BLAKE2b-256 6fc940bf413aed481c537a81dc3c22543225c2b9824bb30585a498c0f56b3222

See more details on using hashes here.

File details

Details for the file sounddevice-0.3.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for sounddevice-0.3.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 731021e2cd5c8f9e33166e5f7beec963347251b50e59fa642bacd2672121cf52
MD5 7a3d68d87d90c5a96e673bc3b77ac1f7
BLAKE2b-256 afbccc14c2f4a4e178e6c5d6c283d5c0e0a7c527815fd89dca3b2a627089f585

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page