JavaScript-ID3-Reader icon indicating copy to clipboard operation
JavaScript-ID3-Reader copied to clipboard

No picture returned

Open bambang-ap opened this issue 8 years ago • 3 comments

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

bambang-ap avatar Aug 26 '17 15:08 bambang-ap

I have the same problem like you. So I changed to another ID3 reader based on java which can read album art.

Paper-Folding avatar Aug 17 '21 02:08 Paper-Folding

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?

brandtbridges avatar Oct 19 '21 15:10 brandtbridges

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

Paper-Folding avatar Oct 20 '21 00:10 Paper-Folding