Displaying 20 results from an estimated 2000 matches similar to: "JITTERBUFFER function"
2015 Jan 30
2
JITTERBUFFER function
WTF is a jitterbuffer?
Sent from my Verizon Wireless 4G LTE smartphone
-------- Original message --------
From: Matthew Jordan <mjordan at digium.com>
Date: 01/29/2015 10:41 AM (GMT-05:00)
To: Asterisk Users Mailing List - Non-Commercial Discussion <asterisk-users at lists.digium.com>
Subject: Re: [asterisk-users] JITTERBUFFER function
On Thu, Jan 29, 2015 at 4:56 AM,
2015 Jan 29
1
JITTERBUFFER function
> > 1. Do I need to activate jbenable in sip.conf? Or is it enough to
call
> > the JITTERBUFFER function?
>
> You only need to use the JITTERBUFFER function.
>
> The jbenable option will enable a jitter buffer on every channel
> created for that peer (or, if global, for every peer in the system).
> Depending on the version of Asterisk, it will also place the
2015 Jan 29
0
JITTERBUFFER function
On Thu, Jan 29, 2015 at 4:56 AM, Torbjorn Abrahamsson
<torbjorn.abrahamsson at gmail.com> wrote:
> Hello!
>
>
>
> I am going to use the JITTERBUFFER function in a SIP (and local channels)
> only setup, but have some questions of how to use it:
>
>
>
> 1. Do I need to activate jbenable in sip.conf? Or is it enough to call
> the JITTERBUFFER function?
2009 May 21
2
Jitter buffer question
Hi List,
I have a question regarding jitterbuffer in Asterisk 1.4.24. I see that
jitterbuffer is only effective on the receiving channels.
My asterisk has only SIP accounts + 2 SIP trunk accounts to our branch
office.
Questions:
1. To enable jitter buffer on SIP channels it seems I have to enable and
force it, right?
2. If I enable and force jitter buffer, Asterisk would always have to
stay
2009 Dec 30
1
Force Jitter Buffer for SIP to SIP calls
We have a customer on a wireless connection that has very bad jitter. They
can hear people fine, but people have a very hard time hearing them. They
are connected via a SPA-2102.
It is a SIP client going to a SIP trunk.
Something like this in sip.conf [general] would be in effect for all SIP
clients:
jbenable = yes
jbmaxsize = 150
jbresyncthreshold = 1000
jbimpl = fixed
jblog = yes
I only want
2006 Feb 20
9
Asterisk 1.2.4 IAX2 New Jitterbuffer Tuning
I was using G729 with Asterisk 1.07. With the new ability to do packet
loss correction with ILBC, I felt I'd give it a try. The new PLC does
not work with G729. I don't use Speex because my softphone does not
support it.
This is a 1.5mb IP-VPN connection with prioritized QOS for port 4569
(IAX2). I've never really stressed the bandwidth. Typically, only
10-20 concurrent calls.
2008 Feb 08
1
(no subject)
Hi,
I am trying to communicate H323 and SIP users. I have configured h323.conf, sip.conf and ooh323.conf. If I am using gatekeeper (gnugk) then I am able to call successfully to h323 users using SJphone. And same for SIP users also.
But when I disabled gatekeeper and trying to call using gateway with sjphone then every time whatever number I dial the call goes to asterisk and some computerized
2007 Nov 02
1
Jitterbuffer issues
2007 Jan 08
3
jitterbuffer on sip.conf
In iax.conf there is option jitterbuffer
how about sip protocol ? Are jitterbuffer can configure in sip.conf ?
Thanks, for your share
2015 Mar 18
2
4 Port PRI
Hi Guys
I have a 4 port PRI card that I need to setup each port in their own
group.
In chan_dahdi.conf I have the following which works for one port
How do I add the rest of the ports in their own groups so that I can have
different signaling on each?
[channels]
language=en
switchtype=euroisdn
pridialplan=unknown
resetinterval=600
echocancel=yes
echotraining=yes
2011 Oct 19
5
Running as non-root
Hello.
I would like to run asterisk as an user other than root. I have seen some
tutorials on the web, but I would like to know if there is some ?official?
how-to for this. Is there?
I looked at a thread on reviewboard regarding this
(https://reviewboard.asterisk.org/r/654/). It was Paul Belangers work trying
to make the installation process take care of this. But the conclusion seem
to
2006 May 03
2
New jitter.c, bug in speex_jitter_get?
> We just return a frame with the return value JB_DROP, which tells the
> caller to drop this frame, and call jb_get again.
>
> When the caller is done with the jitterbuffer, it calls jb_getall()
> repeatedly, until it's empty, and then it can discard all the frames.
Hmm, looks a bit error-prone to me. Especially considering I still have
to explain that "no, you
2006 May 03
2
New jitter.c, bug in speex_jitter_get?
On 5/3/06, Jean-Marc Valin <Jean-Marc.Valin@usherbrooke.ca> wrote:
> > I must say I really like the generalized jitter buffer though :) It's a
> > cleaner and more flexible implementation and can more easily be adjusted
> > to contain additional information with each packet.
This looks interesting to tie into asterisk's jb and plc code as well.
2015 Mar 18
1
4 Port PRI
4 Port PRI sangoma a104
From: jg [mailto:webaccounts173 at jgoettgens.de]
Sent: Wednesday, March 18, 2015 2:09 PM
To: Andrew Colin; Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] 4 Port PRI
I have a 4 port PRI card that I need to setup each port in their own group.
In chan_dahdi.conf I have the following which works for one port
How do I add the rest
2010 Jan 15
1
jitterbuffer and PLC
Hi, I have a question about jitterbuffer and PLC.
I use Asterisk 1.6.2.0 and 1.6.0.20 or older.
I use uLaw.
My system map:
=============================================================================
[ asterisk 2 ] -- # LOSS # -- # A # -- [ asterisk 1 ] -- # B # -- [ X-lite ]
=============================================================================
I use two asterisk server.
2006 May 03
2
New jitter.c, bug in speex_jitter_get?
> Perhaps, but then you need to assume that the jitterbuffer can just
> throw away the data, and that limits how you can use it. In object-
> oriented terms, you might want to pass objects to the JB, and then
> call a destructor on them. In C terms, you may want to allocate
> frames via malloc(), and then call free() on them later. You might
> want to pass in
2006 May 03
2
New jitter.c, bug in speex_jitter_get?
> Yes. Jean-Marc has made the API more similar.
>
> Jean-Marc: Have you looked at the API we have for the
> asterisk/iaxclient jitterbuffer?
Just did.
> It's pretty close to what you have now -- the major difference is that
> your jb still assumes it can "own" the data passed in -- it copies it,
> and it destroys it at will. With the API I put together,
2011 Dec 01
3
AGI script that uses google's text to speech engine
Hello,
I have written an AGI script for asterisk that uses google translate for
text to speech synthesis.
It supports a variety of different languages, local caching for the voice
data and wideband audio.
The voice in most languages is female and the quality of the synthesized
speech is very high.
More info about the script can be found here:
http://zaf.github.com/asterisk-googletts/
the first
2010 Dec 14
3
Converting asterisk h264 recordings
Hello,
We are setting up an asterisk system for voicemail with video possibilities.
We are not using the voicemail app, but rather writing our own dialplan
logic. The part of recording, and replaying, the voicemail works, and we
receive both an h264 and an wav-file. What I now wonder is how to convert
these into one file playable by a (standard) media player. I have not found
any real good
2013 Jan 24
5
"clicking" sound with alaw codec
I'm trying to interface Asterisk with an Alcatel PABX and trying to find
a code that works well. It says it doesn't support ulaw, though it
doesn't reject it. It supports G.729, and that works fine, but we'd prefer
not to use compression.
When I use alaw, the path from Asterisk to the Alcatel is completely
clean, but the other way has a set of clicks that kind of sound like