Fix for AR tags in WMA files

This commit is contained in:
Grigory Chudov
2013-03-30 14:09:46 -04:00
parent f22d875b4a
commit 38721eddad

View File

@@ -43,7 +43,7 @@ namespace CUETools.Processor
var asf = (TagLib.Asf.Tag)fileInfo.GetTag(TagLib.TagTypes.Asf, true);
foreach (string tag in tags.AllKeys)
if (!IsKnownXiphTag(tag))
asf.SetDescriptorString(tag, tags.GetValues(tag));
asf.SetDescriptorStrings(tags.GetValues(tag), "foobar2000/" + tag);
return true;
}
TagLib.Ape.Tag ape = (TagLib.Ape.Tag)fileInfo.GetTag(TagLib.TagTypes.Ape, true);