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 merge/layer two audio files using Python AudioSegment without it breaking the wav header
I am more or less following the code below to merge two audio files. It mostly works, where audio segment can export both the original files and the combined file to a folder. These play fine in finde...
tambourine
Votes: 0
Answers: 1
How to remove vocals so I can download only the instrumental of a song through python?
I am struggling with exporting a new audio file that only contains the instrumental of the song and no vocals.
I'm currently attempting to run this bit of code:
from pydub import AudioSegment
from pyd...
Aaditya Kumar
Votes: 0
Answers: 2
Pydub library to find the loudest portion of an audio clip, save from 5 seconds before to 5 seconds after, and print out the max decibels?
I want to take m4a files from iPhones and use Python to find the max-decibel portion of the segment. I then want to trim the clip to start 5 seconds before, and end 5 seconds after the max-decibel poi...
JapeHarf
Votes: 0
Answers: 0
Removing white noise and static from streamed audio file in python
I'm consuming a live audio stream from a websdr via a websocket by running a generator function which grabs chunks of the audio stream and saves those chunks into a wav file. The problem is that the g...
Matthew
Votes: 0
Answers: 0