mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
CUETools flac and alac encoders write 'CUETools 2.1.5' in "tool" metadata
instad of "Flake#0.1" etc
This commit is contained in:
@@ -78,10 +78,11 @@ namespace CUETools.TestCodecs
|
||||
{
|
||||
AudioBuffer buff = WAVReader.ReadAllSamples("test.wav", null);
|
||||
ALACWriter target;
|
||||
|
||||
ALACWriter.Vendor = "CUETools";
|
||||
|
||||
target = new ALACWriter("alacwriter1.m4a", null, new ALACWriterSettings() { PCM = buff.PCM });
|
||||
target.Settings.Padding = 1;
|
||||
target.Vendor = "CUETools";
|
||||
target.CreationTime = DateTime.Parse("15 Aug 1976");
|
||||
target.FinalSampleCount = buff.Length;
|
||||
target.Write(buff);
|
||||
@@ -90,7 +91,6 @@ namespace CUETools.TestCodecs
|
||||
|
||||
target = new ALACWriter("alacwriter0.m4a", null, new ALACWriterSettings() { PCM = buff.PCM });
|
||||
target.Settings.Padding = 1;
|
||||
target.Vendor = "CUETools";
|
||||
target.CreationTime = DateTime.Parse("15 Aug 1976");
|
||||
target.Write(buff);
|
||||
target.Close();
|
||||
|
||||
Reference in New Issue
Block a user