Read id3 v2.4 tags with native Chrome Javascript/FileReader/DataView

You can try using id3 parser on github. Here’s your updated fiddle that logs the tags object in the console With the id3.js included, all you need to do in your code is this: function readFile(){ id3(this.files[0], function(err, tags) { console.log(tags); }) } document.getElementsByTagName(‘input’)[0].addEventListener(‘change’,readFile,false); And here is the tags object as created by id3: { … Read more

How to read and write ID3 tags to an MP3 in C#? [closed]

Taglib# is the best. It’s direct port of the TagLib C library to C#. To install TagLib#, run the following command in the Package Manager Console in Visual Studio. PM> Install-Package taglib The NuGet distribution of taglib-sharp can be found at http://nuget.org/packages/taglib. The official source code repository is at https://github.com/mono/taglib-sharp. Here’s an example using the … Read more