python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to get 24-bit samples from USB audio device using Python?
I am trying to get a stream of 24-bit audio samples from some USB audio device using Python.
I already searched for some solutions and found this thread that is using PyAudio stream with a format of p...
Dima Tepliakov
Votes: 0
Answers: 1
Can pyAudioAnalysis be used on a live http audio stream?
I am trying to use pyAudioAnalysis to analyse an audio stream in real-time from a HTTP stream. My goal is to use the Zero Crossing Rate (ZCR) and other methods in this library to identify events in th...
Tompo
Votes: 0
Answers: 1
ImportError: libportaudio.so.2: cannot open shared object file: No such file or directory in raspberry-pi4
My code:
import speech_recognition as sr
r = sr.Recognizer()
with sr.Microphone() as source:
print("talk")
audio_text = r.listen(source)
print("time over")
tr...
Mohamed Faris
Votes: 0
Answers: 2