Edit Mp3 Tags

stefanoa

Active Member
Licensed User
Longtime User
there's a way to EDIT (and save) mp3 tags (in ID3v2 format?)
and there's a way to know what ID3 format have an mp3 file?

i'm using Mediabrowser...
B4X:
.......
Dim m As Map
m = MB.GetMediaAudioList(True, "artist COLLATE UNICODE, title COLLATE UNICODE" )
.......
For i = 0 To (m.Size / 9) - 1
      ArtistName = m.Get("Artist" & i)
.......
thanks
 

Djembefola

Active Member
Licensed User
Longtime User
Have you seen this class?
ID3 Class

Currently the ID3 class is read-only, editing is not yet implemented. But it should not be too difficult to extend the class with some methods for writing tags.
 
Upvote 0
Top