Index


NAME

Convert::CD - import/export/represent various cd image file formats

SYNOPSIS

 use Convert::CD;

 # to be done

DESCRIPTION

Kidding?

Convert:CD METHODS

This class represents a full CD image, which can consist of one or more files. While track layout and TOC data is stored in this class, to read/write TOC files you need a Convert::CD::TOCFile.

new param => value...

Create a new Convert::CD object.

 my $cd = new path => "/tmp/mycd.bin";

$cd->append_track(param => value...)

Appends a new track to the image. Same parameters as Convert::CD::Track->new.

$cd->as_string

Returns a multi-line, textual description of the CD Image.

$cd->track ([$idx])

Returns the track with the given index, or, if no index is given, all the tracks of the CD (or the number of tracks in scalar context). The first track is track #1.

AUTHOR

 Marc Lehmann <schmorp@schmorp.de>