• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

MakefileH A D21-Jul-2003600 2719

READMEH A D03-Sep-20041.1 KiB4529

cue2tocH A D03-May-20225.8 KiB213167

README

1PROGRAM: Cue2Toc
2
3VERSION: 0.1
4
5AUTHOR: Patrick C. McGinty
6
7CONTACT: cue2toc@tuxcoder.com
8
9DESCRIPTION:
10	Cue2Toc is a perl script that will convert a CDRWin CUE file into a cdrdao
11	TOC file. The script can handle audio CUE files only.  Data and MixedMode
12	file support may be added in future releases.  The script currently
13	supports single and multiple WAV CUE files, CD text, and track pregaps.
14
15INSTATLLATION:
16	To copy the script to the 'bin' directory of the default install prefix
17	(/usr/local), run:
18
19		make install
20
21	To install to another directory use the command:
22
23		make install DESTDIR=/usr
24
25	This will place the executable in the '/usr/bin' directory.
26
27USAGE:
28	To execute the program, simply pass the CUE file as an argument to the
29	executable:
30
31	cue2toc myaudioCD.cue
32
33	The output TOC will be created as 'myaudioCD.toc' in the same directory as
34	the CUE file.
35
36BUGS:
37	Please send all bugs and feature requests to the contact email listed
38	above.
39
40CHANGE LOG:
41    V. 0.1 (9-01-04): Fix Multi-track WAV file support
42	V. 0.0 (7-21-03): Initial release
43
44WEBPAGE: http://www.tuxcoder.com/cue2toc/
45