简体   繁体   中英

BigClip Won't Play .wav File

I am attempting to add an audio player to my application. Here's the code from the class that handles audio playing:

package me.pogostick29.audiorpg.audio;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;

import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.DataLine;
import javax.sound.sampled.LineUnavailableException;
import javax.sound.sampled.SourceDataLine;
import javax.sound.sampled.TargetDataLine;

public class AudioPlayer {

    private AudioPlayer() { }

    private static AudioPlayer instance = new AudioPlayer();

    public static AudioPlayer getInstance() {
        return instance;
    }

    private static ArrayList<BigClip> clips = new ArrayList<BigClip>();

    private BigClip get(String name) {
        for (BigClip clip : clips) {
            if (clip.getName().equalsIgnoreCase(name)) return clip;
        }
        return null;
    }

    public void play(File file) {
        try {
            AudioInputStream audioIn = AudioSystem.getAudioInputStream(file);
            BigClip clip = get(file.getName());
            if (clip == null) {
                BigClip newClip = new BigClip(file.getName());
                clips.add(newClip);
                clip = newClip;
            }
            clip.open(audioIn);
            clip.start();
        }
        catch (Exception e) { e.printStackTrace(); }
    }
}

However, when I try to run it using:

AudioPlayer.getInstance().play(new File("audio/people/blacksmith/blacksmith01a_new.wav"));

I get the following stack trace:

javax.sound.sampled.UnsupportedAudioFileException: could not get audio input stream from input file
    at javax.sound.sampled.AudioSystem.getAudioInputStream(AudioSystem.java:1170)
    at me.pogostick29.audiorpg.audio.AudioPlayer.play(AudioPlayer.java:38)
    at me.pogostick29.audiorpg.person.people.Blacksmith.playDialogue(Blacksmith.java:12)
    at me.pogostick29.audiorpg.AudioRPG.main(AudioRPG.java:33)

Here 's the format I used when exporting the file with Audition.

没关系,我通过使用以下库对其进行了修复: http : //www.javazoom.net/javalayer/javalayer.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM