javax.sound.sampled.UnsupportedAudioFileException 使用 javazoom 播放 OGG 文件

javax.sound.sampled.UnsupportedAudioFileException playing OGG files with javazoom

我正在尝试使用此处另一个问题的答案来播放 OGG 音频文件:Playing ogg files in eclipse

使用 javazoom library which I successfully downloaded and configured for my project, I am attempting to use the xav 的答案代码:

import java.io.File;
import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.DataLine;
import javax.sound.sampled.SourceDataLine;
import javazoom.spi.PropertiesContainer;

public class OGGPlayer {
public final String fileName;

public boolean mustStop = false;


public OGGPlayer(String pFileName) {
    fileName = pFileName;
}

public void play() throws Exception {
    mustStop = false;
    File file = new File(fileName);
    AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(file);
    if (audioInputStream == null) {
        throw new Exception("Unable to get audio input stream");
    }
    AudioFormat baseFormat = audioInputStream.getFormat();
    AudioFormat decodedFormat = new AudioFormat(AudioFormat.Encoding.PCM_SIGNED,
        baseFormat.getSampleRate(), 16, baseFormat.getChannels(),
        baseFormat.getChannels() * 2, baseFormat.getSampleRate(), false);
    AudioInputStream decodedAudioInputStream = AudioSystem.getAudioInputStream(decodedFormat,
        audioInputStream);
    if (!(decodedAudioInputStream instanceof PropertiesContainer)) {
        throw new Exception("Wrong PropertiesContainer instance");
    }

    DataLine.Info dataLineInfo = new DataLine.Info(SourceDataLine.class, decodedFormat);
    SourceDataLine sourceDataLine = (SourceDataLine) AudioSystem.getLine(dataLineInfo);
    sourceDataLine.open(decodedFormat);

    byte[] tempBuffer = new byte[4096];

    // Start
    sourceDataLine.start();
    int nbReadBytes = 0;
    while (nbReadBytes != -1) {
        if (mustStop) {
            break;
        }
        nbReadBytes = decodedAudioInputStream.read(tempBuffer, 0, tempBuffer.length);
        if (nbReadBytes != -1)
            sourceDataLine.write(tempBuffer, 0, nbReadBytes);
    }

    // Stop
    sourceDataLine.drain();
    sourceDataLine.stop();
    sourceDataLine.close();
    decodedAudioInputStream.close();
    audioInputStream.close();
}

public void setMustStop(boolean pMustStop) {
    mustStop = pMustStop;
}

public void stop() {
    mustStop = true;
}

}

代码对我来说很有意义,但我在使用它时遇到了问题。我似乎无法让 class 读取我的 OGG 文件,并且我已经以各种方式修改它以尝试实现此功能。我在同一个项目中读取了 WAV 文件,使用

完全成功地读取了这些文件
AudioInputStream audioIn = AudioSystem.getAudioInputStream(Thread.currentThread().getContextClassLoader().getResource("res/audio/" + fileName + ".wav"));

我已经尝试过使用文件 class 的变体,作为资源读取,我可以在项目中成功找到我的 OGG 文件,但它一直抛出异常

javax.sound.sampled.UnsupportedAudioFileException: could not get audio input stream from input URL

这是我第四次或第五次尝试让音频在这个项目中播放非 WAV 音频。我尝试用 MediaPlayer 和其他几种方式播放 MP3,这是我尝试播放 OGG 文件的第二种方法。我正在尝试播放大而长的音乐曲目作为背景,但由于文件大小,我无法像播放其他 WAV 音效那样 运行 它们。

对于播放这些 OGG 文件的任何帮助,我们将不胜感激。我觉得这次尝试离我的目标很近,它看起来简单而可靠,但它只是拒绝正确读取我的文件。提前感谢您的帮助。

这是一种读取 mp3 和 ogg 文件的方法 - 它将播放 vorbis 格式的文件,但不播放 flac;所以你必须在那里检查 - 并非所有以 .ogg 结尾的文件都受支持:

import javazoom.spi.vorbis.sampled.file.VorbisAudioFileReader;
import javazoom.spi.mpeg.sampled.file.MpegAudioFileReader;
import org.tritonus.share.sampled.file.TAudioFileReader;
import org.tritonus.sampled.file.AuAudioFileReader;

  AudioInputStream createOggMp3(File fileIn) throws IOException, Exception {
    AudioInputStream audioInputStream=null;
    AudioFormat targetFormat=null;
    try {
      AudioInputStream in=null;
      if(fileIn.getName().endsWith(".ogg")) {
        VorbisAudioFileReader vb=new VorbisAudioFileReader();
        in=vb.getAudioInputStream(fileIn);
      }
      else if(fileIn.getName().endsWith(".mp3")) {
        MpegAudioFileReader mp=new MpegAudioFileReader();
        in=mp.getAudioInputStream(fileIn);
      }
      AudioFormat baseFormat=in.getFormat();
      targetFormat=new AudioFormat(
              AudioFormat.Encoding.PCM_SIGNED,
              baseFormat.getSampleRate(),
              16,
              baseFormat.getChannels(),
              baseFormat.getChannels() * 2,
              baseFormat.getSampleRate(),
              false);
      audioInputStream=AudioSystem.getAudioInputStream(targetFormat, in);
    }
    catch(UnsupportedAudioFileException ue) { System.out.println("\nUnsupported Audio"); }
    return audioInputStream;
  }

它returns你是一个音频输入流,你可以按如下方式使用:

if(fileIn.getName().endsWith(".ogg") || fileIn.getName().endsWith(".mp3")) {
  audioInputStream=createOggMp3(fileIn);
}
else { // wav
    audioInputStream=AudioSystem.getAudioInputStream(fileIn);
  }

您的解码音频格式是

decodedFormat=audioInputStream.getFormat();

然后您可以继续使用 SourceDataline。