AudioCD - Module for basic Audio CD control


AudioCD documentation Contained in the AudioCD distribution.

Index


Code Index:

NAME

Top

AudioCD - Module for basic Audio CD control

SYNOPSIS

Top

    use AudioCD;
    # see below

DESCRIPTION

Top

See AudioCD::Mac for more information. Right now, this module has support only for MacPerl. Please feel free to write other modules for Your Favorite Platform and let me know about it.

AUTHOR

Top

Chris Nandor <pudge@pobox.com> http://pudge.net/

Copyright (c) 1998 Chris Nandor. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. Please see the Perl Artistic License.

VERSION

Top

v0.20, Wednesday, December 9, 1998

Renamed to AudioCD, added controls for Audio CD.

v0.10, Thursday, October 8, 1998

First version, made for Mac OS to get CDDB TOC data.

SEE ALSO

Top

CDDB.pm


AudioCD documentation Contained in the AudioCD distribution.

package AudioCD;

use strict;
use vars qw($VERSION @ISA @EXPORT $IsMac);
use Exporter;

@ISA = qw(DynaLoader);
$VERSION = '0.20';

$IsMac = $^O eq 'MacOS';

if ($IsMac) {
    require AudioCD::Mac;
    AudioCD::Mac->import();
    push @EXPORT, @AudioCD::Mac::EXPORT;
    @ISA = qw(AudioCD::Mac);
}

1;
__END__