我正在尝试使用 java 开发一个 mp3 播放器。我尝试了几个代码,但最终出现了太多错误。所以请提供有关代码的提示并帮助我配置 JMF?
问问题
1738 次
1 回答
1
JMF 本身不支持 mp3,因为 mp3 不是开源的。
如果你想播放 mp3 文件,你可以使用 jlayer、mp3spi 和 tritonus 库来做到这一点。
如果您需要有关这些库的更多信息,请告诉我。
请看下面的代码。将三个库添加到构建路径后,此代码对我有用。希望对你有帮助
String mp3File = "path to mp3 file";
public void playMp3(String mp3File ) {
AudioInputStream din = null;
AudioInputStream in = null;
try {
File file = new File(mp3File);
in = AudioSystem.getAudioInputStream(file);
AudioFormat baseFormat = in.getFormat();
AudioFormat decodedFormat = new AudioFormat(
AudioFormat.Encoding.PCM_SIGNED,
baseFormat.getSampleRate(), 16, baseFormat.getChannels(),
baseFormat.getChannels() * 2, baseFormat.getSampleRate(),
false);
din = AudioSystem.getAudioInputStream(decodedFormat, in);
DataLine.Info info = new DataLine.Info(SourceDataLine.class, decodedFormat);
line = (SourceDataLine) AudioSystem.getLine(info);
if (line != null) {
line.open(decodedFormat);
byte[] data = new byte[4096];
// Start
line.start();
int nBytesRead;
while ((nBytesRead = din.read(data, 0, data.length)) != -1) {
line.write(data, 0, nBytesRead);
if (flag) {
break;
}
}
line.drain();
line.stop();
line.close();
din.close();
}
} catch (UnsupportedAudioFileException uafe) {
JOptionPane.showMessageDialog(null, uafe.getMessage());
logger.error(uafe);
} catch (LineUnavailableException lue) {
JOptionPane.showMessageDialog(null, lue.getMessage());
logger.error(lue);
} catch (IOException ioe) {
JOptionPane.showMessageDialog(null, ioe.getMessage());
logger.error(ioe);
} finally {
if (din != null) {
try {
din.close();
} catch (IOException e) {
}
}
try {
in.close();
} catch (IOException ex) {
logger.error(ex);
}
}
}
于 2013-07-02T09:59:23.720 回答