mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
1) Support for user-defined external commandline codecs, tested on TAK
2) Better support for zip archives, which previously worked only with flac/wav files 3) More reliable tag handling, using taglib-sharp. Pictures are now preserved. 4) ALAC decoder bug fixed
This commit is contained in:
@@ -23,7 +23,6 @@
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Specialized;
|
||||
using System.Text;
|
||||
using CUETools.Codecs;
|
||||
|
||||
@@ -118,13 +117,6 @@ namespace CUETools.Codecs.LossyWAV
|
||||
}
|
||||
}
|
||||
|
||||
public bool SetTags(NameValueCollection tags)
|
||||
{
|
||||
if (_audioDest != null) _audioDest.SetTags(tags);
|
||||
if (_lwcdfDest != null) _lwcdfDest.SetTags(tags);
|
||||
return true;
|
||||
}
|
||||
|
||||
public string Path { get { return _audioDest.Path; } }
|
||||
|
||||
public void Delete()
|
||||
@@ -972,23 +964,6 @@ namespace CUETools.Codecs.LossyWAV
|
||||
}
|
||||
}
|
||||
|
||||
public NameValueCollection Tags
|
||||
{
|
||||
get
|
||||
{
|
||||
return _audioSource.Tags;
|
||||
}
|
||||
set
|
||||
{
|
||||
_audioSource.Tags = value;
|
||||
}
|
||||
}
|
||||
|
||||
public bool UpdateTags(bool preserveTime)
|
||||
{
|
||||
return _audioSource.UpdateTags(preserveTime);
|
||||
}
|
||||
|
||||
public string Path
|
||||
{
|
||||
get
|
||||
|
||||
Reference in New Issue
Block a user