WAV (or WAVE), short form for Waveform audio format, is a standard format audio file from Microsoft and IBM for storing audio on PCs.
Questions tagged [wav]
125 questions
96
votes
8 answers
Concatenate multiple WAV files using single command, without extra file
I want to concatenate multiple WAV files into a single WAV file using FFMPEG.
I have used the following command and it generates the required file.
Command:
ffmpeg -f concat -i mylist.txt -c copy output.wav
File :
#mylist.txt
file '1.wav'
file…
Manu
- 1,203
- 2
- 9
- 9
58
votes
8 answers
How do I check if a 2-track WAV file is "really" in stereo?
I have an audio file (WAV format to be specific). When I open it with an editor (e.g. audacity), I see two channels I suspect that the recording is actually mono rather than audio, i.e. I suspect the tracks are duplicate. What's an easy way to check…
einpoklum
- 10,666
45
votes
14 answers
Play a sound (maybe WAV?) from Windows line command
How can i play a sound (CPU Beep or wav, don't matter what) using the Windows cmd?
Thiago Belem
- 729
35
votes
6 answers
What is the difference between WAV and FLAC?
My understanding is that the WAV and FLAC formats are containers for lossless audio. I have seen the FLAC format as being perhaps better because it is able to losslessly compress audio from say a WAV file.
However today I noticed that bleep is…
Zombo
- 1
16
votes
5 answers
Reduce .wav file size
I am required by a distance education language course to record some audio and submit it. However, they are being absolutely unreasonable. I am only allowed to attach a file that is 5mb while my recording is 17mb. Even after zipping, the file still…
Nyx
- 420
13
votes
2 answers
How do I append a bunch of .wav files while retaining (not-zero-padded) numeric ordering?
I have many (7500) .wav files (named by their numbers) which I'd like to merge into one.
I think it has to be done with a bash loop because with using globbing some files would be in the wrong order (like 1111 before 2).
What's the best way to do…
Neula
- 1,033
11
votes
2 answers
Batch converting AIFF to WAV
I have a few dozen AIF files that I need to convert to WAV. I have converted a few by opening them in Audacity and exporting them to WAV, but this is very slow. I would like to convert them all in batch. Is there a way to do this on OS X?
Lily Hahn
- 1,525
- 3
- 17
- 22
11
votes
2 answers
Understanding conversion and (de)compression of lossless audio
I have a few questions concerning lossless audio. I'm considering ripping my entire music collection to lossless .flac, but I want to understand a few things about it first.
If I have a file that is .flac, and I want to make it into, say, .wav, how…
Ryan McClure
- 227
- 1
- 3
- 9
10
votes
1 answer
FFmpeg - convert WebM/Opus to WAV or FLAC in single step?
I want to create WAV and FLAC audio files from WebM files with Opus audio streams, and I want to do so without further degrading the audio. I am currently using a 2-step process as follows (WAV example show):
ffmpeg -i "file.webm" -vn -acodec copy…
bryman79
- 211
10
votes
2 answers
How can I record audio to wav format?
When I use Voice Recorder, it always saves it as a .m4a, but I need the file as a .wav.
I know it is possible using Sound Recorder in Windows 7, but Windows 10 seems to use a different program.
Is there a way of doing this natively in Windows 10?
Bassie
- 309
8
votes
2 answers
Why Is Conversion From An MP3 To WAV (PCM) Lossless?
I understand that when converting between audio formats where no stream encoding is involved like when converting between WAV (PCM), AIFF, FLAC, ALAC, WMA Lossless, and etc, the process is usually lossless, because the PCM audio stream is just being…
Robin Hood
- 3,501
8
votes
3 answers
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 as I know changing these properties may distort the audio, so how do i specify them not to be changed?
Also, is there any way to prevent metadata to be…
user3580089
- 93
- 2
- 2
- 6
8
votes
1 answer
Convert mp3 to wav
Could someone tell if we can convert an MP3 file to WAV format and regain the initial audio clarity? If so, how do I do that?
Babu James
- 310
7
votes
4 answers
How to convert WAV files of some frequency to 44100 Hertz?
I'm using Source Filmmaker, and need to convert an audio file I have to 44100 Hertz, otherwise SFM will not accept it.
I believe the frequency of the file is less than 44100 Hertz, and therefore will increase in size as a result of conversion (it's…
Jacklynn
- 243
7
votes
4 answers
Size comparison: wav versus MP3
How much space do I save with MP3 compression of audio compared to .wav files?
In particular I'm looking for voice recordings, not so much music.
Any benchmark data about this? Links?
Emmanuel
- 191