mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Replace invalid filename characters in ripped tracks
This commit is contained in:
committed by
Wolfgang Stöggl
parent
6d01dc106d
commit
2bde92380a
@@ -190,7 +190,7 @@ namespace CUETools.ConsoleRipper
|
||||
}
|
||||
|
||||
//string destFile = (release == null) ? "cdimage.flac" : release.GetArtist() + " - " + release.GetTitle() + ".flac";
|
||||
string destFile = (meta == null) ? "cdimage.wav" : meta.artist + " - " + meta.album + ".wav";
|
||||
string destFile = (meta == null) ? "cdimage.wav" : string.Join("_", (meta.artist + " - " + meta.album).Split(Path.GetInvalidFileNameChars())) + ".wav";
|
||||
|
||||
Console.WriteLine("Drive : {0}", audioSource.Path);
|
||||
Console.WriteLine("Read offset : {0}", audioSource.DriveOffset);
|
||||
|
||||
Reference in New Issue
Block a user