Question

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?

Was it helpful?

Solution

Thirding TagLib Sharp.

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

The answer was taken from here.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top