[Voiceglue] Voiceglue Digest, Vol 19, Issue 12
rajesh ganji
rajesganji at gmail.com
Sat Feb 21 04:48:20 EST 2009
Hi, Carlos
Actually, we are developing one comparatively big appliation on vxml , we
used to get cache file recorded problem frequently, when we call same wave
file continuously
eg: <audio src="1.wav"/> <audio src="1.wav"/>
so we had to try for solution, sending delay (in ms). it is been working
fine, it is just sending delay between every file cache recorded , even we
made same change in 3 voice-glue servers, we did not get any problem. and no
time delay in playing files, since delay in milli seconds.
Rajesh Ganji
On Fri, Feb 20, 2009 at 5:23 PM, <voiceglue-request at voiceglue.org> wrote:
> Send Voiceglue mailing list submissions to
> voiceglue at voiceglue.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://www.voiceglue.org/mailman/listinfo/voiceglue
> or, via email, send a message with subject or body 'help' to
> voiceglue-request at voiceglue.org
>
> You can reach the person managing the list at
> voiceglue-owner at voiceglue.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Voiceglue digest..."
>
>
> Today's Topics:
>
> 1. Re: solution for fetching wav file (Carlos Alarc?n)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Fri, 20 Feb 2009 12:53:10 +0100
> From: Carlos Alarc?n <carlos.alarcon at tyven.com>
> Subject: Re: [Voiceglue] solution for fetching wav file
> To: General discussion about voiceglue <voiceglue at voiceglue.org>
> Message-ID: <499E99A6.8070308 at tyven.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Since I cannot make it work for me, and our application is quite simple
> and the work flow is very controlled, I had just created a vxml with the
> hole set of two digits numbers, It is run every time the server gets up.
> Then any number can be said since thy are already cached properly.
>
> It is a very rough work arround but it works for me
> Regards
>
> Carlos Alarc?n escribi?:
> > Hi Rajesh,
> > Thanks for you help,
> > Unfortunately it is not helping me (even increasing that delay a lot).
> > My knowledge of perl is very limited, what is this delay exactly doing?
> > Is it inserting time between the request of a wav file to the cache
> > and the moment it save it into cache?
> > If so, I guess It would even increase my problem, since I think what
> > it is happening is that I am requesting a file to the cache which is
> > not already recorded to cache, or at least it is in the moment in
> > between.
> >
> >
> >
> >
> > rajesh ganji escribi?:
> >> Hi Carlos,
> >>
> >> we made small change in voice-glue code for audio fetching, we add
> >> sleep in voiceglue perl code , it is working fine, you can try, if
> >> you find any better solution, feel free to mail me
> >>
> >> ...
> >>
> >> code changed in /usr/bin/voiceglue
> >>
> >> sub handle_ovxi_queue{
> >> ..........
> >> .........
> >>
> >>
> >> ## Send out the sound cache request
> >> send_bytes ($::SC_fhinfo, $sc_request . "\n");
> >> select(undef, undef, undef, 0.025); #modified for delay
> >>
> >>
> >> ## and record the request to it
> >> $::SC_request_id_info->{$request_id} =
> >> {"vxml_fh" => $fhinfo->{"fh"},
> >> "index" => $index};
> >> };
> >> };
> >>
> >>
> >> Note:just we added select(undef, undef, undef, 0.025); in sub
> >> handle_ovxi_queue function in voiceglue perl code
> >>
> >>
> >>
> >>
> >> On Tue, Feb 17, 2009 at 4:55 AM, <voiceglue-request at voiceglue.org
> >> <mailto:voiceglue-request at voiceglue.org>> wrote:
> >>
> >> Send Voiceglue mailing list submissions to
> >> voiceglue at voiceglue.org <mailto:voiceglue at voiceglue.org>
> >>
> >> To subscribe or unsubscribe via the World Wide Web, visit
> >> http://www.voiceglue.org/mailman/listinfo/voiceglue
> >> or, via email, send a message with subject or body 'help' to
> >> voiceglue-request at voiceglue.org
> >> <mailto:voiceglue-request at voiceglue.org>
> >>
> >> You can reach the person managing the list at
> >> voiceglue-owner at voiceglue.org
> >> <mailto:voiceglue-owner at voiceglue.org>
> >>
> >> When replying, please edit your Subject line so it is more specific
> >> than "Re: Contents of Voiceglue digest..."
> >>
> >>
> >> Today's Topics:
> >>
> >> 1. On audio caching and HTTP cookies (Doug Campbell)
> >> 2. weird thing fetching wav file (Alarc?n Carlos)
> >>
> >>
> >>
> >> ----------------------------------------------------------------------
> >>
> >> Message: 1
> >> Date: Mon, 16 Feb 2009 15:08:15 -0500
> >> From: Doug Campbell <voiceglue at campbellcastle.com
> >> <mailto:voiceglue at campbellcastle.com>>
> >> Subject: [Voiceglue] On audio caching and HTTP cookies
> >> To: General discussion about voiceglue <voiceglue at voiceglue.org
> >> <mailto:voiceglue at voiceglue.org>>
> >> Message-ID: <4999C7AF.9070009 at campbellcastle.com
> >> <mailto:4999C7AF.9070009 at campbellcastle.com>>
> >> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
> >>
> >> In implementing the changes for cookies and dynamically-generated
> >> audio data loading, I have come across the following design issue.
> >>
> >> I would appreciate feedback on any improvements I can make
> >> regarding this issue.
> >>
> >> If performance were not a concern, every HTTP request implied by
> >> a VXML session would be made to the server (not cached), and would
> >> contain the cookies that have been set during that session.
> >>
> >> However, caching is important to performance, especially
> >> when scaling to many simultaneous calls. Caching can
> >> occur either within a VXML session (private caching)
> >> or across VXML sessions (shared caching).
> >>
> >> Private caching should, theoretically, be governed by
> >> HTTP and VXML caching directives, and therefore the programmer
> >> can achieve the control he desires regarding the tradeoffs
> >> between caching, cookies, and dynamically-generated content.
> >> Unfortunately, private caching has limited performance
> >> benefits if many calls are using the same data.
> >>
> >> Shared caching prohibits the use of cookies to identify
> >> a session and can violate the semantic transparency
> >> of the requests. But, shared caching can provide dramatic
> >> performance benefits when many calls use the same data.
> >>
> >> Currently, voiceglue performs private caching for non-audio
> >> data (e.g. VXML pages) and shared caching for audio data.
> >>
> >> The changes I am currently making will separate audio data
> >> fetches into static versus dynamic fetches. Static audio
> >> fetches will continue to not send cookies and will get cached across
> >> sessions, while dynamic audio fetches will send cookies and not
> >> get cached at all.
> >>
> >> The problem comes in determining which audio fetches are
> >> static and which are dynamic.
> >>
> >> While I would like to be able to determine static versus
> >> dynamic audio fetches by examining the server HTTP headers
> >> Expires: <now>, Cache-Control: no-cache, Cache-Control:
> >> private, and Cache-Control: s-maxage=0, I cannot wait for the
> >> server response as by then it is too late to have sent cookies.
> >>
> >> So, I propose determining static audio fetches as those having
> >> a VXML maxage attribute (or audiomaxage property if not defined)
> >> not equal to 0. Conversely, dynamic audio fetches have maxage
> >> set to 0. This gives the VXML script author full control over
> >> whether to use the shared cache for any particular audio resource.
> >>
> >> Anyone see isues with this? Or a better way overall?
> >>
> >> Doug Campbell
> >>
> >>
> >> ------------------------------
> >>
> >> Message: 2
> >> Date: Tue, 17 Feb 2009 00:25:03 +0100
> >> From: Alarc?n Carlos <carlos.alarcon at tyven.com
> >> <mailto:carlos.alarcon at tyven.com>>
> >> Subject: [Voiceglue] weird thing fetching wav file
> >> To: General about voiceglue discussion <voiceglue at voiceglue.org
> >> <mailto:voiceglue at voiceglue.org>>
> >> Message-ID: <4742B973-6B27-4895-A21C-EACD7AB329F8 at tyven.com
> >> <mailto:4742B973-6B27-4895-A21C-EACD7AB329F8 at tyven.com>>
> >> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed
> >>
> >> Hi I found out a strange behaviour with this type of vxml files:
> >> By the way I am using voiceglue 0.8, I haven't upgrade yet.
> >>
> >> As you can see in this vxml contains some blocks. Those blocks
> >> have a
> >> wav file each which is accessible properly via http.
> >>
> >> two of those consecutive blocks are:
> >> <block><prompt><audio src="audio/99.wav">99</audio></prompt></block>
> >> <block><prompt><audio src="audio/99.wav">99</audio></prompt></block>
> >>
> >> When voiceglue is just started (no cache at all) the 99.wav file is
> >> played once but then it fails to retrieve it again, leaving the call
> >> in a strange status (chanel is openned but nothing is going on)
> >> next time I try to run this vxml it sounds ok.
> >> It happends the first time I try to play the same sound twice in
> >> such
> >> way.
> >>
> >> the lates lines of Dynlog are (the full log is at the end of the
> >> mail):
> >> 00:21:05:861 DBUG PHONGLUE xen4.tyv callid=[1] snd PLAYFILE
> >> file="voiceglue/url/localhost/telepagos/audio/99.wav" stopkeys="" to
> >> AGI client on fh="::FASTAGI1" at host=127.0.0.1 callid=[1]
> >> 00:21:05:861 DBUG PHONGLUE xen4.tyv snd "STREAM FILE voiceglue/url/
> >> localhost/telepagos/audio/99 \"\"\n" to ::FASTAGI1
> >> 00:21:07:769 DBUG PHONGLUE xen4.tyv rcv agi(::FASTAGI1): "200
> >> result=0 endpos=15253\n"
> >> 00:21:07:769 DBUG PHONGLUE xen4.tyv callid=[1] AGI result=0 values:
> >> endpos=15253
> >> 00:21:07:770 DBUG PHONGLUE xen4.tyv callid=[1] snd played callid=1
> >> status=0 msg="" reason=end-of-data to CT client on fh="::CTCLIENT1"
> >> at host=127.0.0.1 proto=SATC
> >> 00:21:07:770 DBUG PHONGLUE xen4.tyv snd "played 1 0 \"\" 1\n"
> >> to ::CTCLIENT1
> >> 00:21:07:770 DBUG VOICEGLU xen4.tyv rcv ctsrv: "played 1 0 \"\" 1\n"
> >> 00:21:07:770 DBUG VOICEGLU xen4.tyv callid=[1] parsed played
> >> callid=1
> >> status=0 msg="" reason=end-of-data
> >> 00:21:07:770 DBUG VOICEGLU xen4.tyv callid=[1] dpal():
> >> do_prompt_and_listen() called
> >> 00:21:07:770 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): Checking for
> >> prompts
> >> 00:21:07:771 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): No prompts
> >> ready, waiting for more
> >>
> >> Any Idea of what can be wrong?
> >>
> >>
> >>
> >> <?xml version="1.0" encoding="iso-8859-1"?>
> >> <vxml xml:lang="es-ES" version="2.0" xmlns="http://www.w3.org/2001/
> >> vxml">
> >> <property name="termchar" value=""/>
> >> <property name="bargein" value="false"/>
> >> <property name="inputmodes" value="dtmf"/>
> >> <catch event="connection.disconnect.hangup"><goto next="index.php?
> >> page=hangup"/></catch>
> >> <catch event="error"><goto next="index.php?page=hangup"/></catch>
> >> <form>
> >> <block><prompt></prompt></block>
> >> <block><prompt></prompt></block>
> >> <block><prompt><audio src="audio/card.wav">Numero</audio></prompt></
> >> block>
> >> <block><prompt><audio src="audio/12.wav">12</audio></prompt></block>
> >> <block><prompt><audio src="audio/34.wav">34</audio></prompt></block>
> >>
> >> <block><prompt><audio src="audio/99.wav">99</audio></prompt></block>
> >> <block><prompt><audio src="audio/99.wav">99</audio></prompt></block>
> >> <block><prompt><audio src="audio/90.wav">90</audio></prompt></block>
> >> <block><prompt><audio src="audio/12.wav">12</audio></prompt></block>
> >> <block><prompt><audio src="audio/34.wav">34</audio></prompt></block>
> >> <block><prompt><audio src="audio/5.wav">5</audio></prompt></block>
> >> <block><prompt><audio src="audio/prompt_date.wav">Fecha de
> >> caducida</
> >> audio></prompt></block>
> >> <block><prompt><audio src="audio/12.wav">12</audio></prompt></block>
> >> <block><prompt><audio src="audio/12.wav">12</audio></prompt></block>
> >>
> >> <field name="confirm">
> >> <prompt>pulse uno para confirmar</prompt>
> >> <option dtmf="1" value="yes">1</option>
> >> <prompt>Pulse dos para volver a empezar</prompt>
> >> <option dtmf="2" value="no">0</option>
> >> </field>
> >> <filled><submit next="index.php" namelist="txnid confirm"
> >> method="post"/></filled></form>
> >> <catch event="noinput"><prompt><audio src="audio/noinput.wav">No he
> >> oido nada !</audio></prompt>
> >> <reprompt/></catch>
> >> </vxml>
> >>
> >> Dynlog:
> >>
> >> 00:21:01:845 DBUG PHONGLUE xen4.tyv snd "incoming 1 XXXXXXXXX
> >> 1001\n"
> >> to ::CTCLIENT1
> >> 00:21:01:846 DBUG VOICEGLU xen4.tyv rcv ctsrv: "incoming 1 XXXXXXXXX
> >> 1001\n"
> >> 00:21:01:846 DBUG VOICEGLU xen4.tyv callid=[1] parsed incoming
> >> callid=1 ani="XXXXXXXXX" dnis="1001"
> >> 00:21:01:846 NOTI VOICEGLU xen4.tyv callid=[1] starting VXML interp
> >> on url="http://localhost/telepagos/prueba.vxml" for DNIS="1001"
> >> perlfd=9 vxmlfd=10
> >> 00:21:01:848 NOTI OPEN_VXI xen4.tyv callid=[1] Channel 1: Waiting
> >> for
> >> Call 1
> >> 00:21:01:848 DBUG OPEN_VXI xen4.tyv callid=[1] |-1211016304|1|60001|
> >> testClient::ChannelThread|About to call VXIplatformWaitForCall
> >> 00:21:01:848 DBUG OPEN_VXI xen4.tyv callid=[1] |-1211016304|1|60001|
> >> testClient::ChannelThread|In a Call
> >> 00:21:01:848 NOTI OPEN_VXI xen4.tyv callid=[1] Channel 1: In a Call
> >> 00:21:01:889 DBUG OPEN_VXI xen4.tyv callid=[1]
> >> VXIrecLoadGrammarOption called with type speech, choices [0="1"
> >> 1="0"], values [0="yes" 1="no"], properties {" absoluteURI"="http://
> >> localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/
> >> prueba.vxml" " encoding"="iso-8859-1" "audiofetchhint"="prefetch"
> >> "bargein"="false" "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none" "vxi.rec.bargeinType"=2
> >> "vxi.rec.confidenceLevel"=0.5 "vxi.rec.grammarWeight"=1
> >> "vxi.rec.inputModes"=2 "vxi.rec.language"="es-ES"
> >> "vxi.rec.prefetchLevel"=1 "vxi.rec.resultNbestSize"=1
> >> "vxi.rec.sensitivity"=0.5 "vxi.rec.speedVsAccuracy"=0.5
> >> "vxi.rec.terminatorChar"="" "vxi.rec.timeoutTerminator"=0}
> >> 00:21:01:889 DBUG OPEN_VXI xen4.tyv callid=[1]
> >> VXIrecLoadGrammarFromString called with type text/x-grammar-choice-
> >> dtmf, grammar <rule id="choice"> <one-of> <item> 1 <tag>yes</
> >> tag> </item> <item> 2 <tag>no</tag> </item> </one-of>
> >> </rule> ,
> >> properties {"
> >> absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none" "vxi.rec.bargeinType"=2
> >> "vxi.rec.confidenceLevel"=0.5 "vxi.rec.grammarWeight"=1
> >> "vxi.rec.inputModes"=2 "vxi.rec.language"="es-ES"
> >> "vxi.rec.prefetchLevel"=1 "vxi.rec.resultNbestSize"=1
> >> "vxi.rec.sensitivity"=0.5 "vxi.rec.speedVsAccuracy"=0.5
> >> "vxi.rec.terminatorChar"="" "vxi.rec.timeoutTerminator"=0}
> >> 00:21:01:890 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Grammar
> >> 0xb7289460 \"text/x-grammar-choice-dtmf\" \"<rule
> >> id=\\\"choice\\\">\
> >> \n <one-of>\\n <item> 1 <tag>yes</tag> </item>\\n <item> 2
> >> <tag>no</tag> </item>\\n </one-of>\\n</rule>\\n\" \"inputmodes=\\
> >> \"dtmf\\\" bargein=\\\"false\\\" fetchaudiodelay=\\\"2s\\\"
> >> fetchtimeout=\\\"7s\\\" termchar=\\\"\\\" termtimeout=\\\"0s\\\"
> >> interdigittimeout=\"\n"
> >> 00:21:01:902 DBUG VOICEGLU xen4.tyv callid=[1] New grammar id
> >> 0xb7289460 parsed
> >> 00:21:01:902 DBUG VOICEGLU xen4.tyv callid=[1] snd Grammar 0 to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:902 DBUG VOICEGLU xen4.tyv snd "Grammar 0\n" to
> >> ::PERL_VXML_1
> >> 00:21:01:902 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Grammar
> >> 0xb7289460 "text/x-grammar-choice-dtmf" "<rule id=\"choice\">\n
> >> <one-
> >> of>\n <item> 1 <tag>yes</tag> </item>\n <item> 2 <tag>no</tag>
> >> </item>\n </one-of>\n</rule>\n" "inputmodes=\"dtmf\"
> >> bargein=\"false
> >> \" fetchaudiodelay=\"2s\" fetchtimeout=\"7s\" termchar=\"\"
> >> termtimeout=\"0s\" interdigittimeout="
> >> 00:21:01:902 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Grammar 0
> >> 00:21:01:903 DBUG OPEN_VXI xen4.tyv callid=[1]
> >> VXIrecLoadGrammarOption called with type DTMF, choices [0="1"
> >> 1="2"],
> >> values [0="yes" 1="no"], properties {"
> >> absoluteURI"="http://localhost/
> >> telepagos/prueba.vxml" " base"="http://localhost/telepagos/
> >> prueba.vxml" " encoding"="iso-8859-1" "audiofetchhint"="prefetch"
> >> "bargein"="false" "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none" "vxi.rec.bargeinType"=2
> >> "vxi.rec.confidenceLevel"=0.5 "vxi.rec.grammarWeight"=1
> >> "vxi.rec.inputModes"=2 "vxi.rec.language"="es-ES"
> >> "vxi.rec.prefetchLevel"=1 "vxi.rec.resultNbestSize"=1
> >> "vxi.rec.sensitivity"=0.5 "vxi.rec.speedVsAccuracy"=0.5
> >> "vxi.rec.terminatorChar"="" "vxi.rec.timeoutTerminator"=0}
> >> 00:21:01:903 DBUG OPEN_VXI xen4.tyv callid=[1]
> >> VXIrecLoadGrammarFromString called with type text/x-grammar-choice-
> >> dtmf, grammar <rule id="choice"> <one-of> <item> 1 <tag>yes</
> >> tag> </item> <item> 2 <tag>no</tag> </item> </one-of>
> >> </rule> ,
> >> properties {"
> >> absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none" "vxi.rec.bargeinType"=2
> >> "vxi.rec.confidenceLevel"=0.5 "vxi.rec.grammarWeight"=1
> >> "vxi.rec.inputModes"=2 "vxi.rec.language"="es-ES"
> >> "vxi.rec.prefetchLevel"=1 "vxi.rec.resultNbestSize"=1
> >> "vxi.rec.sensitivity"=0.5 "vxi.rec.speedVsAccuracy"=0.5
> >> "vxi.rec.terminatorChar"="" "vxi.rec.timeoutTerminator"=0}
> >> 00:21:01:903 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Grammar
> >> 0xb723c650 \"text/x-grammar-choice-dtmf\" \"<rule
> >> id=\\\"choice\\\">\
> >> \n <one-of>\\n <item> 1 <tag>yes</tag> </item>\\n <item> 2
> >> <tag>no</tag> </item>\\n </one-of>\\n</rule>\\n\" \"inputmodes=\\
> >> \"dtmf\\\" bargein=\\\"false\\\" fetchaudiodelay=\\\"2s\\\"
> >> fetchtimeout=\\\"7s\\\" termchar=\\\"\\\" termtimeout=\\\"0s\\\"
> >> interdigittimeout=\"\n"
> >> 00:21:01:903 DBUG VOICEGLU xen4.tyv callid=[1] New grammar id
> >> 0xb723c650 assigned to previous parse
> >> 00:21:01:903 DBUG VOICEGLU xen4.tyv callid=[1] snd Grammar 0 to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:904 DBUG VOICEGLU xen4.tyv snd "Grammar 0\n" to
> >> ::PERL_VXML_1
> >> 00:21:01:904 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Grammar
> >> 0xb723c650 "text/x-grammar-choice-dtmf" "<rule id=\"choice\">\n
> >> <one-
> >> of>\n <item> 1 <tag>yes</tag> </item>\n <item> 2 <tag>no</tag>
> >> </item>\n </one-of>\n</rule>\n" "inputmodes=\"dtmf\"
> >> bargein=\"false
> >> \" fetchaudiodelay=\"2s\" fetchtimeout=\"7s\" termchar=\"\"
> >> termtimeout=\"0s\" interdigittimeout="
> >> 00:21:01:904 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Grammar 0
> >> 00:21:01:908 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'></speak>\"\n"
> >> 00:21:01:909 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:909 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:909 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:910 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'></speak>, properties={"
> >> absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://
> >> localhost/telepagos/prueba.vxml" " encoding"="iso-8859-1"
> >> "audiofetchhint"="prefetch" "bargein"="false" "bargeintype"="speech"
> >> "confidencelevel"="0.5" "datafetchhint"="prefetch"
> >> "documentfetchhint"="safe" "fetchaudiodelay"="2s"
> >> "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:910 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'></speak>)
> >> 00:21:01:910 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'></speak>"
> >> 00:21:01:910 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:910 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:910 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:911 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'></speak>\"\n"
> >> 00:21:01:911 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:911 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:911 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:912 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'></speak>, properties={"
> >> absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://
> >> localhost/telepagos/prueba.vxml" " encoding"="iso-8859-1"
> >> "audiofetchhint"="prefetch" "bargein"="false" "bargeintype"="speech"
> >> "confidencelevel"="0.5" "datafetchhint"="prefetch"
> >> "documentfetchhint"="safe" "fetchaudiodelay"="2s"
> >> "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:912 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'></speak>)
> >> 00:21:01:912 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'></speak>"
> >> 00:21:01:912 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:912 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:912 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:913 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/card.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">Numero de tarjeta</audio></
> >> speak>, properties={" absoluteURI"="http://localhost/telepagos/
> >> prueba.vxml" " base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:913 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/card.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">Numero de tarjeta</audio></speak>)
> >> 00:21:01:913 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> card.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\
> >> \">Numero de tarjeta</audio></speak>\"\n"
> >> 00:21:01:914 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1000] for play_queued index 0 as: 1000 f url http://
> >> localhost/telepagos/audio/card.wav tts Numero de tarjeta
> >> 00:21:01:914 DBUG VOICEGLU xen4.tyv snd "1000 f url
> >> http://localhost/
> >> telepagos/audio/card.wav tts Numero de tarjeta\n" to ::MAIN_TO_SC
> >> 00:21:01:914 DBUG SNDCACHE xen4.tyv rcv main: "1000 f url http://
> >> localhost/telepagos/audio/card.wav tts Numero de tarjeta\n"
> >> 00:21:01:914 DBUG SNDCACHE xen4.tyv screq=[1000] processing top-of-
> >> queue for url/localhost/telepagos/audio/card.wav
> >> 00:21:01:917 DBUG SNDCACHE xen4.tyv screq=[1000] started
> >> pid=20486 on
> >> url/localhost/telepagos/audio/card.wav as wget -q -N --timeout=10 -x
> >> http://localhost/telepagos/audio/card.wav
> >> 00:21:01:917 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:918 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:918 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:918 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/card.wav\"
> >> fetchtimeout=\"7s
> >> \" fetchhint=\"prefetch\">Numero de tarjeta</audio></speak>"
> >> 00:21:01:918 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:918 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:918 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:919 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 12.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">12</
> >> audio></speak>\"\n"
> >> 00:21:01:919 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1001] for play_queued index 1 as: 1001 f url http://
> >> localhost/telepagos/audio/12.wav tts 12
> >> 00:21:01:920 DBUG VOICEGLU xen4.tyv snd "1001 f url
> >> http://localhost/
> >> telepagos/audio/12.wav tts 12\n" to ::MAIN_TO_SC
> >> 00:21:01:920 DBUG SNDCACHE xen4.tyv rcv main: "1001 f url http://
> >> localhost/telepagos/audio/12.wav tts 12\n"
> >> 00:21:01:920 DBUG SNDCACHE xen4.tyv screq=[1001] processing top-of-
> >> queue for url/localhost/telepagos/audio/12.wav
> >> 00:21:01:925 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:925 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:925 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:926 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/12.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">12</audio></speak>,
> >> properties=
> >> {" absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:926 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/12.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">12</audio></speak>)
> >> 00:21:01:926 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/12.wav\"
> >> fetchtimeout=\"7s\"
> >> fetchhint=\"prefetch\">12</audio></speak>"
> >> 00:21:01:926 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:926 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:926 DBUG SNDCACHE xen4.tyv screq=[1001] started
> >> pid=20487 on
> >> url/localhost/telepagos/audio/12.wav as wget -q -N --timeout=10 -x
> >> http://localhost/telepagos/audio/12.wav
> >> 00:21:01:928 DBUG SNDCACHE xen4.tyv pid=20486 done making url/
> >> localhost/telepagos/audio/card.wav
> >> 00:21:01:928 DBUG SNDCACHE xen4.tyv screq=[1000] processing top-of-
> >> queue for url/localhost/telepagos/audio/card.wav
> >> 00:21:01:928 DBUG SNDCACHE xen4.tyv screq=[1000] result=1 in cache
> >> for url/localhost/telepagos/audio/card.wav
> >> 00:21:01:928 DBUG SNDCACHE xen4.tyv snd "1000 1 voiceglue/url/
> >> localhost/telepagos/audio/card.wav\n" to ::SC_TO_MAIN
> >> 00:21:01:928 DBUG SNDCACHE xen4.tyv pid=20487 done making url/
> >> localhost/telepagos/audio/12.wav
> >> 00:21:01:928 DBUG SNDCACHE xen4.tyv screq=[1001] processing top-of-
> >> queue for url/localhost/telepagos/audio/12.wav
> >> 00:21:01:928 DBUG SNDCACHE xen4.tyv screq=[1001] result=1 in cache
> >> for url/localhost/telepagos/audio/12.wav
> >> 00:21:01:928 DBUG SNDCACHE xen4.tyv snd "1001 1 voiceglue/url/
> >> localhost/telepagos/audio/12.wav\n" to ::SC_TO_MAIN
> >> 00:21:01:928 DBUG SNDCACHE xen4.tyv rcv main: "1002 f url http://
> >> localhost/telepagos/audio/34.wav tts 34\n"
> >> 00:21:01:929 DBUG SNDCACHE xen4.tyv screq=[1002] processing top-of-
> >> queue for url/localhost/telepagos/audio/34.wav
> >> 00:21:01:931 DBUG SNDCACHE xen4.tyv screq=[1002] started
> >> pid=20488 on
> >> url/localhost/telepagos/audio/34.wav as wget -q -N --timeout=10 -x
> >> http://localhost/telepagos/audio/34.wav
> >> 00:21:01:937 DBUG PHONGLUE xen4.tyv rcv ct(::CTCLIENT1): "play 1
> >> \"voiceglue/url/localhost/telepagos/audio/card.wav\" \"\"\n"
> >> 00:21:01:938 DBUG PHONGLUE xen4.tyv callid=[1] parsed play callid=1
> >> files=("voiceglue/url/localhost/telepagos/audio/card.wav")
> >> stopkeys=""
> >> 00:21:01:938 DBUG PHONGLUE xen4.tyv callid=[1] snd PLAYFILE
> >> file="voiceglue/url/localhost/telepagos/audio/card.wav" stopkeys=""
> >> to AGI client on fh="::FASTAGI1" at host=127.0.0.1 callid=[1]
> >> 00:21:01:938 DBUG PHONGLUE xen4.tyv snd "STREAM FILE voiceglue/url/
> >> localhost/telepagos/audio/card \"\"\n" to ::FASTAGI1
> >> 00:21:01:941 DBUG SNDCACHE xen4.tyv pid=20488 done making url/
> >> localhost/telepagos/audio/34.wav
> >> 00:21:01:941 DBUG SNDCACHE xen4.tyv screq=[1002] processing top-of-
> >> queue for url/localhost/telepagos/audio/34.wav
> >> 00:21:01:941 DBUG SNDCACHE xen4.tyv screq=[1002] result=1 in cache
> >> for url/localhost/telepagos/audio/34.wav
> >> 00:21:01:941 DBUG SNDCACHE xen4.tyv snd "1002 1 voiceglue/url/
> >> localhost/telepagos/audio/34.wav\n" to ::SC_TO_MAIN
> >> 00:21:01:942 DBUG SNDCACHE xen4.tyv rcv main: "1003 f url http://
> >> localhost/telepagos/audio/99.wav tts 99\n"
> >> 00:21:01:942 DBUG SNDCACHE xen4.tyv screq=[1003] processing top-of-
> >> queue for url/localhost/telepagos/audio/99.wav
> >> 00:21:01:944 DBUG SNDCACHE xen4.tyv screq=[1003] started
> >> pid=20489 on
> >> url/localhost/telepagos/audio/99.wav as wget -q -N --timeout=10 -x
> >> http://localhost/telepagos/audio/99.wav
> >> 00:21:01:945 DBUG SNDCACHE xen4.tyv rcv main: "1004 f url http://
> >> localhost/telepagos/audio/99.wav tts 99\n"
> >> 00:21:01:945 DBUG SNDCACHE xen4.tyv screq=[1004] processing top-of-
> >> queue for url/localhost/telepagos/audio/99.wav
> >> 00:21:01:945 DBUG SNDCACHE xen4.tyv screq=[1004] awaiting existing
> >> job for url/localhost/telepagos/audio/99.wav
> >> 00:21:01:946 DBUG SNDCACHE xen4.tyv rcv main: "1005 f url http://
> >> localhost/telepagos/audio/90.wav tts 90\n"
> >> 00:21:01:946 DBUG SNDCACHE xen4.tyv screq=[1005] processing top-of-
> >> queue for url/localhost/telepagos/audio/90.wav
> >> 00:21:01:951 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:952 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/34.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">34</audio></speak>,
> >> properties=
> >> {" absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:952 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/34.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">34</audio></speak>)
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 34.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">34</
> >> audio></speak>\"\n"
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1002] for play_queued index 2 as: 1002 f url http://
> >> localhost/telepagos/audio/34.wav tts 34
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv snd "1002 f url
> >> http://localhost/
> >> telepagos/audio/34.wav tts 34\n" to ::MAIN_TO_SC
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:952 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/34.wav\"
> >> fetchtimeout=\"7s\"
> >> fetchhint=\"prefetch\">34</audio></speak>"
> >> 00:21:01:952 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:952 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv rcv sc: "1000 1 voiceglue/url/
> >> localhost/telepagos/audio/card.wav"
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] dpal():
> >> do_prompt_and_listen() called
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): Checking for
> >> prompts
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): Found prompts
> >> to play, playing
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] snd play callid=1
> >> files=("voiceglue/url/localhost/telepagos/audio/card.wav")
> >> stopkeys="" to CT server on fh="::CTSRV" at host=localhost
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv snd "play 1 \"voiceglue/url/
> >> localhost/telepagos/audio/card.wav\" \"\"\n" to ::CTSRV
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv rcv sc: "1001 1 voiceglue/url/
> >> localhost/telepagos/audio/12.wav"
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] dpal():
> >> do_prompt_and_listen() called
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing
> >> play, returning
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 99.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">99</
> >> audio></speak>\"\n"
> >> 00:21:01:952 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1003] for play_queued index 3 as: 1003 f url http://
> >> localhost/telepagos/audio/99.wav tts 99
> >> 00:21:01:953 DBUG VOICEGLU xen4.tyv snd "1003 f url
> >> http://localhost/
> >> telepagos/audio/99.wav tts 99\n" to ::MAIN_TO_SC
> >> 00:21:01:953 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:953 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:953 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/99.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">99</audio></speak>,
> >> properties=
> >> {" absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/99.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">99</audio></speak>)
> >> 00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/99.wav\"
> >> fetchtimeout=\"7s\"
> >> fetchhint=\"prefetch\">99</audio></speak>"
> >> 00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:953 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 99.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">99</
> >> audio></speak>\"\n"
> >> 00:21:01:953 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1004] for play_queued index 4 as: 1004 f url http://
> >> localhost/telepagos/audio/99.wav tts 99
> >> 00:21:01:953 DBUG VOICEGLU xen4.tyv snd "1004 f url
> >> http://localhost/
> >> telepagos/audio/99.wav tts 99\n" to ::MAIN_TO_SC
> >> 00:21:01:953 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:953 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:953 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/99.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">99</audio></speak>,
> >> properties=
> >> {" absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/99.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">99</audio></speak>)
> >> 00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/99.wav\"
> >> fetchtimeout=\"7s\"
> >> fetchhint=\"prefetch\">99</audio></speak>"
> >> 00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:953 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:953 DBUG VOICEGLU xen4.tyv rcv sc: "1002 1 voiceglue/url/
> >> localhost/telepagos/audio/34.wav"
> >> 00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] dpal():
> >> do_prompt_and_listen() called
> >> 00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing
> >> play, returning
> >> 00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 90.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">90</
> >> audio></speak>\"\n"
> >> 00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1005] for play_queued index 5 as: 1005 f url http://
> >> localhost/telepagos/audio/90.wav tts 90
> >> 00:21:01:954 DBUG VOICEGLU xen4.tyv snd "1005 f url
> >> http://localhost/
> >> telepagos/audio/90.wav tts 90\n" to ::MAIN_TO_SC
> >> 00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:954 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/90.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">90</audio></speak>,
> >> properties=
> >> {" absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/90.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">90</audio></speak>)
> >> 00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/90.wav\"
> >> fetchtimeout=\"7s\"
> >> fetchhint=\"prefetch\">90</audio></speak>"
> >> 00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 12.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">12</
> >> audio></speak>\"\n"
> >> 00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1006] for play_queued index 6 as: 1006 f url http://
> >> localhost/telepagos/audio/12.wav tts 12
> >> 00:21:01:954 DBUG VOICEGLU xen4.tyv snd "1006 f url
> >> http://localhost/
> >> telepagos/audio/12.wav tts 12\n" to ::MAIN_TO_SC
> >> 00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:954 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:954 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/12.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">12</audio></speak>,
> >> properties=
> >> {" absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:954 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/12.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">12</audio></speak>)
> >> 00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/12.wav\"
> >> fetchtimeout=\"7s\"
> >> fetchhint=\"prefetch\">12</audio></speak>"
> >> 00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:955 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 34.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">34</
> >> audio></speak>\"\n"
> >> 00:21:01:955 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1007] for play_queued index 7 as: 1007 f url http://
> >> localhost/telepagos/audio/34.wav tts 34
> >> 00:21:01:955 DBUG VOICEGLU xen4.tyv snd "1007 f url
> >> http://localhost/
> >> telepagos/audio/34.wav tts 34\n" to ::MAIN_TO_SC
> >> 00:21:01:955 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:955 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:955 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/34.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">34</audio></speak>,
> >> properties=
> >> {" absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/34.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">34</audio></speak>)
> >> 00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/34.wav\"
> >> fetchtimeout=\"7s\"
> >> fetchhint=\"prefetch\">34</audio></speak>"
> >> 00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:955 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:955 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 5.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">5</
> >> audio></speak>\"\n"
> >> 00:21:01:955 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1008] for play_queued index 8 as: 1008 f url http://
> >> localhost/telepagos/audio/5.wav tts 5
> >> 00:21:01:955 DBUG VOICEGLU xen4.tyv snd "1008 f url
> >> http://localhost/
> >> telepagos/audio/5.wav tts 5\n" to ::MAIN_TO_SC
> >> 00:21:01:955 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:956 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:956 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/5.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">5</audio></speak>,
> >> properties=
> >> {" absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/5.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">5</audio></speak>)
> >> 00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/5.wav\" fetchtimeout=\"7s\"
> >> fetchhint=\"prefetch\">5</audio></speak>"
> >> 00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:956 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> prompt_date.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\
> >> \">Fecha de caducida</audio></speak>\"\n"
> >> 00:21:01:956 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1009] for play_queued index 9 as: 1009 f url http://
> >> localhost/telepagos/audio/prompt_date.wav tts Fecha de caducida
> >> 00:21:01:956 DBUG VOICEGLU xen4.tyv snd "1009 f url
> >> http://localhost/
> >> telepagos/audio/prompt_date.wav tts Fecha de caducida\n" to
> >> ::MAIN_TO_SC
> >> 00:21:01:956 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:956 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:956 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/prompt_date.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">Fecha de caducida</audio></
> >> speak>, properties={" absoluteURI"="http://localhost/telepagos/
> >> prueba.vxml" " base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/prompt_date.wav"
> >> fetchtimeout="7s"
> >> fetchhint="prefetch">Fecha de caducida</audio></speak>)
> >> 00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/prompt_date.wav\"
> >> fetchtimeout=\"7s\" fetchhint=\"prefetch\">Fecha de
> >> caducida</audio></
> >> speak>"
> >> 00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:956 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:956 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 12.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">12</
> >> audio></speak>\"\n"
> >> 00:21:01:957 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1010] for play_queued index 10 as: 1010 f url http://
> >> localhost/telepagos/audio/12.wav tts 12
> >> 00:21:01:957 DBUG VOICEGLU xen4.tyv snd "1010 f url
> >> http://localhost/
> >> telepagos/audio/12.wav tts 12\n" to ::MAIN_TO_SC
> >> 00:21:01:957 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:957 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:957 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:957 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:957 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/12.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">12</audio></speak>,
> >> properties=
> >> {" absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:957 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/12.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">12</audio></speak>)
> >> 00:21:01:957 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/12.wav\"
> >> fetchtimeout=\"7s\"
> >> fetchhint=\"prefetch\">12</audio></speak>"
> >> 00:21:01:957 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:957 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:957 DBUG SNDCACHE xen4.tyv screq=[1005] started
> >> pid=20490 on
> >> url/localhost/telepagos/audio/90.wav as wget -q -N --timeout=10 -x
> >> http://localhost/telepagos/audio/90.wav
> >> 00:21:01:958 DBUG SNDCACHE xen4.tyv pid=20489 done making url/
> >> localhost/telepagos/audio/99.wav
> >> 00:21:01:958 DBUG SNDCACHE xen4.tyv screq=[1003] processing top-of-
> >> queue for url/localhost/telepagos/audio/99.wav
> >> 00:21:01:958 DBUG SNDCACHE xen4.tyv screq=[1003] result=1 in cache
> >> for url/localhost/telepagos/audio/99.wav
> >> 00:21:01:959 DBUG SNDCACHE xen4.tyv snd "1003 1 voiceglue/url/
> >> localhost/telepagos/audio/99.wav\n" to ::SC_TO_MAIN
> >> 00:21:01:959 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 12.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">12</
> >> audio></speak>\"\n"
> >> 00:21:01:959 DBUG SNDCACHE xen4.tyv rcv main: "1006 f url http://
> >> localhost/telepagos/audio/12.wav tts 12\n"
> >> 00:21:01:959 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1011] for play_queued index 11 as: 1011 f url http://
> >> localhost/telepagos/audio/12.wav tts 12
> >> 00:21:01:959 DBUG VOICEGLU xen4.tyv snd "1011 f url
> >> http://localhost/
> >> telepagos/audio/12.wav tts 12\n" to ::MAIN_TO_SC
> >> 00:21:01:960 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:960 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:960 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:960 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:960 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/12.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">12</audio></speak>,
> >> properties=
> >> {" absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:960 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/12.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">12</audio></speak>)
> >> 00:21:01:960 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/12.wav\"
> >> fetchtimeout=\"7s\"
> >> fetchhint=\"prefetch\">12</audio></speak>"
> >> 00:21:01:960 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:960 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:961 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> value.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\
> >> \">Importe</audio></speak>\"\n"
> >> 00:21:01:961 DBUG SNDCACHE xen4.tyv screq=[1006] processing top-of-
> >> queue for url/localhost/telepagos/audio/12.wav
> >> 00:21:01:961 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1012] for play_queued index 12 as: 1012 f url http://
> >> localhost/telepagos/audio/value.wav tts Importe
> >> 00:21:01:961 DBUG SNDCACHE xen4.tyv screq=[1006] result=1 in cache
> >> for url/localhost/telepagos/audio/12.wav
> >> 00:21:01:961 DBUG VOICEGLU xen4.tyv snd "1012 f url
> >> http://localhost/
> >> telepagos/audio/value.wav tts Importe\n" to ::MAIN_TO_SC
> >> 00:21:01:961 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:962 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:962 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:962 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:962 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/value.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">Importe</audio></speak>,
> >> properties={"
> >> absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:962 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/value.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">Importe</audio></speak>)
> >> 00:21:01:962 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/value.wav\"
> >> fetchtimeout=\"7s
> >> \" fetchhint=\"prefetch\">Importe</audio></speak>"
> >> 00:21:01:962 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:962 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:962 DBUG VOICEGLU xen4.tyv rcv sc: "1003 1 voiceglue/url/
> >> localhost/telepagos/audio/99.wav"
> >> 00:21:01:962 DBUG VOICEGLU xen4.tyv callid=[1] dpal():
> >> do_prompt_and_listen() called
> >> 00:21:01:963 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing
> >> play, returning
> >> 00:21:01:963 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 1.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">1</
> >> audio></speak>\"\n"
> >> 00:21:01:963 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1013] for play_queued index 13 as: 1013 f url http://
> >> localhost/telepagos/audio/1.wav tts 1
> >> 00:21:01:963 DBUG SNDCACHE xen4.tyv snd "1006 1 voiceglue/url/
> >> localhost/telepagos/audio/12.wav\n" to ::SC_TO_MAIN
> >> 00:21:01:963 DBUG VOICEGLU xen4.tyv snd "1013 f url
> >> http://localhost/
> >> telepagos/audio/1.wav tts 1\n" to ::MAIN_TO_SC
> >> 00:21:01:963 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:963 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:963 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:964 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:964 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/1.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">1</audio></speak>,
> >> properties=
> >> {" absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:964 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/1.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">1</audio></speak>)
> >> 00:21:01:964 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/1.wav\" fetchtimeout=\"7s\"
> >> fetchhint=\"prefetch\">1</audio></speak>"
> >> 00:21:01:964 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:964 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:964 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:964 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 2.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">2</
> >> audio></speak>\"\n"
> >> 00:21:01:965 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1014] for play_queued index 14 as: 1014 f url http://
> >> localhost/telepagos/audio/2.wav tts 2
> >> 00:21:01:965 DBUG SNDCACHE xen4.tyv rcv main: "1007 f url http://
> >> localhost/telepagos/audio/34.wav tts 34\n"
> >> 00:21:01:965 DBUG VOICEGLU xen4.tyv snd "1014 f url
> >> http://localhost/
> >> telepagos/audio/2.wav tts 2\n" to ::MAIN_TO_SC
> >> 00:21:01:965 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:965 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:965 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:966 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/2.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">2</audio></speak>,
> >> properties=
> >> {" absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:966 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/2.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">2</audio></speak>)
> >> 00:21:01:966 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/2.wav\" fetchtimeout=\"7s\"
> >> fetchhint=\"prefetch\">2</audio></speak>"
> >> 00:21:01:966 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:966 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:966 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:966 DBUG VOICEGLU xen4.tyv rcv sc: "1006 1 voiceglue/url/
> >> localhost/telepagos/audio/12.wav"
> >> 00:21:01:966 DBUG VOICEGLU xen4.tyv callid=[1] dpal():
> >> do_prompt_and_listen() called
> >> 00:21:01:966 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing
> >> play, returning
> >> 00:21:01:966 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 0.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">0</
> >> audio></speak>\"\n"
> >> 00:21:01:967 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1015] for play_queued index 15 as: 1015 f url http://
> >> localhost/telepagos/audio/0.wav tts 0
> >> 00:21:01:967 DBUG SNDCACHE xen4.tyv screq=[1007] processing top-of-
> >> queue for url/localhost/telepagos/audio/34.wav
> >> 00:21:01:967 DBUG SNDCACHE xen4.tyv screq=[1007] result=1 in cache
> >> for url/localhost/telepagos/audio/34.wav
> >> 00:21:01:967 DBUG SNDCACHE xen4.tyv snd "1007 1 voiceglue/url/
> >> localhost/telepagos/audio/34.wav\n" to ::SC_TO_MAIN
> >> 00:21:01:967 DBUG SNDCACHE xen4.tyv rcv main: "1008 f url http://
> >> localhost/telepagos/audio/5.wav tts 5\n"
> >> 00:21:01:967 DBUG SNDCACHE xen4.tyv screq=[1008] processing top-of-
> >> queue for url/localhost/telepagos/audio/5.wav
> >> 00:21:01:968 DBUG VOICEGLU xen4.tyv snd "1015 f url
> >> http://localhost/
> >> telepagos/audio/0.wav tts 0\n" to ::MAIN_TO_SC
> >> 00:21:01:968 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:968 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:969 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:969 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/0.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">0</audio></speak>,
> >> properties=
> >> {" absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:969 DBUG SNDCACHE xen4.tyv screq=[1008] started
> >> pid=20491 on
> >> url/localhost/telepagos/audio/5.wav as wget -q -N --timeout=10 -x
> >> http://localhost/telepagos/audio/5.wav
> >> 00:21:01:969 DBUG SNDCACHE xen4.tyv rcv main: "1009 f url http://
> >> localhost/telepagos/audio/prompt_date.wav tts Fecha de caducida\n"
> >> 00:21:01:970 DBUG SNDCACHE xen4.tyv screq=[1009] processing top-of-
> >> queue for url/localhost/telepagos/audio/prompt_date.wav
> >> 00:21:01:970 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/0.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">0</audio></speak>)
> >> 00:21:01:970 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/0.wav\" fetchtimeout=\"7s\"
> >> fetchhint=\"prefetch\">0</audio></speak>"
> >> 00:21:01:971 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:971 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:971 DBUG VOICEGLU xen4.tyv rcv sc: "1007 1 voiceglue/url/
> >> localhost/telepagos/audio/34.wav"
> >> 00:21:01:971 DBUG VOICEGLU xen4.tyv callid=[1] dpal():
> >> do_prompt_and_listen() called
> >> 00:21:01:971 DBUG SNDCACHE xen4.tyv screq=[1009] started
> >> pid=20492 on
> >> url/localhost/telepagos/audio/prompt_date.wav as wget -q -N --
> >> timeout=10 -x http://localhost/telepagos/audio/prompt_date.wav
> >> 00:21:01:972 DBUG SNDCACHE xen4.tyv rcv main: "1010 f url http://
> >> localhost/telepagos/audio/12.wav tts 12\n"
> >> 00:21:01:972 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing
> >> play, returning
> >> 00:21:01:972 DBUG SNDCACHE xen4.tyv screq=[1010] processing top-of-
> >> queue for url/localhost/telepagos/audio/12.wav
> >> 00:21:01:972 DBUG SNDCACHE xen4.tyv screq=[1010] result=1 in cache
> >> for url/localhost/telepagos/audio/12.wav
> >> 00:21:01:972 DBUG SNDCACHE xen4.tyv snd "1010 1 voiceglue/url/
> >> localhost/telepagos/audio/12.wav\n" to ::SC_TO_MAIN
> >> 00:21:01:973 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:973 DBUG SNDCACHE xen4.tyv rcv main: "1011 f url http://
> >> localhost/telepagos/audio/12.wav tts 12\n"
> >> 00:21:01:973 DBUG SNDCACHE xen4.tyv screq=[1011] processing top-of-
> >> queue for url/localhost/telepagos/audio/12.wav
> >> 00:21:01:973 DBUG SNDCACHE xen4.tyv screq=[1011] result=1 in cache
> >> for url/localhost/telepagos/audio/12.wav
> >> 00:21:01:973 DBUG SNDCACHE xen4.tyv snd "1011 1 voiceglue/url/
> >> localhost/telepagos/audio/12.wav\n" to ::SC_TO_MAIN
> >> 00:21:01:973 DBUG SNDCACHE xen4.tyv rcv main: "1012 f url http://
> >> localhost/telepagos/audio/value.wav tts Importe\n"
> >> 00:21:01:973 DBUG SNDCACHE xen4.tyv screq=[1012] processing top-of-
> >> queue for url/localhost/telepagos/audio/value.wav
> >> 00:21:01:974 DBUG VOICEGLU xen4.tyv rcv sc: "1010 1 voiceglue/url/
> >> localhost/telepagos/audio/12.wav"
> >> 00:21:01:974 DBUG VOICEGLU xen4.tyv callid=[1] dpal():
> >> do_prompt_and_listen() called
> >> 00:21:01:975 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing
> >> play, returning
> >> 00:21:01:975 DBUG SNDCACHE xen4.tyv screq=[1012] started
> >> pid=20493 on
> >> url/localhost/telepagos/audio/value.wav as wget -q -N
> >> --timeout=10 -x
> >> http://localhost/telepagos/audio/value.wav
> >> 00:21:01:976 DBUG SNDCACHE xen4.tyv rcv main: "1013 f url http://
> >> localhost/telepagos/audio/1.wav tts 1\n"
> >> 00:21:01:976 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 1.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">0</
> >> audio></speak>\"\n"
> >> 00:21:01:976 DBUG SNDCACHE xen4.tyv screq=[1013] processing top-of-
> >> queue for url/localhost/telepagos/audio/1.wav
> >> 00:21:01:977 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1016] for play_queued index 16 as: 1016 f url http://
> >> localhost/telepagos/audio/1.wav tts 0
> >> 00:21:01:977 DBUG VOICEGLU xen4.tyv snd "1016 f url
> >> http://localhost/
> >> telepagos/audio/1.wav tts 0\n" to ::MAIN_TO_SC
> >> 00:21:01:977 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:978 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:978 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:978 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/1.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">0</audio></speak>,
> >> properties=
> >> {" absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:979 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/1.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">0</audio></speak>)
> >> 00:21:01:979 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/1.wav\" fetchtimeout=\"7s\"
> >> fetchhint=\"prefetch\">0</audio></speak>"
> >> 00:21:01:979 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:979 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:980 DBUG VOICEGLU xen4.tyv rcv sc: "1011 1 voiceglue/url/
> >> localhost/telepagos/audio/12.wav"
> >> 00:21:01:980 DBUG VOICEGLU xen4.tyv callid=[1] dpal():
> >> do_prompt_and_listen() called
> >> 00:21:01:980 DBUG VOICEGLU xen4.tyv callid=[1] dpal(): satc_doing
> >> play, returning
> >> 00:21:01:981 DBUG SNDCACHE xen4.tyv screq=[1013] started
> >> pid=20494 on
> >> url/localhost/telepagos/audio/1.wav as wget -q -N --timeout=10 -x
> >> http://localhost/telepagos/audio/1.wav
> >> 00:21:01:981 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:981 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> currency.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\
> >> \">euros</audio></speak>\"\n"
> >> 00:21:01:982 DBUG SNDCACHE xen4.tyv rcv main: "1014 f url http://
> >> localhost/telepagos/audio/2.wav tts 2\n"
> >> 00:21:01:982 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1017] for play_queued index 17 as: 1017 f url http://
> >> localhost/telepagos/audio/currency.wav tts euros
> >> 00:21:01:982 DBUG VOICEGLU xen4.tyv snd "1017 f url
> >> http://localhost/
> >> telepagos/audio/currency.wav tts euros\n" to ::MAIN_TO_SC
> >> 00:21:01:982 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:982 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:983 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:983 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/currency.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">euros</audio></speak>,
> >> properties={"
> >> absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:983 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/currency.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">euros</audio></speak>)
> >> 00:21:01:983 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/currency.wav\"
> >> fetchtimeout=
> >> \"7s\" fetchhint=\"prefetch\">euros</audio></speak>"
> >> 00:21:01:983 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:983 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:983 DBUG SNDCACHE xen4.tyv screq=[1014] processing top-of-
> >> queue for url/localhost/telepagos/audio/2.wav
> >> 00:21:01:986 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:986 DBUG SNDCACHE xen4.tyv screq=[1014] started
> >> pid=20495 on
> >> url/localhost/telepagos/audio/2.wav as wget -q -N --timeout=10 -x
> >> http://localhost/telepagos/audio/2.wav
> >> 00:21:01:987 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 1.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">1</
> >> audio></speak>\"\n"
> >> 00:21:01:987 DBUG SNDCACHE xen4.tyv rcv main: "1015 f url http://
> >> localhost/telepagos/audio/0.wav tts 0\n"
> >> 00:21:01:987 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1018] for play_queued index 18 as: 1018 f url http://
> >> localhost/telepagos/audio/1.wav tts 1
> >> 00:21:01:987 DBUG VOICEGLU xen4.tyv snd "1018 f url
> >> http://localhost/
> >> telepagos/audio/1.wav tts 1\n" to ::MAIN_TO_SC
> >> 00:21:01:987 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:987 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:988 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:988 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/1.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">1</audio></speak>,
> >> properties=
> >> {" absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:988 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/1.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">1</audio></speak>)
> >> 00:21:01:988 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/1.wav\" fetchtimeout=\"7s\"
> >> fetchhint=\"prefetch\">1</audio></speak>"
> >> 00:21:01:988 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:988 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:988 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:989 DBUG SNDCACHE xen4.tyv screq=[1015] processing top-of-
> >> queue for url/localhost/telepagos/audio/0.wav
> >> 00:21:01:989 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 2.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">2</
> >> audio></speak>\"\n"
> >> 00:21:01:989 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1019] for play_queued index 19 as: 1019 f url http://
> >> localhost/telepagos/audio/2.wav tts 2
> >> 00:21:01:989 DBUG VOICEGLU xen4.tyv snd "1019 f url
> >> http://localhost/
> >> telepagos/audio/2.wav tts 2\n" to ::MAIN_TO_SC
> >> 00:21:01:989 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:990 DBUG VOICEGLU xen4.tyv callid=[1] snd Played to VXML
> >> interpreter on fh="::PERL_VXML_1" at host=localhost callid=[1]
> >> 00:21:01:990 DBUG VOICEGLU xen4.tyv snd "Played\n" to ::PERL_VXML_1
> >> 00:21:01:990 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue called
> >> with spec=<?xml version='1.0'?><speak version='1.0' xmlns='http://
> >> www.w3.org/2001/10/synthesis
> >> <http://www.w3.org/2001/10/synthesis>'
> >> xml:base='http://localhost/telepagos/
> >> prueba.vxml' xml:lang='es-ES'><audio src="audio/2.wav"
> >> fetchtimeout="7s" fetchhint="prefetch">2</audio></speak>,
> >> properties=
> >> {" absoluteURI"="http://localhost/telepagos/prueba.vxml" "
> >> base"="http://localhost/telepagos/prueba.vxml" "
> >> encoding"="iso-8859-1" "audiofetchhint"="prefetch" "bargein"="false"
> >> "bargeintype"="speech" "confidencelevel"="0.5"
> >> "datafetchhint"="prefetch" "documentfetchhint"="safe"
> >> "fetchaudiodelay"="2s" "fetchaudiominimum"="5s" "fetchtimeout"="7s"
> >> "grammarfetchhint"="prefetch" "inet.urlBase"="http://localhost/
> >> telepagos/prueba.vxml" "inputmodes"="dtmf" "maxnbest"="1"
> >> "objectfetchhint"="prefetch" "scriptfetchhint"="prefetch"
> >> "sensitivity"="0.5" "speedvsaccuracy"="0.5"
> >> "swirec_extra_nbest_keys"="" "termchar"="" "termtimeout"="0s"
> >> "universals"="none"}
> >> 00:21:01:990 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptQueue (<?xml
> >> version='1.0'?><speak version='1.0'
> >> xmlns='http://www.w3.org/2001/10/
> >> synthesis' xml:base='http://localhost/telepagos/prueba.vxml'
> >> xml:lang='es-ES'><audio src="audio/2.wav" fetchtimeout="7s"
> >> fetchhint="prefetch">2</audio></speak>)
> >> 00:21:01:990 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Queue "<?xml
> >> version=\'1.0\'?><speak version=\'1.0\' xmlns=\'http://www.w3.org/
> >> 2001/10/synthesis\'
> >> xml:base=\'http://localhost/telepagos/prueba.vxml
> >> \' xml:lang=\'es-ES\'><audio src=\"audio/2.wav\" fetchtimeout=\"7s\"
> >> fetchhint=\"prefetch\">2</audio></speak>"
> >> 00:21:01:990 DBUG OPEN_VXI xen4.tyv callid=[1] VXIpromptPlay()
> >> 00:21:01:990 DBUG OPEN_VXI xen4.tyv callid=[1] snd vg: Play
> >> 00:21:01:990 DBUG OPEN_VXI xen4.tyv callid=[1] rcv vg: Played
> >> 00:21:01:991 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Queue \"<?
> >> xml version=\\\'1.0\\\'?><speak version=\\\'1.0\\\'
> >> xmlns=\\\'http://
> >> www.w3.org/2001/10/synthesis\\\<http://www.w3.org/2001/10/synthesis%5C%5C%5C>
> >> <http://www.w3.org/2001/10/synthesis%5C%5C%5C>'
> >> xml:base=\\\'http://localhost/
> >> telepagos/prueba.vxml\\\' xml:lang=\\\'es-ES\\\'><audio
> >> src=\\\"audio/
> >> 3.wav\\\" fetchtimeout=\\\"7s\\\" fetchhint=\\\"prefetch\\\">3</
> >> audio></speak>\"\n"
> >> 00:21:01:991 DBUG VOICEGLU xen4.tyv callid=[1] made sound cache
> >> request screq=[1020] for play_queued index 20 as: 1020 f url http://
> >> localhost/telepagos/audio/3.wav tts 3
> >> 00:21:01:991 DBUG VOICEGLU xen4.tyv snd "1020 f url
> >> http://localhost/
> >> telepagos/audio/3.wav tts 3\n" to ::MAIN_TO_SC
> >> 00:21:01:991 DBUG VOICEGLU xen4.tyv callid=[1] rcv ovxi: "Play\n"
> >> 00:21:01:991 DBUG...
>
> [Message clipped]
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.voiceglue.org/pipermail/voiceglue/attachments/20090221/fedaa9c4/attachment-0001.html
More information about the Voiceglue
mailing list