Note: This example is HEAVILY based on the AgentChat script available somewhere in this monastery.
#!/usr/local/bin/perl -w use Win32::OLE; use Win32::OLE::Variant; $sound="Yup"; use vars qw($Agent); use vars qw(%Languages $VERSION); %Languages = ( English => 0x0409, French => 0x040C, German => 0x0407, Italian => 0x0410, Portuguese => 0x0816, Spanish => 0x0C0A, Dutch => 0x0413, ); Win32::OLE->Initialize(Win32::OLE::COINIT_MULTITHREADED); $Agent = Win32::OLE->new('Agent.Control.2') or die Win32::OLE->LastErr +or(); $Agent->{Connected} = Variant(VT_BOOL, 1); $Agent->Characters->Load('Merlin','merlin.acs') or die Win32::OLE-> +LastError(); $Characters{agent} = $Agent->Characters('Merlin'); $Characters{agent}->{LanguageID}=$Languages{English}; $Characters{agent}->Show; $Characters{agent}->Play("Greet"); $Characters{agent}->Speak("Hallo"); $Characters{agent}->Speak("The quick brown fox jumps over the lazy dog +."); $Characters{agent}->Speak("She sells sea shells on the sea shore."); $Characters{agent}->Speak("There's more than one way to do it."); $Characters{agent}->Hide;
No credits for me. t0mas++

Greetz
Beatnik
...Perl is like sex: if you're doing it wrong, there's no fun to it.

In reply to Re: Text-to-speech in Perl by Beatnik
in thread Text-to-speech in Perl by Massyn

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.