Mark
Mark

Reputation: 73

Get ID3 Tag from html5 <audio> tag

how can i get ID3 tag from html5 tag that src from other server url.

ID3 tag like album art, title, album title, artist.

Upvotes: 5

Views: 10284

Answers (2)

idbehold
idbehold

Reputation: 17168

I believe this is close to what you want: https://github.com/aadsm/JavaScript-ID3-Reader

It takes a URL instead of and object.

Upvotes: 5

jsantell
jsantell

Reputation: 1268

To get an ID3 tag from an MP3, the MP3 needs to be decoded -- this isn't available from HTML5s audio tag. There are implementations (aurora.js, jsmad) that analyze the file itself and has access to ID3 tags.

Upvotes: 2

Related Questions