| AudioCD documentation | Contained in the AudioCD distribution. |
AudioCD - Module for basic Audio CD control
use AudioCD;
# see below
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.
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.
Renamed to AudioCD, added controls for Audio CD.
First version, made for Mac OS to get CDDB TOC data.
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__