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