mp3 - How can I reliably load and display images from ID3 tags using javascript? -


i'm trying display image loaded id3 , id3v2 files.

i'm able of tag fields off of id3 , id3v2 files, , picture big string of data. i've tried doing like:

var image = 'data:image/png;base64,' + (tags.picture); 

and creating image element, doesn't work.

so i'm wondering, image data in id3 tag not base64? , if so, perhaps i'm not reading format of image correctly?

i'm new working sort of file, hints or tips amazing.


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -

php - Accessing static methods using newly created $obj or using class Name -