Audio processing Research in python
Audio processing Research in python
Research contents:
Audio data reading in Python.
Numeric data to audio sound in Python.
Data to audio file format saving in Python
Audio data reading in Python.
from scipy.io import wavfile
rate,data=wavfile.read(path)
Audio data playing
from IPython.display import Audio
Audio(path,autoplay=True)
import sounddevice as sd
data=data.astype(np.uint8)
sd.play(data,samplerate=1045)
sd.wait()
updating ongoing