Displaying 20 results from an estimated 1000 matches similar to: "Asterisk with SourdCard"
2005 Sep 17
22
AstriCon 2006 Location
The best place for Astri Con 2006 would definatly be
Omaha, Nebraska! ;) very central
...ah one could hope.
__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com
2006 Mar 27
3
Config File Management
I'm curious (ok, well I admit it - it's for perosnal gain) what methods people are using to manage asterisk config files when they have multiple asterisk systems?
Some sort of revision control such as cvs,rcs or subversion?
A central 'config server' where you edit the files and then rsync them out?
I have 5 systems to manage, and it seems that about the only common file is
2007 Dec 06
3
asterisk performance
Hi all,
We are using
- a dell sc440(Single dual-core intel xeon 3040, 1.86GHz,1066MHz front size bus 2MB cache) as the asterisk server
- dell 400sc(Intel P4) as a SER server
- digium isdn card, TE120P at Asterisk server
- Bandwidth: 2Mbps/512kbps
All SIP Phones are registered to SER server, and SER will route all outgoing calls to Asterisk server. My problem is the sound quality goes down if
2012 Apr 10
3
How to get the SS and MS from oneway.test?
Hello everyone:
I'm a new member of this group.
I have a question about "oneway.test".
When I use "anova(lm(....))" to analysis the
ANOVA,
I can get the information about Sum Sq and Mean
Sq.
(The R code and the results are as follows.)
2007 Jan 09
5
a question of substitute
Hi all,
I want to write a wrapper for an analysis of variance and I face a curious
problem. Here are two different wrappers:
fun.1 <- function(formula) {
summary(aov(formula))
}
fun.2 <- function(formula) {
oneway.test(formula)
}
values <- c(15, 8, 17, 7, 26, 12, 8, 11, 16, 9, 16,
24, 20, 19, 9, 17, 11, 8, 15, 6, 14)
group <- rep(1:3, each=7)
# While the first
2006 Feb 03
2
Events when the target of the call answer
Hi Group, I am sending my question again why I don't have answer yet:
I am developing a application, this use "Manager API" to connect with
Asterisk. But when I call to an external number (over a zap channel), I
don't receive any event when the target answer, Who can help me?, Which
event notify me that the phone call was answered?
Thank you.
Ezequiel
-------------- next
2005 Mar 12
1
RE: Asterisk-Users Digest, Vol 8, Issue 88
These allow and disallow work with NuFone for me
disallow=all
allow=ulaw
allow=alaw
allow=gsm
Jeff
Message: 11
Date: Fri, 11 Mar 2005 11:15:51 +0100
From: "Edward Banfa" <edward@radform.com>
Subject: [Asterisk-Users] NuFone Configuration [problem]
To: "'Asterisk Users Mailing List - Non-Commercial Discussion'"
<asterisk-users@lists.digium.com>
2005 Feb 04
9
callback on busy
Hello everybody,
I would like to implement "callback" function.
When I call a person and his extension is busy I can press, for example, 5
and get a callback when his phone is not busy anymore.
When I create a call file and copy it to spool call folder
asterisk makes a call. One problem is that when extension is still busy
my phone rings and I get busy tone of the person who I am
2008 Mar 15
1
Anova
Hi all,
I apologize for what might be a silly question.
I am interested in doing a one way anova.
This is not too hard in and of itself, either with anova, aov or oneway.test
.
However, I need to
1) get pvalues,
2) do a posthoc analysis with Tukey HSD,
3) and have (sometimes) an unbalanced design.
I just can't seem to put all the pieces together.
Any suggestions?
Thanks in advance,
Dan.
2011 Apr 21
1
one-way ANOVA model, with one factor, an unbalanced design and unequal variances
Hi,
i'm looking for an R function to fit a one-way ANOVA with one factor
containing 10 levels. The factor levels have different numbers of
observations (varying between 20 to 40). For most of the dependent variables
i'm testing there are unequal variances among the factor levels.
I see the function oneway.test:
oneway.test(variable ~ factor, data=dataset)
which by default does not
2018 Jan 16
1
Letters group Games-Howell post hoc in R
Hello everybody,
I use the sweetpotato database included in R package:
data(sweetpotato) This dataset contains two variables: yield(continous
variable) and virus(factor variable).
Due to Levene test is significant I cannot assume homogeneity of variances
and I apply Welch test in R instead of one-way ANOVA followed by Tukey
posthoc.
Nevertheless, the problems come from when I apply posthoc
2010 Mar 09
3
Help with ANOVA in R
Hi
I am attempting Anova analysis to compare results from four groups
(Samp1-4) which are lists of intensities from the experiment. I am
doing this by first creating a structured list of the data and then
conducting the ANOVA (Script provided below). Im an R beginner so am
not sure if I am using this correctly. Two major questions I have are:
1)
Is using the code (zzz.aov <- aov(Intensity ~
2012 Nov 29
2
Analysis of Variance
Hi, I am encountering a difficulty I don't understand. Be patient, I'm very
new to analysis of variance.
If I load this data:
example12_7=read.table("http://msemac.redwoods.edu/~darnold/math15/data/chapter12/example12_7.dat",header=TRUE)
The run the oneway.test:
oneway.test(time~drug,data=example12_7,var.equal=TRUE)
I get these results:
data: time and drug
F = 4.1881, num
2009 Jul 09
2
plm Issues
Hi List
I'm having difficulty understanding how plm should work with dynamic
formulas. See the commands and output below on a standard data set. Notice
that the first summary(plm(...)) call returns the same result as the second
(it shouldn't if it actually uses the lagged variable requested). The third
call results in error (trying to use diff'ed variable in regression)
Other info:
2009 Oct 27
5
Software for PC-PC voice comunication
I just installed an Asterisknow server
can someone suggest a software to be used for a PC - PC voice comunication
to test in easy way the functionalities of my server.
Thanks in advance for the help
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20091027/bb5e7b1a/attachment.htm
2004 Nov 22
1
Left justification af dimnames in tables.
Hi helpeRs.
When I do two-ways tables dimnames in columns are almost left-adjusted:
<- factor(rbinom(30,1,.3),labels=c("first","second"))
> b <- a
> table(a,b)
b
a first second
first 21 0
second 0 9
If I do a oneway table however, dimnames are right-adjusted:
table(a)
a
first second
21 9
Actually I must admit I
2006 Jan 05
1
ChanSpy via external application
Hi,
I have developped an application that monitors the status of my queues through the events triggered on the Manager Interface.
This way, I can know the status of my Agent real time.
Now, I have a new requirement that I must allow a manager to click on the Agent he wants to monitor and be able to monitor the call.
My idea was to, when the user clicks on the Agent, I would Originate a call
2002 Nov 14
5
navigation problems
I am trying to move from MS Windows (of which I am a std user) to Linux and, 10 days ago, I installed Mandrake 9.0, everything is OK except for WEB navigation: even if surely connected, I cannot navigate and the browser answer is always:...host unknown..
Apparently the problem is the firewall (Shorewall) installed by default that rejects all comunication, infact looking in the Firewall settings
2006 Feb 03
4
CallerID popup
Hi,
I'm trying to write a small Visual Basic app to throw a popup with
CallerIDNum when a call center agent answers a queue call.
Does anyone know what is the right manager event to intercept?
Thanks
Mimmus
2006 Oct 19
3
say Asterisk to answer
Hi list,
I have 2 softphones, 1 Idefisk (IAX), 1 Xlite (SIP) registered to Asterisk.
One call the other-one, is it possible to order Asterisk to force answering
the call ? i.e. Xlite call Idefisk, Idefisk is ringing, I send a command to
Asterisk which force answer, so Idefisk answer the call without clicking on
"Accept" button.
Greg
-------------- next part --------------
An