Reputation: 2702
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
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