I am trying to read ID3 from a mp3 file thats locally stored in the SD card.
I want to basically fetch
You can get all of this using MediaMetadataRetriever
MediaMetadataRetriever mmr = new MediaMetadataRetriever(); mmr.setDataSource(filePath); String albumName = mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_ALBUM);
2.1m questions
2.1m answers
60 comments
57.0k users