The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

SDL::Cdrom - a SDL perl extension for managing CD-ROM drives

SYNOPSIS

        use SDL::Cdrom;
        $cdrom = SDL::Cdrom->new(0);
        $cdrom->play();

EXPORTS

SDL::Cdrom exports by default only one symbol: CD_NUM_DRIVES.

DESCRIPTION

METHODS

new()

        use SDL::Cdrom;
        my $drive => SDL::Cdrom->new($id);

Create a new SDL::Cdrom object. The passed $id is the number of the drive, whereas 0 is the first drive etc.

CD_NUM_DRIVES()

Returns the number of CD-ROM drives present.

name()

        my $name = $drive->name();

Returns the system dependent name of the CD-ROM device.

status()

Return the status of the drive.

play()

        $drive->play ($start,$length,$fs,$fl);

Play a track.

pause()

Pause the playing.

resume()

Resume the playing.

stop()

Stop the playing.

eject()

Eject the medium in the drive.

id()

Return the ID of the drive.

num_tracks()

Return the number of tracks on the medium.

track()

        $drive->track($number);

current()

Return the current played track number.

current_frame()

Return the current frame.

AUTHORS

 David J. Goehrig
 Documentation by Tels <http://bloodgate.com/>.

SEE ALSO

See perl(1), SDL::Mixer and SDL::App.