質問

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?

役に立ちましたか?

解決

Thirding TagLib Sharp.

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

The answer was taken from here.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top