aadsm / JavaScript-ID3-Reader

ID3 tags reader in JavaScript (ID3v1, ID3v2 and AAC)

Home Page:http://www.aadsm.net/libraries/id3/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Extracting Album Art from MP3 File in AWS S3

shawlz opened this issue · comments

Hello,

I have files MP3 in S3 and I'll like to extract the tags and album art from the files. I'm currently extracting successfully the tags but the picture tag is not extracted.

When I use the FileReader API when the MP3 file is on local storage it extracts it successfully. Can you please advise on how I can achieve this on S3?

What do you mean with the mp3 files being on local storage?
I don't think there should be any difference between having the file on S3 or any other http server.

commented

Same issue here. I cannot extract artwork when trying to read from S3

ID3.loadTags(http://s3.aws.com/file.mp3, function () {...

do I have to download the mp3 files to extract the artwork or just extract it from s3 file directly?