ID3Tag.Core
0.1.3
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"
// Install ID3Tag.Core as a Cake Addin
#addin nuget:?package=ID3Tag.Core&version=0.1.3
// Install ID3Tag.Core as a Cake Tool
#tool nuget:?package=ID3Tag.Core&version=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"));
}
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETFramework 4.0
- No dependencies.
-
.NETFramework 4.5
- No dependencies.
-
.NETFramework 4.6
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
- 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