Converting m4a to wav on Android

1.5k Views Asked by At

How can I convert audio .m4a to .wav programmatically using MediaMuxer and MediaCodec? Is it possible?

API

1

There are 1 best solutions below

0
On

You can use FFMPEG wrapper for it. Go to https://github.com/WritingMinds/ffmpeg-android-java link there is a working ffmpeg wrapper for Android. you can easily use it.

Then u can use below command to convert it .m4a to .wav

ffmpeg -i <path of inputSong.m4a> <path of outputSong.wav>

in the wrapper you don't need ffmpeg part. You need to replace it from -y. You can get those details when navigate to that wrapper