search for: celebridades

Displaying 9 results from an estimated 9 matches for "celebridades".

2009 Apr 23
3
Record in mp3
Somebody knows if I can save files in mp3 with the Record command on Asterisk? I try to recompile sox to suport mp3 but Asterisk return the folowing message when I use the Record command: - Executing [*40 at liberado15:15] Record("SIP/1201-083453c8", "/var/spool/asterisk/alarme/alarme-1201-200905121212:mp3") in new stack ??? -- <SIP/1201-083453c8> Playing 'beep'
2010 Apr 01
2
canary_thread
People, Anybody knows what mean this message in my CLI: [Apr 1 16:58:34] WARNING[3845]: asterisk.c:3050 canary_thread: The canary is no more. He has ceased to be! He's expired and gone to meet his maker! He's a stiff! Bereft of life, he rests in peace. His metabolic processes are now history! He's off the twig! He's kicked the bucket. He's shuffled off his mortal
2009 Apr 27
3
Diference between volume of mp3 and wav files
Hi, I have some files in mp3 in my Asterisk but when I play it the volume is lo= wer than wav files. Both the files (wav and mp3) are encoded with the same = amplitude. In anothers players the audio volume of these files are equal. Can I fix this diference between volume of mp3 and wav file? Thanks Veja quais s?o os assuntos do momento no Yahoo! +Buscados http://br.maisbuscados.yahoo.com
2010 Feb 02
1
# as dial key - chan_dahdi
Hi, Can I set up '#' as dial key using the extensions fxs? I use chan_dahdi, and a TDM400P card. I'm testing and, nothing happens when I press #. thanks. -- Marcus ____________________________________________________________________________________ Veja quais s?o os assuntos do momento no Yahoo! +Buscados http://br.maisbuscados.yahoo.com -------------- next part
2010 Apr 15
1
How can I record the conversations in a conference call?
Hello, I wanna record the conversations in a conference call, anyone know how can I do it? I've already configurated a room on meetme.conf but I don't know as I can record the conversations. I'm using SUSE 11 and Asterisk 1.6.2. Thank you so much for help me. Bye ____________________________________________________________________________________ Veja quais s?o os
2010 Feb 24
2
Problems with Linksys IP Phone SPA 942
Hi people, I'm having problems of connection with a Linksys SPA IP PHONE 942 when I use the WAN port, most of the time when I try to connect to the network or restart the IP Phone I can't get internet connectivity . I tried using both static IP and DHCP, but the problem is the same. Some have had similar problem with this brand of IP Phone? Thanks for the help and attention. Hugs
2005 Jul 02
3
plot question
dear list: in the following plot: plot(rnorm(10),rnorm(10),xlab="year",ylab=expression (paste('M x'*10^{3},)),font.lab=2) font.lab=2, but xlab and ylab are different. I want both labels in the same way. help? a.d. ------------------------------------------------- Email Enviado utilizando o servi佺o MegaMail
2005 Jun 17
1
aggregate?
Dear all: Here is my problem: Example data: dat<-data.frame(x=rep(c("a","b","c","d"),2),y=c(10:17)) If I wanted to aggregate each level of column dat$x I could use: aggregate(dat$y,list(x=dat$x),sum) But I just want to aggregate two levels (c and d) to obtain a new level e I am expecting something like: x y 1 a 10 2 b 11 3 e 25 4 a 14 5 b 15 6
2005 Jun 27
2
simplifying the code
dear list: I need help to achieve a simpler code to complete a task I'm performing. here is an example: dat<-expand.grid(a=seq(1,5),b=seq(1000,1005)) I want to add a new column dat$c in that: t1<-ifelse(dat$a==1&dat$b==1001,1001,0) t2<-ifelse(dat$a==2&dat$b==1002,1001,0) t3<-ifelse(dat$a==3&dat$b==1003,1001,0) t4<-ifelse(dat$a==1&dat$b==1002,1002,0)