Home > Software engineering >  import audio data to python
import audio data to python

Time:11-28

I have two files containing Asthma and COPD patient's lung sound in .wav format separately. But I haven't csv file. Is there any method to create .csv file of that data? I need to import this data to python to train model. is there any method import this all data without having csv file?

CodePudding user response:

Yes, you can import it using Wave module. Refer python docs : https://docs.python.org/3/library/wave.html

CodePudding user response:

Maybe this will help? https://github.com/Lukious/wav-to-csv. Good question.

  • Related