Skip to content

mrtska/LibFlacSharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

.NET Standard flac metadata library.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages