You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Distinct from #16, though it shows up on the same disc. There the empty volumes are unallocated slots with a default name and a type byte of 0. Here they are allocated volumes with real names, sitting in sequence among thirteen that extract perfectly.
What happens
AMG - Kickin' Lunatic Beats 2 AKAI CD1.mdx lists 18 volumes and extracts 669 files. Four yield nothing:
The four are structurally identical to the thirteen that work — type byte 1, a name following the disc's own scheme, a start block inside the image — and they are the last four allocated volumes on the disc. Every volume up to 13-TRACK 06 extracts.
What is at those blocks
Not directories. Three hold what looks like 16-bit PCM and one holds zeros:
_files stops immediately on each: the type byte of the first entry is not one of p s d x m q t.
Where to start
This is a compressed .mdx — 378 443 564 bytes on disk expanding to 534 083 584 — so the first question is whether the fault is in the container or in the filesystem. Two readings fit the evidence and they point at different layers:
The container returns the wrong bytes past some point.ADR-0006 classifies MDX blocks by decode attempt, so a block that decodes the wrong way would hand back plausible-looking audio rather than an error. The transition is sharp — everything through block 4079 works, everything from 4707 does not — which is the shape a container-side fault would have. The all-zero block at 5648 is also suggestive of a block that produced nothing.
Reading 1 is the one to rule out first, because if the container mis-decodes here it may be mis-decoding elsewhere without anything noticing — and unlike #16 that would mean the 669 files this disc does yield are not necessarily trustworthy either.
A useful cross-check: AKAI.S3000.Sound.Library.1.mdx and the other .mdx images in the collection extract cleanly, so whatever this is, it is not every MDX.
Why it matters
Along with #16 this blocks making the tests/test_discs.py invariant per-volume rather than per-disc. Of 79 images in the collection and 71 claimed by a backend, three fail the per-volume form; this disc is one of them, for this reason and for #16's.
Discs needed
AMG - Kickin' Lunatic Beats 2 AKAI CD1.mdx and CD2.mdx, both present locally.
Distinct from #16, though it shows up on the same disc. There the empty volumes are unallocated slots with a default name and a type byte of 0. Here they are allocated volumes with real names, sitting in sequence among thirteen that extract perfectly.
What happens
AMG - Kickin' Lunatic Beats 2 AKAI CD1.mdxlists 18 volumes and extracts 669 files. Four yield nothing:The four are structurally identical to the thirteen that work — type byte 1, a name following the disc's own scheme, a start block inside the image — and they are the last four allocated volumes on the disc. Every volume up to
13-TRACK 06extracts.What is at those blocks
Not directories. Three hold what looks like 16-bit PCM and one holds zeros:
_filesstops immediately on each: the type byte of the first entry is not one ofp s d x m q t.Where to start
This is a compressed
.mdx— 378 443 564 bytes on disk expanding to 534 083 584 — so the first question is whether the fault is in the container or in the filesystem. Two readings fit the evidence and they point at different layers:Reading 1 is the one to rule out first, because if the container mis-decodes here it may be mis-decoding elsewhere without anything noticing — and unlike #16 that would mean the 669 files this disc does yield are not necessarily trustworthy either.
A useful cross-check:
AKAI.S3000.Sound.Library.1.mdxand the other.mdximages in the collection extract cleanly, so whatever this is, it is not every MDX.Why it matters
Along with #16 this blocks making the tests/test_discs.py invariant per-volume rather than per-disc. Of 79 images in the collection and 71 claimed by a backend, three fail the per-volume form; this disc is one of them, for this reason and for #16's.
Discs needed
AMG - Kickin' Lunatic Beats 2 AKAI CD1.mdxandCD2.mdx, both present locally.