使用Java API和JMF播放/加载mp3,错误不受支持的格式

时间:2012-10-20 00:22:32

标签: java jmf

我正在尝试加载MP3文件。我的classpath中有jmf.jar(windows版本),我试图通过Eclipse运行我的类。但是我在尝试运行时遇到了这个错误。

我从oracle网站下载并设置了这个版本的JMF:

JMF2.1.1e\lib

我正在运行Oracle的Java 7(通过Eclipse)

错误:

 javax.sound.sampled.UnsupportedAudioFileException: 
    could not get audio input stream from input stream  
    at  
 javax.sound.sampled.AudioSystem.getAudioInputStream
    (Unknown Source)
    at
 org.berlin.sound.WaveformDisplaySimulator.main
    (WaveformDisplaySimulator.java:47)

以下是代码:

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;

import javax.media.Codec;
import javax.media.Format;
import javax.media.PlugInManager;
import javax.media.format.AudioFormat;
import javax.sound.sampled.AudioFileFormat;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;


    public static void main(final String[] args) {
        try {

            System.out.println(System.getProperty("java.version"));
            final String MP3 = "com.sun.media.codec.audio.mpa.JavaDecoder";
            Codec mp3 = (Codec) Class.forName(MP3).newInstance();

            final Format input1 = new AudioFormat(AudioFormat.MPEGLAYER3);
            final Format input2 = new AudioFormat(AudioFormat.MPEG);
            final Format output = new AudioFormat(AudioFormat.LINEAR);
            PlugInManager.addPlugIn(
                "com.sun.media.codec.audio.mpa.JavaDecoder",                
                new Format[]{ input1, input2 },
                new Format[]{ output },
                PlugInManager.CODEC
            );

            final AudioFileFormat.Type [] types = AudioSystem.getAudioFileTypes();
            for (final AudioFileFormat.Type t : types) {
                System.out.println("Returning Type : " + t);
            } // End of the for //


            final String PATH = "C:\\Users\\Downloads\\soundcloud2.mp3"; 
            final File file = new File(PATH);
            final AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(new BufferedInputStream(new FileInputStream(file)));

        } catch (final Exception e) {
            e.printStackTrace();
        }
    } // End of the method //

3 个答案:

答案 0 :(得分:1)

我永远无法让oracle下载工作。我最终从这个网站下载了一个MP3插件,然后在我的类路径中添加了插件。这适用于Eclipse而没有。

http://www.tritonus.org/plugins.html

另外,我没有必要修改我的代码。我能够读取mp3二进制数据并传输到输出。

import javax.sound.sampled.AudioFileFormat;
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;

http://www.tritonus.org/plugins.html

    public static void main(final String [] args) throws Exception {
        System.out.println("Running");        
        System.out.println(System.getProperty("java.version"));        
        final AudioFileFormat.Type [] types = AudioSystem.getAudioFileTypes();
        for (final AudioFileFormat.Type t : types) {
            System.out.println("Returning Type : " + t);
        } // End of the for //                
        final String PATH = "C:\\Users\\bbrown\\Downloads\\swing-hacks-examples-20060109\\Ch10-Audio\\75\\soundcloud2.mp3";             
        final File file = new File(PATH);
        final AudioInputStream in = AudioSystem.getAudioInputStream(new BufferedInputStream(new FileInputStream(file)));

        AudioInputStream din = null;
        final AudioFormat baseFormat = in.getFormat();
        final AudioFormat decodedFormat = new AudioFormat(AudioFormat.Encoding.PCM_SIGNED,
                baseFormat.getSampleRate(),
                16,
                baseFormat.getChannels(),
                baseFormat.getChannels() * 2,
                baseFormat.getSampleRate(),
                false);

        System.out.println("Channels : " + baseFormat.getChannels());                
        din = AudioSystem.getAudioInputStream(decodedFormat, in);        
        rawplay(decodedFormat, din);
        in.close();       
        System.out.println("Done");
    }    

    private static synchronized void rawplay(final AudioFormat targetFormat, final AudioInputStream din) throws IOException, LineUnavailableException {              
        final byte[] data = new byte[4096];
        final SourceDataLine line = getLine(targetFormat);               
        if (line != null) {
            System.out.println("Entering ...");
            // Start
            line.start();
            int nBytesRead = 0, nBytesWritten = 0;
            while (nBytesRead != -1) {
                nBytesRead = din.read(data, 0, data.length);
                if (nBytesRead != -1) {
                    nBytesWritten = line.write(data, 0, nBytesRead);
                    System.out.println("... -->" + data[0] + " bytesWritten:" + nBytesWritten);
                }                                           
            } // End of while //            
            System.out.println("Done ...");
            // Stop
            line.drain();
            line.stop();
            line.close();
            din.close();
        } // End of the if //
    }

答案 1 :(得分:0)

AudioInputStream无法打开mp3格式的声音,因为它们被压缩,即使您将它们格式化为PCM_SIGNED,就像wav文件一样,它们无法始终播放。你可能喜欢jLayer,我从未见过它崩溃

import javazoom.jl.player.advanced.AdvancedPlayer;

`

            try{
            File file = new File("C:/DMK.mp3");
            FileInputStream in = new FileInputStream(file);
            AdvancedPlayer player = new AdvancedPlayer(in);
            player.play();
        } 
        catch (Exception ex) {
            ex.printStackTrace();
        }

`

答案 2 :(得分:0)

2017年,我通过使用mp3spi包(http://www.javazoom.net/mp3spi/mp3spi.html)添加了对mp3编码/解码的支持

有人善于将其设置为对Google Code的依赖。这是gradle条目:

compile group: 'com.googlecode.soundlibs', name: 'mp3spi', version: '1.9.5-1'

所以这个或maven等价物应该在你的项目中为你提供mp3支持。