I have my mp3 in byte[] (downloaded from service) and I would like to play it on my device similar to how you play files:

 MediaPlayer mp = new MediaPlayer();
 mp.setDataSource(PATH_TO_FILE);
 mp.prepare();
 mp.start();

But I can't seem to find a way to do it... I wouldn't mind saving file to phone and than playing it, I am just hoping there is better way to do it.

link|improve this question

and if anyone runs into media volume vs ringer volume problems (sound "seems to play" but you do not hear anything) - check this page: stackoverflow.com/questions/628659/… – kape123 Jan 2 '10 at 19:37
feedback

5 Answers

up vote 16 down vote accepted

OK, thanks to all of you but I needed to play mp3 from byte[] as I get that from .NET webservice (don't wish to store dynamically generated mp3s on server).

In the end - there are number of "gotchas" to play simple mp3... here is code for anyone who needs it:

private void playMp3(byte[] mp3SoundByteArray) {
    try {
        // create temp file that will hold byte array
        File tempMp3 = File.createTempFile("kurchina", "mp3", getCacheDir());
        tempMp3.deleteOnExit();
        FileOutputStream fos = new FileOutputStream(tempMp3);
        fos.write(mp3SoundByteArray);
        fos.close();

        // Tried reusing instance of media player
        // but that resulted in system crashes...  
        MediaPlayer mediaPlayer = new MediaPlayer();

        // Tried passing path directly, but kept getting 
        // "Prepare failed.: status=0x1"
        // so using file descriptor instead
        FileInputStream fis = new FileInputStream(tempMp3);
        mediaPlayer.setDataSource(fis.getFD());

        mediaPlayer.prepare();
        mediaPlayer.start();
    } catch (IOException ex) {
        String s = ex.toString();
        ex.printStackTrace();
    }
}
link|improve this answer
thanks works fine even for m4a files with aac encoding – Janusz Jun 29 '10 at 10:31
it doesnt work for me it provides an error 01-27 15:39:44.686: W/System.err(1022): java.io.IOException: setDataSourceFD failed.: status=0x80000000 – Hemant Metalia Jan 27 at 10:12
If you re-use MediaPlayer like this, you'll eventually run out of resources if you call the code too many times. You should use a single instance of MediaPlayer, but call mediaPlayer.reset() before mediaPlayer.setDataResource(..); this way you won't crash, and you won't run out of resources. – Justin Apr 26 at 15:45
feedback

Not sure about bytearrays/bytestreams, but if you have a URL from the service, you can try setting the data source to a network URI by calling

setDataSource(Context context, Uri uri)

See the API docs.

link|improve this answer
It's wise to always follow the API when it comes to dealing with media, unless you're absolutely sure your way is better/overcomes some glaring flaw in their implementation. In which case you should submit a bug report. – Sneakyness Dec 29 '09 at 0:04
So will the player initialize if we pass on a uri like server/song.mp3 to it? – Bohemian Dec 29 '09 at 6:17
So I was checking out this. And I passed the song location as Uri to the player. N it plays it fine. No file handling. I m testing it on 2.01/emulator – Bohemian Dec 29 '09 at 7:32
feedback

wrong code:

 MediaPlayer mp = new MediaPlayer();
 mp.setDataSource(PATH_TO_FILE);
 mp.prepare();
 mp.start();

CORRECT CODE:

 MediaPlayer mp = new MediaPlayer();
 mp.setDataSource(PATH_TO_FILE);
 mp.setOnpreparedListener(this);
 mp.prepare();

//Implement OnPreparedListener 
OnPrepared() {
    mp.start();
 }

see API Demos ..

link|improve this answer
If you are right, then it seems they need to update documentation -> developer.android.com/guide/topics/media/index.html#playfile – kape123 Dec 29 '09 at 20:31
According to the docs, prepare() is synchronous. Only if you called prepareAsync() would you need to use the listener. However, if your data source is a stream, "For streams, you should call prepareAsync(), which returns immediately, rather than blocking until enough data has been buffered." – Jerry Aug 9 '11 at 19:19
feedback
FileInputStream fis = new FileInputStream(tempMp3);
        mediaPlayer.setDataSource(fis.getFD());

don't fix my "Prepare failed.: status=0x1" error.

Did someone fix this error ?

link|improve this answer
have you solved that error? can you say how does it solved? – Hemant Metalia Jan 27 at 10:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.