javascript - How to read mp3 file tags using jsmediatags -
i have problem tags mp3 files on website. want title, artist , album mp3 file , store them in database.
for example: if have mp3 file song.mp3 wants album , duration. how this?
i able extract these tags id3 tags in php slow load album. tell me fast way album.
i try way fail:
id3.loadtags("song.mp3", function() { var tags = id3.getalltags("song.mp3"); alert(tags.artist + " - " + tags.title + ", " + tags.album); });
please tell me how album, title , artist in php variable show in html page.
there several modules use extract id3 tags javascript. wonder if faster.
anyway... of modules (including documentation)
Comments
Post a Comment