No picture returned
I have an mp3 file ->https://puu.sh/xk1we/e62d34886e.mp3 i try to load tags, and get it and this is my result
{ "version": "2.3.0", "major": 3, "revision": 0, "flags": { "unsynchronisation": false, "extended_header": false, "experimental_indicator": false }, "size": 23460, "title": "AiAe", "artist": "ゆよゆっぺ", "album": "YUYOYU EP", "track": "04/07", "TALB": { "id": "TALB", "size": 21, "description": "Album/Movie/Show title", "data": "YUYOYU EP" }, "TIT2": { "id": "TIT2", "size": 11, "description": "Title/songname/content description", "data": "AiAe" }, "TPE1": { "id": "TPE1", "size": 13, "description": "Lead performer(s)/Soloist(s)", "data": "ゆよゆっぺ" }, "TRCK": { "id": "TRCK", "size": 13, "description": "Track number/Position in set", "data": "04/07" } }
ther is no picture, can you help me *sorry for my bad english
I have the same problem like you. So I changed to another ID3 reader based on java which can read album art.
Similar issue here, except for me, it returns SOME covers, but not others (although multiple other tag reader apps show them all.) my limitation is that i need it to be javascript. Any ideas?
Similar issue here, except for me, it returns SOME covers, but not others (although multiple other tag reader apps show them all.) my limitation is that i need it to be javascript. Any ideas?
I used this ID3 reader now, it's based on java though. As I am utilizing springboot as my back end project, it is able to send back necessary ID3 tag and cover to my front end javascript based project(make ajax request is enough). Link is here: mpatric / mp3agic