About 191,000 results
Open links in new tab
  1. How to convert a .wav file to a spectrogram in python3

    Jun 27, 2017 · I am trying to create a spectrogram from a .wav file in python3. I want the final saved image to look similar to this image: I have tried the following: This stack overflow post: …

  2. python - Creating .wav file from bytes - Stack Overflow

    Sep 17, 2018 · I am reading bytes from wav audio downloaded from a URL. I would like to "reconstruct" these bytes into a .wav file. I have attempted the code below, but the resulting …

  3. Reducing WAV sound file size, without losing quality

    Jul 9, 2014 · The only way to reduce the size of a wav file is to resample it to a lower bit rate or use less bits per sample. Wav files don't have compression capabilities like mp3 or ogg. If you …

  4. Writing WAV file using Python, Numpy array and WAVE module

    Nov 24, 2016 · I am trying to implement the Karplus-Strong algorithm. All is looking fine when I play (through Jupyter Notebook using Audio(y, rate=Fs)) the collected numpy array …

  5. python - how can I generate a WAV file with beeps?

    Nov 23, 2015 · return def save_wav(self, file_name): # Open up a wav file # wav params # 44100 is the industry standard sample rate - CD quality. If you need to # save on file size you can …

  6. How to generate audio from a numpy array? - Stack Overflow

    Apr 27, 2012 · 112 You can use the write function from scipy.io.wavfile to create a wav file which you can then play however you wish. Note that the array must be integers, so if you have …

  7. python - How to plot a wav file - Stack Overflow

    Sep 5, 2013 · 64 I have just read a wav file with scipy and now I want to make the plot of the file using matplotlib, on the "y scale" I want to see the amplitude and over the "x scale" I want to …

  8. Save streaming data to a WAV file using NAudio - Stack Overflow

    I want to save the incoming stream data to a WAV file on my hard disk drive. How can I change the code below to be able to record the stream into a valid WAV file?

  9. Sound generation / synthesis with python? - Stack Overflow

    5 I am working on a powerful synthesizer in python. I used custom functions to write directly to a .wav file. There are built in functions that can be used for this purpose. You will need to modify …

  10. audio - How to generate an empty .wav file (duration = 0, no …

    Aug 10, 2023 · Question Why -t 0 generate unlimited-length audio instead of a duration=0 wav? And how to generate a epmty .wav /audio file in ffmpeg. PS, I found it Objective C Generating …