android - Convert Video to MP3 - Stack Overflow
stackoverflow.com › questions › 39615371May 23, 2017 · It is possible to extract audio form vidoe file in android programmatically. You can do this without using any external library. It can be done by using MediaMuxer class. new AudioExtractor ().genVideoUsingMuxer ("Video source Path", "Audio destination path", -1, -1, true, false); See this post fro better understanding and complete code.