Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 TagLib(UltraID3Lib 无法读取每个 MP3 文件)。也许 TagLib 会做。而且我找不到像字幕或持续时间或时间这样的属性?
我如何找到这种标签?
示例:“Ondertitel”表示字幕
第二个问题是:如何使用 TagLib 找到标签 Subtitle?
这样,您可以获得持续时间:
var file = TagLib.File.Create(@"xyz.mp3"); Console.WriteLine(file.Properties.Duration);