taglib# 返回错误的持续时间
我以这种方式获取 MP3 文件的持续时间:
TagLib.File file = TagLib.File.Create(fileName);
var duration = file.Properties.Duration;
它始终为我提供实际持续时间的 68% 到 75% 之间的持续时间。 Windows 文件管理器、VLC 以及仅播放 MP3 并用秒表测量的时间一致。
有什么想法这里出了什么问题吗?
I'm getting the duration of an MP3 file in this way:
TagLib.File file = TagLib.File.Create(fileName);
var duration = file.Properties.Duration;
and it is consistently giving me a duration between 68 and 75% of the real duration. Windows File Manager, VLC and just playing the MP3 and measuring with a stopwatch agree on the other duration.
Any ideas what's wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
原来是一个错误: https://bugzilla.gnome.org/show_bug.cgi ?id=605765
Turned out to be a bug: https://bugzilla.gnome.org/show_bug.cgi?id=605765