Learn Before
Concept
WAV Files
Within the scipy.io package, there is the scipy.io.wavefile module. Use this when dealing with WAV files. It includes these helpful functions:
-read(filename[, mmap]) Open a WAV file
-writefilename, rate, data) Write a NumPy array as a WAV file.
These objects let us access the data within each WAV file. This data can be edited and then rewritten to create a new, different-sounding WAV file.
0
1
Updated 2021-07-15
Tags
Python Programming Language
Data Science