Changing AVI File Title Property with C#

1.8k views Asked by At

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?

1

There are 1 answers

1
gdoron On BEST ANSWER

Thirding TagLib Sharp.

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

The answer was taken from here.