Taglib锐化:“ System.ArgumentOutOfRangeException:指定的参数不在有效值的范围内。参数名称:count”

时间:2019-09-06 09:32:36

标签: c# taglib-sharp

TagLib.File.Create(IFileAbstraction abstraction)方法给出以下错误:

  

System.ArgumentOutOfRangeException:指定的参数超出了   有效值范围。参数名称:count

,在此特定图像上:

enter image description here

代码如下:

//Create a simple file and simple file abstraction
var simpleFile = new SimpleFile(filePath, stream);
var simpleFileAbstraction = new SimpleFileAbstraction(simpleFile);
/////////////////////

//Create a taglib file from the simple file abstraction
var mp3File = TagLib.File.Create(simpleFileAbstraction); --> Error

它适用于其他图像,但是只有该图像会引发错误。

任何人以前都曾遇到过此问题,如果有,是否有可能共享解决方案?

taglib-sharp版本:2.1.0.0

0 个答案:

没有答案