7

I want to get the sound file at the URL provided in the code and play it (It is in mp3 format). I looked through some Stack Overflow questions related to this problem, and they all said to get mp3plugin.jar so I did.

In Eclipse, I added it as an external jar (as it is located inside of my Downloads folder, not sure if that's the best place for it) under Configure Build Path. I ran it again and it's still giving me this error:

javax.sound.sampled.UnsupportedAudioFileException: could not get audio input stream from input stream
at javax.sound.sampled.AudioSystem.getAudioInputStream(Unknown Source)
at Starter.main(Starter.java:21)

Here is the code:

public class Starter {

    public static void main(String[] args) {
        AudioInputStream din = null;
        try {
            URL url = new URL("http://c5.rbxcdn.com/2e6d33a5b3b1d8f250c395816ff9f145");
            HttpURLConnection httpcon = (HttpURLConnection) url.openConnection();
            InputStream bufferedIn = new BufferedInputStream(httpcon.getInputStream());
            AudioInputStream in = AudioSystem.getAudioInputStream(bufferedIn);
            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);
            SourceDataLine 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);
                }
                // Stop
                line.drain();
                line.stop();
                line.close();
                din.close();
            }

        }
        catch(Exception e) {
            e.printStackTrace();
        }
        finally {
            if(din != null) {
                try { din.close(); } catch(IOException e) { }
            }
        }
    }
}
TT.
  • 15,774
  • 6
  • 47
  • 88
Encoded Lua
  • 93
  • 1
  • 10
  • 1
    Have you ever checked what you are reading ? You might be treating a html error page as a MP3. – Marged Jan 23 '16 at 23:11
  • When I entered that url to my Chrome, I saw 2 lines in the network tab. It might need some more headers to give you the actual stream – Gavriel Jan 23 '16 at 23:14
  • How would I get the media part of this? (It says document and media). I've heard jSoup can help deal with some html handling in java. – Encoded Lua Jan 23 '16 at 23:15
  • The audio is in a tag. How would I dissect it and get the audio file out of it? – Encoded Lua Jan 23 '16 at 23:49
  • Note that unless the server supplies a repositionable input stream, it will not work with Java Sound (with or without the MP3 Service Provider Interface (`mp3plugin.jar`). – Andrew Thompson Jan 24 '16 at 23:05

1 Answers1

2

You need to get http://www.javazoom.net/mp3spi/docs/doc1.9.4/javazoom/spi/mpeg/sampled/file/MpegAudioFileReader.html

download the jars. I have my classpath as

.;C:\Vision\Audio\libs\vorbisspi1.0.3.jar;C:\Vision\Audio\libs\tritonus_share.jar;C:\Vision\Audio\libs\tritonus_remaining-0.3.6.jar;C:\Vision\Audio\libs\jorbis-0.0.15.jar;C:\Vision\Audio\libs\jogg-0.0.7.jar;C:\Vision\Audio\libs\jl1.0.jar;C:\Vision\Audio\libs\mp3spi1.9.4.jar;

you probably only need mp3spi1.9.4.jar - some of these are for other formats but I'm not sure so I include them all.

Then have the following program

public AudioInputStream readMP3URL(String f) {
    AudioInputStream audioInputStream = null;
    AudioFormat targetFormat = null;
    try {
        AudioInputStream in = null;
        MpegAudioFileReader mp = new MpegAudioFileReader();
        in = mp.getAudioInputStream(new URL(f));
        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 (Exception ue) {
        System.out.println("\nUnsupported Audio");
    }
    return audioInputStream;
}

public void readURL() {
    int i, j, k = 0, l, basicU = 1024;
    AudioFormat targetFormat = null;
    audioInputStream = readMP3URL("http://c5.rbxcdn.com/2e6d33a5b3b1d8f250c395816ff9f145");
    if (audioInputStream == null) System.out.println("null audiostream");
    targetFormat = audioInputStream.getFormat();
    byte[] data = new byte[basicU];
    DataLine.Info dinfo = new DataLine.Info(SourceDataLine.class, targetFormat);
    SourceDataLine line = null;
    try {
        line = (SourceDataLine) AudioSystem.getLine(dinfo);
        if (line != null) {
            line.open(targetFormat);
            line.start();
            while ((k = audioInputStream.read(data, 0, data.length)) != -1) {
                line.write(data, 0, k);
            }
            line.stop();
            line.close();
        }
    }
    catch (Exception ex) {
        ex.printStackTrace();
        System.out.println("audio problem " + ex);
    }
}
Chin
  • 19,717
  • 37
  • 107
  • 164
gpasch
  • 2,672
  • 3
  • 10
  • 12