similar to: System Application, Fail/Timeout Issue

Displaying 20 results from an estimated 400 matches similar to: "System Application, Fail/Timeout Issue"

2003 Dec 18
11
Sphinx
Hi. I just started trying to play with Sphinx. I followed their site as far as running sphinx-server. It is listening on the default port. I copied sphinx2-simple to another file and changed sphinx2-continuous to sphinx2-server. So, I ran eagi-sphinx-test under asterisk. What exactly is it supposted to do? Here's what I get: debian:~# sphinx2-simple2 sphinx2-simple: Demo CMU Sphinx2
2007 Aug 04
2
text2wave Voices Improvements?
I currently have an AGI that calls the Festival text2wave app to write a wav file that my dialplan plays into a call with the Background() command. But the voice sounds terrible: like SAM, the 1980s 6502 voice synthesizer. I tried to slow it down by calling (text2wav -eval "(Parameter.set 'Duration_Stretch 1.4)" -scale 2.0 [...]), but it still sounds like it's talking while
2006 Apr 26
6
Sphinx2
I have a gateway, which I call from my mobile phone (free of charge, since it is the same phone company). This gateway gives me a dial tone. I can than dial to any extension number or even other gateways, .... It is getting more a trouble to remember all the numbers, or to key in all the long phone numbers when you got the dialtone. I was thinking of using for this Sphinx2. How can I
2006 Dec 22
2
System Application with java
Hi, I created a script named example2.sh which goal is read some text from my HP Service Desk using an application in java and send this text to the text2wave application for TTS. example2.sh java -Xbatch Example10 | text2wave -f 8000 -o /var/lib/asterisk/sounds/my-sd.wav When I execute the script in prompt, everything is ok, but when I use the system() command in my extensions.conf it isn?t
2004 Oct 06
1
Problem on getting wav file out of Festival-text2wave utility ?
Hi, I'm banging my head with Perl AGI script to produce wav file to be streamed with Festival's text2wave utility. I have two lines of code: ------------------------------------ system('echo "' . $text . '" | text2wave -scale 1.5 -F 8000 -o ' . $filename . ' - '); system('echo "' . $text . '" | text2wave -eval
2008 Jun 17
7
Accessing member server prompts for credentials
Hi, I'm trying to join a server as an AD member but it isn't working. I do: kinit ADMINISTRATOR@DOMAIN1.CO.UK which prompts for the password and displays nothing else. Then I do: net ads join -U Administrator%XXXXX which returns: Using short domain name -- DOMAIN1 Joined 'SERVER1' to realm 'DOMAIN1.CO.UK' So all looks OK, but when I try to browse the shares on
2010 Oct 27
1
deliver + quota
Hi list, can someone please explain me the following behaviour of deliver in combination with fs-quota and reading from stdin: > # repquota -a | grep ud_3p5 > ud_3p5 -- 4464 10240 12288 10 0 0 > # stat -c "%s" /tmp/mymail > 4524853 so there's enough space for this mail > # su ud_3p5 -s/bin/sh -c "cat /tmp/mymail |
2008 Jul 30
2
FFT - (STATS) - is this correct?
Hello, I have calculated the fourier transform of the series enclosed at the end of this message, by doing: library(stats) x <- readLines("file1.txt") x.num <- as.numeric(x) ft.x.num <- fft(x.num) My question is: why is the first value (Real) of ft.x.num that big? (954.833870) all the other values are much smaller. Am I doing something wrong? Could you please help me to
2010 Sep 22
1
include configuration file
Are people using the icecast official source or the updated version by KH? http://www.xiphicecast.webspace.virginmedia.com/ I think that version has a lot of fixes and added stability... can we merge it back in with the main source? Sorry for my English On Wed, Sep 22, 2010 at 1:04 AM, Petr Pisar <petr.pisar at atlas.cz> wrote: > On Wed, Sep 22, 2010 at 09:23:02AM +0400, ???????
2007 Oct 26
2
help regarding <voice to text>
Hi, I am need of "voice to text" converter for one of my project. I need to use it on Linux OS. I got "text2wave" converter but didnt find any "wave2text" equivalent. Then I saw "speexenc" and "speexdec" on linux. It basically does encoding and decoding the the WAV file. Thus I wanted to know if I can use these utilities to convert a WAV file
2008 Jul 30
6
Need help
Hello, Can someone help me to understand the meaning of the following R line? list(fk5 ~ .) Thanks, Renata ----------------------------------------- Email sent from www.virginmedia.com/email Virus-checked using McAfee(R) Software and scanned for spam
2006 Apr 21
0
problem with sphinx2
Hi all I install sphinx2 successfully but when i execute sphinx2-server, i have the error below: ad_oss.c(105): Failed to open audio device(/dev/dsp): No such device FATAL_ERROR: "server.c", line 476: ad_open() failed What's the matter? I also want to know how i can do in Asterisk to use the sphinx server.Must i write entirely an eagi script? And when it's wrote, which
2006 Mar 09
5
Festival tts
Hi I have installed Festival on the same box as asterisk and followed the instructions to integrate it with asterisk. Festival seems to work fine on its own performing text to speech from the command line or via a file. Asterisk answers the call but there is no speech. I can see no errors in the Festival log file The asterisk console shows --Executing Answer("SIP/81801-c091",
2014 May 20
0
Ogg Flac padding
A program to do something I don't think can be done? Tricky. How about some examples of files that show problems? Here is a basic OggFlac track, as produced by the standard flac encoder. It has a vorbis comment packet, a seektable packet, and a padding packet and works fine. Note that each packet is on a separate Ogg page. http://www.nartowicz.webspace.virginmedia.com/oggflac/01.oga
2003 Dec 18
0
Re: Sphinx (Karl Putland)
On Thu, 2003-12-18 at 15:40, Kevin Bockman wrote: >> Hi. I just started trying to play with Sphinx. I followed their site as far as running sphinx-server. It is listening on the default port. I copied sphinx2-simple to another file and changed sphinx2-continuous to sphinx2-server. >> >> So, I ran eagi-sphinx-test under asterisk. What exactly is it supposted to do?
2014 Sep 05
1
[PATCH 3/3] virtio_ring: unify direct/indirect code paths.
Il 03/09/2014 06:29, Rusty Russell ha scritto: > + desc = kmalloc(total_sg * sizeof(struct vring_desc), gfp); > + if (!desc) > + return NULL; > > - return head; > + for (i = 0; i < total_sg; i++) > + desc[i].next = i+1; > + return desc; > } Would it make sense to keep a cache of a few (say) 8- or 16-element indirect descriptors? You'd only have to do this
2014 Sep 05
1
[PATCH 3/3] virtio_ring: unify direct/indirect code paths.
Il 03/09/2014 06:29, Rusty Russell ha scritto: > + desc = kmalloc(total_sg * sizeof(struct vring_desc), gfp); > + if (!desc) > + return NULL; > > - return head; > + for (i = 0; i < total_sg; i++) > + desc[i].next = i+1; > + return desc; > } Would it make sense to keep a cache of a few (say) 8- or 16-element indirect descriptors? You'd only have to do this
2017 Nov 28
7
[Bug 103946] New: Slowish and rough graphical interface with GTX 1060
https://bugs.freedesktop.org/show_bug.cgi?id=103946 Bug ID: 103946 Summary: [nouveau] Slowish and rough graphical interface with GTX 1060 Product: xorg Version: unspecified Hardware: Other OS: All Status: NEW Severity: normal Priority: medium Component:
2003 Nov 04
1
Demo Weather Report AGI v2.0
Some of you may know me as ManxPower from #Asterisk at irc.freenode.,net I've posted my demp weather report Asterisk AGI script at http://www.fnords.org/~eric/asterisk/downloads/ I have no affiliation with Cepstral. Below is the README: Contact: Eric Wieling <eric@fnords.org> If you want a demo of this AGI script you may call via IAXtel 1-700-923-3645 extension 2101. Option 23 is
2017 Aug 19
1
Issues of R_pretty in src/appl/pretty.c
Yes, they work now. I mentioned them partly because the commit description said overflow for large n and partly to be considered for regression tests. -------------------------------------------- On Sat, 19/8/17, Martin Maechler <maechler at stat.math.ethz.ch> wrote: Subject: Re: [Rd] Issues of R_pretty in src/appl/pretty.c Cc: r-devel at r-project.org Date: Saturday, 19 August, 2017,