LibFlacSharp 1.0.4
.NET Standard flac metadata library.
Install-Package LibFlacSharp -Version 1.0.4
dotnet add package LibFlacSharp --version 1.0.4
<PackageReference Include="LibFlacSharp" Version="1.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LibFlacSharp --version 1.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: LibFlacSharp, 1.0.4"
For F# scripts that support #r syntax, copy this into the source code to reference the package.
LibFlacSharp
LibFlacSharp is fullscratched flac metadata library.
Not contains encode/decode audio feature.
.NET Standard 2.0.
Feature
- Extract album art.
- Edit Vorbis comments.
- Save album art.
How to use
Save album art
var flac = new FlacFile(fileStream);
flac.AddPicture(PictureType.CoverFront, pngStream);
await flac.SaveAsync(toSaveStream);
Edit Vorbis comments
var flac = new FlacFile(fileStream);
flac.VorbisComment.CommentList[VorbisCommentType.Album] = "test";
await flac.SaveAsync(toSaveStream);
LibFlacSharp
LibFlacSharp is fullscratched flac metadata library.
Not contains encode/decode audio feature.
.NET Standard 2.0.
Feature
- Extract album art.
- Edit Vorbis comments.
- Save album art.
How to use
Save album art
var flac = new FlacFile(fileStream);
flac.AddPicture(PictureType.CoverFront, pngStream);
await flac.SaveAsync(toSaveStream);
Edit Vorbis comments
var flac = new FlacFile(fileStream);
flac.VorbisComment.CommentList[VorbisCommentType.Album] = "test";
await flac.SaveAsync(toSaveStream);
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.