Top "Wav" questions

This tag is for questions related to the "Waveform Audio File Format", WAVE, or wav for short.

Best way to play wav files in the browser?

I have no choice but to play wav files directly in the browser (serverside encoding to mp3 isn't an option, …

audio wav
Generate visual (waveform) from MP3/WAV file in Windows 2008 Server?

Is there (somewhere) a command-line program for Windows which will create PNG/JPEG visual from MP3/WAV? EDIT: This is …

command-line mp3 visualization wav windows-server-2008-x64
How can I write a WAV file from byte array in java?

I would like to write the Wav file from byte array and I also want to split channels from the …

java audio wav
What does a audio frame contain?

Im doing some research on how to compare sound files(wave). Basically i want to compare stored soundfiles (wav) with …

python wav
Filtering a wav file using python

So i recently successfully built a system which will record, plot, and playback an audio wav file entirely with python. …

python audio filtering wav
Writing wav file in Python with wavfile.write from SciPy

I have this code: import numpy as np import scipy.io.wavfile import math rate, data = scipy.io.wavfile.read(…

python scipy wav
ffmpeg to convert from flac to wav

I need to convert a flac file to a wav file without changing sample rate and bit depth. As far …

ffmpeg wav wave flac
What is the easiest way to read wav-files using Python [summary]?

I want to use Python to access a wav-file and write its content in a form which allows me to …

python audio wav scipy wave
Python: write a wav file into numpy float array

ifile = wave.open("input.wav") how can I write this file into a numpy float array now?

python numpy wav
Writing PCM recorded data into a .wav file (java android)

I'm using AudioRecord to record 16 bit PCM data in android. After recording the data and saving it to a file, …

java android wav pcm audiorecord