2

Are there any libraries for C# (maybe ffmpeg, never really used it) that could view and set the Title, Artist, and other such properties of an AVI file?

topherg
  • 4,203
  • 4
  • 37
  • 72

1 Answers1

4

Thirding TagLib Sharp.

TagLib.File f = TagLib.File.Create(path);
f.Tag.Album = "New Album Title";
f.Save();

The answer was taken from here.

Community
  • 1
  • 1
gdoron
  • 147,333
  • 58
  • 291
  • 367