September 2014
Intermediate to advanced
512 pages
12h 39m
English
In this recipe, we will show how to play sounds in the notebook. We will also illustrate the effect of simple digital filters on speech sounds.
You need the pydub package. You can install it with pip install pydub or download it from https://github.com/jiaaro/pydub/.
This package requires the open source multimedia library FFmpeg for the decompression of MP3 files, available at www.ffmpeg.org.
The code given here works with Python 3. You will find the Python 2 version in the book's GitHub repository.
In [1]: import urllib from io import BytesIO import numpy as np import scipy.signal as sg import pydub import matplotlib.pyplot as plt from IPython.display import ...
Read now
Unlock full access