Reading input sound signal using Python
Have you tried pyaudio? To install: python -m pip install pyaudio Recording example, from the official website: PyAudio example: Record a few seconds of audio and save it to a WAVE file. import pyaudio import wave CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 2 RATE = 44100 RECORD_SECONDS = 5 WAVE_OUTPUT_FILENAME = “output.wav” p … Read more