How to get <audio> tag information?
问题 like title, subtitle, singer, Album, Bit rate etc.. wiki - MP3 tag infomation wiki - ID3(mp3 metadata format) I search a lot.. but I can't get answer. only searched how to play,stop,reload audio.. browser not support that? 回答1: One more library available at https://github.com/aadsm/JavaScript-ID3-Reader In its simplest form: ID3.loadTags("filename.mp3", function() { var tags = ID3.getAllTags(filename); alert(tags.artist + " - " + tags.title + ", " + tags.album); }); by specifying specific