Search code examples
javaandroidvideosdkmp3

Java SDK for converting video to mp3


I wonder if there is a JAVA SDK that I can use for converting avi, video format, to mp3. I am trying to build an app in Android or BlackBerry OS 5 - 7.1 that can convert video to mp3. Thank you.


Solution

  • An avi is a container format not a video format. It can hold a number of different video and audio formats.

    The best bet would be to extract the audio stream and convert that to MP3.

    See this question for more details on dealing with these in java: Dealing with video (DVDs, .avi .mkv) in Java