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);
1.4m articles
1.4m replys
5 comments
57.0k users