in reply to Audio for Perl Modules

Certain operating systems provide text to speech functionality for accessibility purposes. Perhaps something like a Firefox extension would suffice, if you use firefox of course. Failing that Text to Speech may be of interest.

Martin

Replies are listed 'Best First'.
Re^2: Audio for Perl Modules
by Ratazong (Monsignor) on Oct 14, 2009 at 06:11 UTC

    You could also use Excel for this (if you are in a Windows environment) - see the following code

    #!/usr/bin/perl -w use strict; use warnings; #use Win32::OLE qw(in with); use Win32::OLE::Const 'Microsoft Excel'; my $Excel = Win32::OLE->new('Excel.Application', 'Quit'); my $text = "Hello!"; $Excel->Speech->speak($text); exit 0;
    Hope this helps
    Rata