Posts

Showing posts from March, 2017

Convert Wma to Wav or mp3 file

WMA is a proprietary format of Microsoft. Hence even SOX tool which converts most of the formats cannot do this. ffmpeg tool for windows did the trick for me. This is an open source tool. ffmpeg.exe -i input.wma output.wav Make sure you are using the latest version else the conversion may fail. I was able to use this exe and invoked from my c# application to get the job done. This was easier than using the MediaTranscoder class in UWP for my simple requirement.