Displaying 2 results from an estimated 2 matches for "isrcvalid".
Did you mean:
srcvalid
2006 Sep 26
2
FLAC CD Archive
Charles Steinkuehler wrote:
> Dan Phillips wrote:
> >> What we are left with is a requirement in abcde to overcome this and
> >> until then we have the manual method. Have you any thoughts on the best
> >> way to overcome this problem apart from the hacked toc3cue (do you have
> >> a copy of this?)
>
> I do not have a copy of toc3cue...I made my own
2006 Sep 26
0
FLAC CD Archive
...uot; << toc->catalog() << "\n";
+
out << "FILE \"" << binFileName << "\" BINARY" << "\n";
long offset = 0;
@@ -326,13 +329,18 @@
out << " FLAGS DCP\n";
}
+ if (trun->isrcValid() )
+ out << " ISRC " << trun->isrc() << "\n";
+
const SubTrack *strun;
SubTrackIterator stitr(trun);
int pregap = 0;
for (strun = stitr.first(); strun != NULL; strun = stitr.next()) {
if (strun->TrackData::type() == Tr...