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
Compare similarity between two audio signals (singing recordings) in Python
I'm working on a project to compare how similar someone's singing is to the original artist. Mostly interested in the pitch of the voice to see if they're in tune.
The audio files are in .wav format a...
ortunoa
Votes: 0
Answers: 1
How to compute inverse of a wave sound file in Python?
I am trying to compute inverse of a 16 bit mono wave file(8000Hz) using Python without using almost any external module except wave which is used to read samples from the wave file. I've tried reading...
Farooq Karimi Zadeh
Votes: 0
Answers: 1
How do I get the actual duration of .wav audio in python using .wave library?
I have a .wav audio which is of 5 seconds.
But after I imported the audio and calculated the time with this code using wave library:
import wave
wav1=wave.open("mixkit-flock-of-wild-geese-20.wav...
Unknown User
Votes: 0
Answers: 1