Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/usr/bin/perl -w
use strict;
use warnings;
use Win32::OLE;
use Data::Dumper;
$| = 1;
my $speech = Win32::OLE->new ('SAPI.SpVoice');
my @msg = (
'Hello world!',
);
foreach (@msg) {
$speech->Speak ($_,0);
}
my $voices = $speech->GetVoices();
print "Voices: " . Dumper($voices) . "\n";
# $speech->Voice ($speech->GetVoices("Name=Microsoft Mary"))->Item(0);
$speech->Speak ("[URL unfurl="true"]www.microsoft.com",[/URL] 0);
$speech->Speak ("<pitch absmiddle='1'>"
. "The quick brown fox jumps over the lazy dog.",0);
$speech->Speak ("<pitch absmiddle='10'>"
. "The quick brown fox jumps over the lazy dog.",0);
$speech->Speak ("<pitch absmiddle='50'>"
. "The quick brown fox jumps over the lazy dog.",0);
$speech->Speak ("<rate absspeed='10'>"
. "The quick brown fox jumps over the lazy dog.",0);
$speech->Speak ("<volume level='50'>"
. "All your <volume level='100'>base</volume> are belong to us.",0);
$speech->WaitUntilDone (-1);
exit;