Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Javascript: Edit ID3 tags of mp3

I have a blob data of an mp3 downloaded from server using XMLHttpReqest in my web application. I want to edit the ID3 tags of the file (i.e. edit album art, genre, artist, album etc.). I checked by there are libraries that can read ID3 tags in javascript but didn't find any implementation about editing them in javascript. I want to do this in web browser, I have no option to do this on server. The server is just an external cdn server storing mp3 files.

like image 994
meteors Avatar asked Sep 14 '25 16:09

meteors


2 Answers

This library helps writing id3 tags: https://github.com/egoroof/browser-id3-writer

like image 176
meteors Avatar answered Sep 16 '25 09:09

meteors


If someone is still looking for this kind of library, mp3tag.js can read and write ID3 tags.

like image 26
Adriane Justine Tan Avatar answered Sep 16 '25 09:09

Adriane Justine Tan