sajith
sajith

Reputation: 2702

How To Extract Audio From Video To Create MP3 file From Video Clip using java

i want to extract audio from a video file through a java program ,is it possible to make a mp3 file or any format so that i can play it in an audio player?if yes how?

Upvotes: 0

Views: 929

Answers (1)

Bruno
Bruno

Reputation: 36

Through pure Java, don't know.

If you run on one platform an option is to launch ffmpeg from java.

Something like this could already work: ffmpeg -i "myfile.mp4" "myfile.mp3"

Upvotes: 1

Related Questions