Wavpack output can now have tags and embedded cue sheet.

This commit is contained in:
chudov
2008-10-15 02:25:21 +00:00
parent e342ad80c2
commit ab94a4f25e
7 changed files with 86 additions and 19 deletions

View File

@@ -128,7 +128,12 @@ namespace APEDotNet {
property NameValueCollection^ Tags {
NameValueCollection^ get () {
if (!_tags) _tags = (gcnew APETagDotNet (_path, true))->GetStringTags (true);
if (!_tags)
{
APETagDotNet^ apeTag = gcnew APETagDotNet (_path, true, true);
_tags = apeTag->GetStringTags (true);
apeTag->Close ();
}
return _tags;
}
void set (NameValueCollection ^tags) {