bchunk-1.2.0/0040755006315700631570000000000010070352222012043 5ustar hessuhessubchunk-1.2.0/Makefile0100644006315700631570000000130607332246334013515 0ustar hessuhessuall: bchunk # For systems with GCC (Linux, and others with GCC installed): CC = gcc LD = gcc CFLAGS = -Wall -Wstrict-prototypes -O2 # For systems with a legacy CC: #CC = cc #LD = cc #CFLAGS = -O # For BSD install: Which install to use and where to put the files INSTALL = install PREFIX = /usr/local BIN_DIR = $(PREFIX)/bin MAN_DIR = $(PREFIX)/man .c.o: $(CC) $(CFLAGS) -c $< clean: rm -f *.o *~ *.bak core distclean: clean rm -f bchunk install: installbin installman installbin: $(INSTALL) -m 755 -s -o root -g root bchunk $(BIN_DIR) installman: $(INSTALL) -m 644 -o bin -g bin bchunk.1 $(MAN_DIR)/man1 BITS = bchunk.o bchunk: $(BITS) $(LD) $(LDFLAGS) -o bchunk $(BITS) bchunk.o: bchunk.c bchunk-1.2.0/bchunk.c0100644006315700631570000002716510070352071013473 0ustar hessuhessu /* * binchunker for Unix * Copyright (C) 1998-2004 Heikki Hannikainen * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include #include #include #include #define VERSION "1.2.0" #define USAGE "Usage: bchunk [-v] [-r] [-p (PSX)] [-w (wav)] [-s (swabaudio)]\n" \ " \n" \ "Example: bchunk foo.bin foo.cue foo\n" \ " -v Verbose mode\n" \ " -r Raw mode for MODE2/2352: write all 2352 bytes from offset 0 (VCD/MPEG)\n" \ " -p PSX mode for MODE2/2352: write 2336 bytes from offset 24\n" \ " (default MODE2/2352 mode writes 2048 bytes from offset 24)\n"\ " -w Output audio files in WAV format\n" \ " -s swabaudio: swap byte order in audio tracks\n" #define VERSTR "binchunker for Unix, version " VERSION " by Heikki Hannikainen \n" \ "\tCreated with the kind help of Bob Marietta ,\n" \ "\tpartly based on his Pascal (Delphi) implementation.\n" \ "\tSupport for MODE2/2352 ISO tracks thanks to input from\n" \ "\tGodmar Back , Colas Nahaboo \n" \ "\tand Matthew Green .\n" \ "\tReleased under the GNU GPL, version 2 or later (at your option).\n\n" #define CUELLEN 1024 #define SECTLEN 2352 #define WAV_RIFF_HLEN 12 #define WAV_FORMAT_HLEN 24 #define WAV_DATA_HLEN 8 #define WAV_HEADER_LEN WAV_RIFF_HLEN + WAV_FORMAT_HLEN + WAV_DATA_HLEN /* * Ugly way to convert integers to little-endian format. * First let netinet's hton() functions decide if swapping should * be done, then convert back. */ #include #include #define bswap_16(x) \ ((((x) >> 8) & 0xff) | (((x) & 0xff) << 8)) #define bswap_32(x) \ ((((x) & 0xff000000) >> 24) | (((x) & 0x00ff0000) >> 8) | \ (((x) & 0x0000ff00) << 8) | (((x) & 0x000000ff) << 24)) #define htoles(x) bswap_16(htons(x)) #define htolel(x) bswap_32(htonl(x)) struct track_t { int num; int mode; int audio; char *modes; char *extension; int bstart; int bsize; long startsect; long stopsect; long start; long stop; struct track_t *next; }; char *basefile = NULL; char *binfile = NULL; char *cuefile = NULL; int verbose = 0; int psxtruncate = 0; int raw = 0; int swabaudio = 0; int towav = 0; /* * Parse arguments */ void parse_args(int argc, char *argv[]) { int s; while ((s = getopt(argc, argv, "swvp?hr")) != -1) { switch (s) { case 'r': raw = 1; break; case 'v': verbose = 1; break; case 'w': towav = 1; break; case 'p': psxtruncate = 1; break; case 's': swabaudio = 1; break; case '?': case 'h': fprintf(stderr, "%s", USAGE); exit(0); } } if (argc - optind != 3) { fprintf(stderr, "%s", USAGE); exit(1); } while (optind < argc) { switch (argc - optind) { case 3: binfile = strdup(argv[optind]); break; case 2: cuefile = strdup(argv[optind]); break; case 1: basefile = strdup(argv[optind]); break; default: fprintf(stderr, "%s", USAGE); exit(1); } optind++; } } /* * Convert a mins:secs:frames format to plain frames */ long time2frames(char *s) { int mins = 0, secs = 0, frames = 0; char *p, *t; if (!(p = strchr(s, ':'))) return -1; *p = '\0'; mins = atoi(s); p++; if (!(t = strchr(p, ':'))) return -1; *t = '\0'; secs = atoi(p); t++; frames = atoi(t); return 75 * (mins * 60 + secs) + frames; } /* * Parse the mode string */ void gettrackmode(struct track_t *track, char *modes) { static char ext_iso[] = "iso"; static char ext_cdr[] = "cdr"; static char ext_wav[] = "wav"; static char ext_ugh[] = "ugh"; track->audio = 0; if (!strcasecmp(modes, "MODE1/2352")) { track->bstart = 16; track->bsize = 2048; track->extension = ext_iso; } else if (!strcasecmp(modes, "MODE2/2352")) { track->extension = ext_iso; if (raw) { /* Raw MODE2/2352 */ track->bstart = 0; track->bsize = 2352; } else if (psxtruncate) { /* PSX: truncate from 2352 to 2336 byte tracks */ track->bstart = 0; track->bsize = 2336; } else { /* Normal MODE2/2352 */ track->bstart = 24; track->bsize = 2048; } } else if (!strcasecmp(modes, "MODE2/2336")) { /* WAS 2352 in V1.361B still work? * what if MODE2/2336 single track bin, still 2352 sectors? */ track->bstart = 16; track->bsize = 2336; track->extension = ext_iso; } else if (!strcasecmp(modes, "AUDIO")) { track->bstart = 0; track->bsize = 2352; track->audio = 1; if (towav) track->extension = ext_wav; else track->extension = ext_cdr; } else { printf("(?) "); track->bstart = 0; track->bsize = 2352; track->extension = ext_ugh; } } /* * return a progress bar */ char *progressbar(float f, int l) { static char s[80]; int i, n; n = l * f; for (i = 0; i < n; i++) { s[i] = '*'; } for (; i < l; i++) { s[i] = ' '; } s[i] = '\0'; return s; } /* * Write a track */ int writetrack(FILE *bf, struct track_t *track, char *bname) { char *fname; FILE *f; char buf[SECTLEN+10]; long sz, sect, realsz, reallen; char c, *p, *p2, *ep; int32_t l; int16_t i; float fl; if (!(fname = malloc(strlen(bname) + 8))) { fprintf(stderr, "main(): malloc() failed, out of memory\n"); exit(4); } sprintf(fname, "%s%2.2d.%s", bname, track->num, track->extension); printf("%2d: %s ", track->num, fname); if (!(f = fopen(fname, "w"))) { fprintf(stderr, " Could not fopen track file: %s\n", strerror(errno)); exit(4); } if (fseek(bf, track->start, SEEK_SET)) { fprintf(stderr, " Could not fseek to track location: %s\n", strerror(errno)); exit(4); } reallen = (track->stopsect - track->startsect + 1) * track->bsize; if (verbose) { printf("\n mmc sectors %ld->%ld (%ld)", track->startsect, track->stopsect, track->stopsect - track->startsect + 1); printf("\n mmc bytes %ld->%ld (%ld)", track->start, track->stop, track->stop - track->start + 1); printf("\n sector data at %d, %d bytes per sector", track->bstart, track->bsize); printf("\n real data %ld bytes", (track->stopsect - track->startsect + 1) * track->bsize); printf("\n"); } printf(" "); if ((track->audio) && (towav)) { // RIFF header fputs("RIFF", f); l = htolel(reallen + WAV_DATA_HLEN + WAV_FORMAT_HLEN + 4); fwrite(&l, 4, 1, f); // length of file, starting from WAVE fputs("WAVE", f); // FORMAT header fputs("fmt ", f); l = htolel(0x10); // length of FORMAT header fwrite(&l, 4, 1, f); i = htoles(0x01); // constant fwrite(&i, 2, 1, f); i = htoles(0x02); // channels fwrite(&i, 2, 1, f); l = htolel(44100); // sample rate fwrite(&l, 4, 1, f); l = htolel(44100 * 4); // bytes per second fwrite(&l, 4, 1, f); i = htoles(4); // bytes per sample fwrite(&i, 2, 1, f); i = htoles(2*8); // bits per channel fwrite(&i, 2, 1, f); // DATA header fputs("data", f); l = htolel(reallen); fwrite(&l, 4, 1, f); } realsz = 0; sz = track->start; sect = track->startsect; fl = 0; while ((sect <= track->stopsect) && (fread(buf, SECTLEN, 1, bf) > 0)) { if (track->audio) { if (swabaudio) { /* swap low and high bytes */ p = &buf[track->bstart]; ep = p + track->bsize; while (p < ep) { p2 = p + 1; c = *p; *p = *p2; *p2 = c; p += 2; } } } if (fwrite(&buf[track->bstart], track->bsize, 1, f) < 1) { fprintf(stderr, " Could not write to track: %s\n", strerror(errno)); exit(4); } sect++; sz += SECTLEN; realsz += track->bsize; if (((sz / SECTLEN) % 500) == 0) { fl = (float)realsz / (float)reallen; printf("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b%4ld/%-4ld MB [%s] %3.0f %%", realsz/1024/1024, reallen/1024/1024, progressbar(fl, 20), fl * 100); fflush(stdout); } } fl = (float)realsz / (float)reallen; printf("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b%4ld/%-4ld MB [%s] %3.0f %%", realsz/1024/1024, reallen/1024/1024, progressbar(1, 20), fl * 100); fflush(stdout); if (ferror(bf)) { fprintf(stderr, " Could not read from %s: %s\n", binfile, strerror(errno)); exit(4); } if (fclose(f)) { fprintf(stderr, " Could not fclose track file: %s\n", strerror(errno)); exit(4); } printf("\n"); return 0; } /* * Main */ int main(int argc, char **argv) { char s[CUELLEN+1]; char *p, *t; int i, idx; struct track_t *tracks = NULL; struct track_t *track = NULL; struct track_t *prevtrack = NULL; struct track_t **prevp = &tracks; FILE *binf, *cuef; printf("%s", VERSTR); parse_args(argc, argv); if (!((binf = fopen(binfile, "r")))) { fprintf(stderr, "Could not open BIN %s: %s\n", binfile, strerror(errno)); return 2; } if (!((cuef = fopen(cuefile, "r")))) { fprintf(stderr, "Could not open CUE %s: %s\n", cuefile, strerror(errno)); return 2; } printf("Reading the CUE file:\n"); /* We don't really care about the first line. */ if (!fgets(s, CUELLEN, cuef)) { fprintf(stderr, "Could not read first line from %s: %s\n", cuefile, strerror(errno)); return 3; } i = 0; while (fgets(s, CUELLEN, cuef)) { while ((p = strchr(s, '\r')) || (p = strchr(s, '\n'))) *p = '\0'; if ((p = strstr(s, "TRACK"))) { printf("\nTrack "); if (!(p = strchr(p, ' '))) { fprintf(stderr, "... ouch, no space after TRACK.\n"); continue; } p++; if (!(t = strchr(p, ' '))) { fprintf(stderr, "... ouch, no space after track number.\n"); continue; } *t = '\0'; prevtrack = track; if (!(track = malloc(sizeof(struct track_t)))) { fprintf(stderr, "main(): malloc() failed, out of memory\n"); exit(4); } *prevp = track; prevp = &track->next; track->next = NULL; track->num = atoi(p); p = t + 1; printf("%2d: %-12.12s ", track->num, p); track->modes = strdup(p); track->extension = NULL; track->mode = 0; track->audio = 0; track->bsize = track->bstart = -1; track->bsize = -1; track->startsect = track->stopsect = -1; gettrackmode(track, p); } else if ((p = strstr(s, "INDEX"))) { if (!(p = strchr(p, ' '))) { printf("... ouch, no space after INDEX.\n"); continue; } p++; if (!(t = strchr(p, ' '))) { printf("... ouch, no space after index number.\n"); continue; } *t = '\0'; t++; idx = atoi(p); printf(" %s %s", p, t); track->startsect = time2frames(t); track->start = track->startsect * SECTLEN; if (verbose) printf(" (startsect %ld ofs %ld)", track->startsect, track->start); if ((prevtrack) && (prevtrack->stopsect < 0)) { prevtrack->stopsect = track->startsect; prevtrack->stop = track->start - 1; } } } if (track) { fseek(binf, 0, SEEK_END); track->stop = ftell(binf); track->stopsect = track->stop / SECTLEN; } printf("\n\n"); printf("Writing tracks:\n\n"); for (track = tracks; (track); track = track->next) writetrack(binf, track, basefile); fclose(binf); fclose(cuef); return 0; } bchunk-1.2.0/README0100644006315700631570000001122510070351572012730 0ustar hessuhessu binchunker for Unix, version 1.2.0 Copyright (C) 1998-2004 Heikki Hannikainen Enhancements provided by: Colas Nahaboo , 1999 Godmar Back , 2001 Matthew Green , 2003 http://he.fi/bchunk/ Created with the kind help of Bob Marietta , partly based on his Pascal (Delphi) implementation. Released under the GNU GPL, version 2 or later (at your option). --- Licence: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --- Credits: This is a Unix/C rewrite of the fine BinChunker software for some non-Unix system. The non-Unix version of BinChunker has been obsoleted by FireBurner, which can be found at www.fireburner.com. FireBurner does a lot more than BinChunker did, but can be used to do exactly the same even without a burner device installed. Thanks go to Bob Marietta, the author of BinChunker, for the extensive help, documentation and letting me look at his Pascal/Delphi source code! Colas Nahaboo and Godmar Back added support for MODE2/2352 ISO data tracks in bchunk 1.1.0. Matthew Green implemented the -r option for raw MODE2/2352 exctraction for bchunk 1.2.0. --- What on earth is this stuff: binchunker converts a CD image in a ".bin / .cue" format (sometimes ".raw / .cue") to a set of .iso and .cdr tracks. The bin/cue format is used by some non-Unix cd-writing software, but is not supported on most other cd-writing programs. The .iso track contains an ISO file system, which can be mounted through a loop device on Linux systems ('mount track.iso /mnt/cdrom -o loop=/dev/loop0,blocksize=1024'), or written on a CD-R using cdrecord. The .cdr tracks are in the native CD audio format. They can be either written on a CD-R using cdrecord -audio, or converted to WAV (or any other sound format for that matter) using sox ('sox track.cdr track.wav'). Audio tracks can be written in WAV format by using the -w switch. --- How to install this stuff: $ gzip -d -c bchunk-1.2.0.tar.gz | tar xvf - $ cd bchunk-1.2.0 $ make # make install If your system does not have GCC installed, edit Makefile, uncommenting the CC lines. If your system does not ship with a BSD-style 'install' program and the make install fails, copy the resulting 'bchunk' binary to your favourite directory in your $PATH. /usr/local/bin is a good one. The manual page 'bchunk.1' should go to /usr/local/man/man1 for example. bchunk has been successfully compiled on the following platforms: Linux 2.0, i686, glibc 2.0.7, gcc 2.7.2.3 (RedHat 5.1) Linux 2.2, i686, glibc 2.1.1, egcs 1.1.2 (RedHat 6.0) Linux 2.4, i686, glibc 2.2, gcc-2.96 (RedHat 7.0) Solaris 2.5.1, SPARC, gcc 2.7.2 Solaris 2.6, SPARC, gcc 2.8.1 Digital Unix 4.0c, Alpha, DEC C V5.2-033 SGI IRIX 6.5.7m, MIPS R4600 IP22, gcc 2.95.2 Mac OS X 10.1.4, gcc 2.95.2 It should be ANSI enough to compile on any decent system. (The HP-UX bundled compiler is not decent.) --- How to use this stuff: bchunk [-v] [-p (PSX)] [-r (raw)] [-w (wav)] [-s (swabaudio)] image.bin is the raw cd image file. image.cue is the track index file containing track types and offsets. basename is used for the beginning part of the created track files. The -v flag makes binchunker print some more unnecessary messages, which should not be of interest for anyone. The -p flag makes binchunker go into PSX mode and truncate MODE2/2352 tracks to 2336 bytes at offset 0 instead of normal 2048 bytes at offset 24. The -r flag makes binchunker output MODE2/2352 tracks in raw format, from offset 0 for 2352 bytes. Good for MPEG/VCD. The -w flag makes binchunker write audio tracks in WAV format. The -s flag makes binchunker swap byte order in the samples of the audio tracks. If the audio sounds like loud static noise, try this. bchunk-1.2.0/COPYING0100644006315700631570000004313007332246334013111 0ustar hessuhessu GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. bchunk-1.2.0/bchunk.10100644006315700631570000000517310070351565013413 0ustar hessuhessu.TH BCHUNK 1 "v1.2.0 29 Jun 2004" "Heikki Hannikainen" .SH NAME bchunk \- CD image format conversion from bin/cue to iso/cdr .SH SYNOPSIS .B bchunk [-v] [-p] [-r] [-w] [-s] .SH DESCRIPTION .LP .B bchunk converts a CD image in a ".bin / .cue" format (sometimes ".raw / .cue") to a set of .iso and .cdr tracks. .LP The bin/cue format is used by some non-Unix cd-writing software, but is not supported on most other cd-writing programs. .LP image.bin is the raw cd image file. image.cue is the track index file containing track types and offsets. basename is used for the beginning part of the created track files. .LP The produced .iso track contains an ISO file system, which can be mounted through a loop device on Linux systems, or written on a CD-R using cdrecord. The .cdr tracks are in the native CD audio format. They can be either written on a CD-R using cdrecord -audio, or converted to WAV (or any other sound format for that matter) using sox. .LP It is advisable to edit the .cue file to either MODE2/2352/2048 or MODE2/2352/2324 depending on whether an ISO filesystem or a VCD is desired, respectively. The format itself does not contain this feature and in an ambiguous case it can only guess. .SH OPTIONS .TP 10 .BI \-v Makes binchunker print some more unnecessary messages, which should not be of interest for anyone. .TP 10 .BI \-w Makes binchunker write audio tracks in WAV format. .TP 10 .BI \-s Makes binchunker swap byte order in the samples of audio tracks. .TP 10 .BI \-p Makes binchunker go into PSX mode and truncate MODE2/2352 tracks to 2336 bytes at offset 0 instead of normal 2048 bytes at offset 24. .TP 10 .BI \-r Makes binchunker output MODE2/2352 tracks in raw format, from offset 0 for 2352 bytes. Good for MPEG/VCD. .SH FILES .LP .TP 5 .B image.bin Raw CD image file .TP 5 .B image.cue TOC (Track index, Table Of Contents) file .TP 5 .B *.iso Tracks in ISO9660 CD filesystem format. Can be either written on a CD-R using cdrecord, or mounted (on Linux platforms at least) through a loop device ('mount track.iso /mnt/cdrom -o loop=/dev/loop0,blocksize=1024'). .TP 5 .B *.cdr Audio tracks in native CD audio format. They can be either written on a CD-R using 'cdrecord -audio', or converted to WAV (or any other sound format for that matter) using sox ('sox track.cdr track.wav'). .TP 5 .B *.wav Audio tracks in WAV format. .SH "SEE ALSO" .BR cdrecord (1), .BR mkisofs (8), .BR sox (1), .BR cdrdao (1) .SH AUTHORS .LP .NF Heikki Hannikainen .br Bob Marietta .br Colas Nahaboo .br Godmar Back .br Matthew Green .br .FI bchunk-1.2.0/ChangeLog0100644006315700631570000000315210070351246013620 0ustar hessuhessu 1.0.0 - Oct 11 1998 - Hessu Initial release. 1.1.0 - Jun 30 2001 - Hessu The odd maintenance update: With patches from both Colas Nahaboo and Godmar Back , support for MODE2/2352 images (offset 24, 2048 byte data) has been fixed. I also added the -p option to get around with PSX tracks (untested, no reports, but this is what the original FireBurner source seems to do). Tracks with unrecognized mode are saved with extension '.ugh'. A little more error checking. Added WAV audio file output. The code that was added to do correct byte orders might make break compiling on some systems. Still works on Linux and Solaris (2.6, 2.8 tested). Added a man page, and 'make install' for systems with BSD install. 1.1.1 - Aug 7 2001 - Hessu Added error detection while reading the bin file. Patch from Oskar Liljeblad , forwarded from the debian bug tracking system by Sam Powers . psxtruncate was always enabled, thanks for the report go to Patrik Weiskircher . Christian W. Zuckschwerdt provided a fix for the .spec file - replaced hardcoded paths with macros so that the package will build on other distributions too. 1.2.0 - Jun 29 2004 - Hessu Included a man page patch from the openbsd port of bchunk (adding a note about ISO/VCD), and s/ISO9110/ISO9660/. The changes were for openbsd by Dave Watson . Patch from Matthew Green for a new option -r, which makes binchunker output MODE2/2352 tracks in raw format, from offset 0 for 2352 bytes. bchunk-1.2.0/bchunk.spec0100664006315700631570000000370710070352215014201 0ustar hessuhessu%define name bchunk %define version 1.2.0 %define release 0 Summary: A CD image format converter from .bin/.cue to .iso/.cdr/.wav. Name: %{name} Version: %{version} Release: %{release} Group: Applications/Archiving Copyright: GPL Url: http://he.fi/bchunk/ Source: %{name}-%{version}.tar.gz Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root %description The bchunk package contains a UNIX/C rewrite of the BinChunker program. BinChunker converts a CD image in a .bin/.cue format (sometimes .raw/.cue) into a set of .iso and .cdr/.wav tracks. The .bin/.cue format is used by some non-UNIX CD-writing software, but is not supported on most other CD-writing programs. %prep %setup -q %build CFLAGS="$RPM_OPT_FLAGS" make %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_bindir} mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1 install -s -m 755 bchunk $RPM_BUILD_ROOT%{_bindir} install -m 644 bchunk.1 $RPM_BUILD_ROOT%{_mandir}/man1 %clean rm -r $RPM_BUILD_ROOT %files %defattr(-,root,root) %doc COPYING README bchunk-%{version}.lsm %{_bindir}/bchunk %{_mandir}/man1/bchunk.1.gz %changelog * Tue Jun 29 2004 Hessu - updated to 1.2.0 * Tue Aug 7 2001 Hessu - updated to 1.1.1 * Fri Jul 13 2001 Christian W. Zuckschwerdt - replaced the hardcoded paths with macros * Sun Jul 1 2001 Hessu - updated to 1.1.0 * Mon Jul 24 2000 Prospector - rebuilt * Mon Jul 10 2000 Tim Powers - rebuilt * Mon Jul 03 2000 Prospector - automatic rebuild * Wed May 3 2000 Tim Powers - rebuilt for 7.0 * Tue Jan 4 2000 Tim Powers - rebuilt for 6.2 * Fri Jul 9 1999 Tim Powers - added %defattr line and removed old %attr line - built for 6.1 * Mon Apr 26 1999 Michael Maher - built package for 6.0 * Thu Nov 5 1998 Fryguy_ [bchunk-1.0.0-1] - Initial Release bchunk-1.2.0/bchunk-1.2.0.lsm0100644006315700631570000000113710070351341014466 0ustar hessuhessuBegin3 Title: bchunk Version: 1.2.0 Entered-date: 29JUN04 Description: CD image format conversion from bin/cue to iso/cdr Keywords: cdrecord cdwrite cue binchunker cdr Author: hessu@hes.iki.fi (Heikki Hannikainen) Maintained-by: hessu@hes.iki.fi (Heikki Hannikainen) Primary-site: sunsite.unc.edu /pub/Linux/utils/disk-management 15kb bchunk-1.2.0.tar.gz 1kb bchunk-1.2.0.lsm Alternate-site: http://he.fi/bchunk/ ftp.funet.fi /pub/Linux/sunsite/utils/disk-management Original-site: http://www.fireburner.com/ Platforms: Any system that is somewhat ANSI and POSIX.1 compliant Copying-policy: GPL End