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?
Asked
Active
Viewed 1,867 times
1 Answers
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.
-
thanks for the tip, the library is great, the documentation isn't... – AlexK May 09 '18 at 19:48