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.