Elektrine lite

← Feed

@abrasive@digipres.club

Post #2028705

2026-04-09 11:54 UTC

@voltagex #!/usr/bin/env python3 import sys _, infile, outfile = sys.argv infp = open(infile, 'rb') outfp = open(outfile, 'wb') while sector := infp.read(2352): outfp.write(sector[16:16+2048])

Replies (1)

  • @abrasive@digipres.club 2026-04-09 11:55

    @voltagex ISO9660 filesystems usually start 16 sectors in (though much, much later on some weird things eg. dreamcast iirc) so I'd expect that CD001 at 0x8000 in the output

    Open ##2028706