Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 548 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 548 Bytes

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);