similar to: IAXClient news

Displaying 20 results from an estimated 3000 matches similar to: "IAXClient news"

2003 Jun 02
1
Announcing IAXCLIENT v0.02 A cross-platform IAX client.
Asterisk-people, Some of you may have heard that we were working on a simple, cross-platform IAX client library called "iaxclient". We've pretty much been "on vacation" with the project for a while, but recently have made some progress, and now have the library working across platforms, and a simple test client called "testcall", up and running on 3
2007 May 03
0
Re: [Iaxclient-devel] iaxclient & speex
David Brazier wrote: > Hi > > The latest SVN trunk for speex has changed the SpeexPreprocessState to > an opaque structure, for jolly good software engineering reasons. > However, the Analogue AGC (AAGC) feature of iaxclient (in audio_enode.c) > relies on some members of this. It uses speech_prob to detect when > there is enough speech to consider AAGC and then loudness2 to
2007 May 03
0
Re: [Iaxclient-devel] iaxclient & speex
Jean-Marc Valin wrote: >> I hate to be a talker and not a do-er, but I won't be able to write this >> myself, probably someone on the iaxclient team could do it. >> > > Anyway, let me know if/when someone's working on that. > > >>> Hmm, or does that mean the analogue AGC is actually completely >>> independent from the "real"
2006 Jan 31
0
app_conference(Asterisk) with Speex
Jean-Marc Valin wrote: >Just curious, how does Asterisk pack Speex frames in a packet. AFAIK, >Linphone just sends raw packets, as specified in the RTP draft. > > Asterisk expects speex frames to have a terminator. The phone I was referring to was the X-Ten/X-Lite phones, which seemed to be adding something _before_ the speex data to indicate the length of the frames.
2007 May 03
2
Re: [Iaxclient-devel] iaxclient & speex
> As you can tell, the AAGC integration with speex was really a classic > hack. Instead of re-creating the hack, what's probably best here is to > integrate AAGC back into speex, and have a proper API. Agreed here. If you can come up with a clean patch to add that feature, it's something I'd like to see in Speex. > For those of you just tuning in, what I call
2003 Mar 08
7
IAX on windows
I know this has come up before but... Has anyone done anything to get an IAX client built on Windows? I thought someone had started one, but I haven't heard anything about it since - and that was months ago? Anyone have any idea what the status is? -- Ron Gage - Saginaw, Michigan I am looking for work - resume at http://www.rongage.org/resume.doc Electrical Engineering, Linux Programming,
2006 Mar 02
1
IAX Video and Meetme
Hi I'm browsing around the internet looking for signs that the IAX client library and app_meetme support video. I stumbled across this post by SteveK on the 27th of Feb 2006. "My company is looking to hire a full-time developer, who will be working about 25-50% of the time on iaxclient; in particular to finally integrate, build, polish and enhance video in iaxclient, add video
2007 Nov 13
0
problem with speex and iaxclient
Hi All, I try to compile the last version of iaxclient with the new build system, i also compiled speex 1.2b2 . When the makefile try to compile the sample code testcall I have the following mistales: gcc -I/d/Lib/iaxclient-2.0.1/portaudio-1.9/src/common -I/d/Lib/iaxclient-2.0.1/speex-1.2/include -o testcall.exe testcall.o ../../lib/.libs/libiaxclient.a
2007 May 03
3
iaxclient & speex
Hi The latest SVN trunk for speex has changed the SpeexPreprocessState to an opaque structure, for jolly good software engineering reasons. However, the Analogue AGC (AAGC) feature of iaxclient (in audio_enode.c) relies on some members of this. It uses speech_prob to detect when there is enough speech to consider AAGC and then loudness2 to decide how to adjust the input mixer. We want to use
2009 Jan 07
2
\iaxclient-2.0.2 compile problem
Hi, I had downlaoded iaxclient-2.0.2 and complie project *\iaxclient-2.0.2\contrib\win\vs2005* ** It gives many83 fatal and file missing error of file missing Error 1 fatal error C1083: Cannot open include file: 'portaudio.h': No such file or directory d:\mohit\asterisk\iaxclient-2.0.2\iaxclient-2.0.2\lib\portmixer\px_win_wmme\px_win_wmme.c 40 Error 2 fatal error C1083: Cannot open
2007 Mar 17
0
SV: How to detect SpeexBits corruption
I wrote a speex parser, which we use inside of asterisk and iaxclient. It can parse a stream of speex data into individual packets: See static int speex_get_samples(unsigned char *data, int len) (and it's 2 helper functions) in http://iaxclient.svn.sourceforge.net/viewvc/iaxclient/trunk/iaxclient/lib/libiax2/src/iax.c As it's written, it just looks at a bunch of speex data, and tells
2007 Mar 17
1
SV: How to detect SpeexBits corruption
Ohh...nice. I actually thought I was emailing Jean-Marc and didn't expect anything back from the list. In fact once I got a reply back saying it was waiting mod approval for list submission, I though it would be dropped. Your reply is both unexpected and much appreciated. I'm checking it out right now!! Thanks, Greg On Sat, 2007-03-17 at 12:00 -0400, Steve Kann wrote: > I wrote
2004 Aug 06
0
Proposed AGC additions
Steve, You're right. The AGC gain does not max out when using VAD (via the preprocessor). So instead of not transmitting when the AGC max gain is reached, I now do this instead: Start the call with VAD enabled and AGC disabled. When speech is detected, disable VAD (if 100% continuous transmission is desired for the call) and enable AGC. This seems to be working reliably so far. However,
2006 May 03
0
New jitter.c, bug in speex_jitter_get?
Mike Taht wrote: > > > On 5/3/06, *Jean-Marc Valin* <Jean-Marc.Valin@usherbrooke.ca > <mailto: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
2006 May 03
0
New jitter.c, bug in speex_jitter_get?
On May 3, 2006, at 7:40 PM, Jean-Marc Valin wrote: > >> 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
2007 May 03
4
Re: [Iaxclient-devel] iaxclient & speex
> I hate to be a talker and not a do-er, but I won't be able to write this > myself, probably someone on the iaxclient team could do it. Anyway, let me know if/when someone's working on that. >> Hmm, or does that mean the analogue AGC is actually completely >> independent from the "real" AGC. Any thoughts? >> > > It's actually a bit more
2004 Apr 08
0
Re: [Iaxclient-devel] codec negotiation ?
On Thu, 08 Apr 2004 10:14:09 -0400, Steve Kann wrote: >Gary wrote: > >>I have noticed lack of codec negotiation with calls thru a registrated >>asterisk box. >> >>No seen problems with outbound calls, (though I haven't specifically >>tried it), but the problem exists inbound. >> >>Easiest method for testing this was ring in via a sip client set
2003 Apr 03
2
OS X support?
hi Can I use Asterisk with OS X? roy -- Roy Sigurd Karlsbakk, Datavaktmester ProntoTV AS - http://www.pronto.tv/ Tel: +47 9801 3356 Computers are like air conditioners. They stop working when you open Windows.
2007 May 03
0
Re: [Iaxclient-devel] iaxclient & speex
Jean-Marc Valin wrote: >> As you can tell, the AAGC integration with speex was really a classic >> hack. Instead of re-creating the hack, what's probably best here is to >> integrate AAGC back into speex, and have a proper API. >> > > Agreed here. If you can come up with a clean patch to add that feature, > it's something I'd like to see in
2005 Mar 01
1
[Asterisk-biz] IAX2 web client that works withg723 / g729. We got One
Andres sounds as if this is Andres's own development. He mentioned IAX, not IAX2. My guess is that he might have used one of the IAX GPL Libraries and source trees, based on iaxClient and not libiax2. It is possible that Andres is not aware of the GPL terms that he has to adhere to, if he wants to commercialize this product. The Source code for IAX Phone is available from Steven Sokol's