本文介绍了在Java中将MP3转换为PCM的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想用Java将MP3文件转换为PCM.
I want to convert MP3 file to PCM in Java.
该怎么做?
推荐答案
- 获取JMF的
mp3plugin.jar
. - 将其添加到应用程序的运行时类路径.为MP3提供解码器SPI.
- 获取
AudioInputStream
AudioSystem
的a> Java声音. - 使用
getAudioInputStream(AudioFormat,AudioInputStream)
. - Get the
mp3plugin.jar
of the JMF. - Add it to the run-time class-path of the app. to provide a decoder SPI for MP3.
- Get an
AudioInputStream
for the MP3 from theAudioSystem
of Java Sound. - Convert it to PCM using
getAudioInputStream(AudioFormat,AudioInputStream)
.
这篇关于在Java中将MP3转换为PCM的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!