ID3Tag.Core
0.1.3
The ID3Tag.Core is a library to read ID3v1 and ID3v2 Tags from .mp3 files. This library supports .Net 4.0, 4.5, 4.6 and .NetStandard 2.0.
Install-Package ID3Tag.Core -Version 0.1.3
dotnet add package ID3Tag.Core --version 0.1.3
<PackageReference Include="ID3Tag.Core" Version="0.1.3" />
paket add ID3Tag.Core --version 0.1.3
#r "nuget: ID3Tag.Core, 0.1.3"
ID3Tag.Core
The ID3Tag.Core is a library to read ID3v1 and ID3v2 Tags from .mp3 files.
This library supports .Net 4.0, 4.5, 4.6 and .NetStandard 2.0.
Current Status
The Library is ready to build but still needs improvements(i am currently working on).
Also not every Frame is implemented. Will add them in the next update.
Usage
To simply retrieve informations from you .mp3 file you can use this library as shown below:
ID3Tag.Core.TagParser.ID3v1Parser reader = new ID3Tag.Core.TagParser.ID3v1Parser();
//ID3Tag.Core.TagParser.ID3v2Parser reader = new ID3Tag.Core.TagParser.ID3v2Parser();
ID3Tag.Core.ID3TagObject resp = reader.Read("test.mp3");
if (resp != null)
{
Console.WriteLine(resp.Artist);
Console.WriteLine(resp.Album);
Console.WriteLine(resp.Comment);
}
If you want to read not implemented frames (e.g. the attached picture) you can call the following method:
ID3Tag.Core.TagParser.ID3v2Parser reader = new ID3Tag.Core.TagParser.ID3v2Parser();
ID3Tag.Core.ID3TagObject resp = reader.Read("test.mp3");
if (resp != null)
{
Console.WriteLine("Test: " + resp.GetFrameValue("APIC"));
}
ID3Tag.Core
The ID3Tag.Core is a library to read ID3v1 and ID3v2 Tags from .mp3 files.
This library supports .Net 4.0, 4.5, 4.6 and .NetStandard 2.0.
Current Status
The Library is ready to build but still needs improvements(i am currently working on).
Also not every Frame is implemented. Will add them in the next update.
Usage
To simply retrieve informations from you .mp3 file you can use this library as shown below:
ID3Tag.Core.TagParser.ID3v1Parser reader = new ID3Tag.Core.TagParser.ID3v1Parser();
//ID3Tag.Core.TagParser.ID3v2Parser reader = new ID3Tag.Core.TagParser.ID3v2Parser();
ID3Tag.Core.ID3TagObject resp = reader.Read("test.mp3");
if (resp != null)
{
Console.WriteLine(resp.Artist);
Console.WriteLine(resp.Album);
Console.WriteLine(resp.Comment);
}
If you want to read not implemented frames (e.g. the attached picture) you can call the following method:
ID3Tag.Core.TagParser.ID3v2Parser reader = new ID3Tag.Core.TagParser.ID3v2Parser();
ID3Tag.Core.ID3TagObject resp = reader.Read("test.mp3");
if (resp != null)
{
Console.WriteLine("Test: " + resp.GetFrameValue("APIC"));
}
Release Notes
- ADDED a ID3Type enum
- ADDED more frame keys to read (Composer, language, textwriter)
- CHANGED the method GetFrameValue can now be called onto the ID3TagObject object
- FIXED reading the number of the track
- REMOVED the unecessary class ID3v2TagObject
Dependencies
-
.NETFramework 4.0
- No dependencies.
-
.NETFramework 4.5
- No dependencies.
-
.NETFramework 4.6
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
Used By
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.