Python Forum
Need help in framing data read from wav file - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Data Science (https://python-forum.io/forum-44.html)
+--- Thread: Need help in framing data read from wav file (/thread-2005.html)



Need help in framing data read from wav file - Vishweshkumar - Feb-10-2017

Hi, I am quite new to python. I am using scipy and numpy libraries for my project. My project involves framing the data read from the .wav file and taking Fast Fourier transform and storing the data column-wise in a matrix. I have successfully done the same in MATLAB but facing some trouble in implementing the same in python.

 Thanks in advance...


RE: Need help in framing data read from wav file - sparkz_alot - Feb-10-2017

Have you looked at Python's built-in "wave" module? It has the ability to read and write all data to/from a .wav file.