tags:

views:

1245

answers:

2

I'm streaming an mp3 file using MediaPlayer

mp.setDataSource(myContext, Uri.parse("http://my_song.mp3"));
mp.prepareAsync();
mp.setOnPreparedListener(mpOnPreparedListener);
mp.setOnBufferingUpdateListener(mpOnBufferingUpdateListener);
etc...

Any idea about how I can read the ID3 tags from this stream using android API or any alternativ methods?

Thx i.a.

+2  A: 

I have no Android experience, but since no one else is answering, have you checked this link?

Also there is another question in SO about ID3 tags in Java (not Android though) here.

I hope they help.

Alex
A: 

Hi,

Did you find how to retreive mp3 tags from a steam on Android ?

Fab