Skip to content Skip to sidebar Skip to footer
Showing posts with the label Wav

Coverting Webm To Wav With Ffmpeg

I've succesfully used ffmpeg in Python to convert mp3-files into wav so I can post them to Goog… Read more Coverting Webm To Wav With Ffmpeg

How To Read Only Wav Files In A Directory Using Python?

from scipy.io.wavfile import read files = [f for f in os.listdir('.') if os.path.isfile(f)]… Read more How To Read Only Wav Files In A Directory Using Python?

How To Manipulate Wav File Data In Python?

I'm trying to read a wav file, then manipulate its contents, sample by sample Here's what I… Read more How To Manipulate Wav File Data In Python?

Create 32bit Float Wav File In Python?

I want to create 32bit float WAV files in Python (2.x). While 'standard' WAV files usually … Read more Create 32bit Float Wav File In Python?

Audio File Sounds Bad/noisy After Passing Through Low Pass Filter

I am trying to pass my audio through low pass filter, so as to filter out noise from it. However, t… Read more Audio File Sounds Bad/noisy After Passing Through Low Pass Filter

Using PyDub To Chop Up A Long Audio File

I'd like to use pyDub to take a long WAV file of individual words (and silence in between) as i… Read more Using PyDub To Chop Up A Long Audio File