Anyone know of any software that can convert wma files to wav without any loss of quality e.g. loseless conversion?
3 Answers
Converting a from wma file to wav is technically un-compressing it. You will not be able to regain the quality lost from the original compression, but you shouldn't lose any additional quality as long as the algorithm of the conversion software is decent.
ffmpeg should work well for your needs.
Edit: (Thanks to @evilsoup for the command line given in the comment below)
For converting a directory recursively, you'll want to use find, either with the -exec option, or piping to ffmpeg via xargs. If you want to get fancy, you could install GNU parallel and perform multiple conversions simultaneously. A basic example would be:
find . -type f -name '*.wma' -exec bash -c 'ffmpeg -i "$0" "${0%.wma}.wav"' '{}' \;
See here for some related information.
- 1
- 3
- 3,484
- 1
- 12
- 17
WAV is an uncompressed format. Unless you are merging tracks, reducing the sample rate, or lowering the bit depth (all unlikely to happen by accident), a plain conversion to WAV will always be lossless. Of course, this will not remove noise introduced by the lossy compression on the source material. Basically, any program you find will suffice.
- 294
- 1
- 5
-
Unfortunately the source is WMA, so I was to convert to wav without further compression. – Mar 25 '13 at 16:46
I would like to follow this detailed guide to convert WMA to WAV.
But before the conversion, you should know that from an article here:
WMA is a format with lossy compression. While WAV is uncompressed audio formats.
So the conversion will do not harm to the quality.
-
One of a million sites wanting you to spend 50 bucks to buy a front-end to existing functionality. – Tetsujin Apr 06 '15 at 10:46
-execoption, or piping to ffmpeg viaxargs. If you want to get fancy, you could install GNUparalleland perform multiple conversions simultaneously. A basic example would be:find . -type f -name '*.wma' -exec bash -c 'ffmpeg -i "$0" "${0%.wma}.wav"' '{}' \;- see here for some related information. – Mar 25 '13 at 22:29