I say, I say, I say, did you hear the one about….
December 16, 2005, 1:07 am13 Responses to “I say, I say, I say, did you hear the one about….”
You forgot LinPhone. “–with-linphone-lib=/wherever”
Nice one Kev ![]()
Good job, well done I think!
YES!
Do you know if Remko will provide builds for Mac OS X?
)
Eager to experiment, but can’t compile it on my 800Mhz Powerbook
[Nolan] You forgot LinPhone. “–with-linphone-lib=/wherever”
I didn’t….my configure line doesn’t need it, as it’s in a standard location
[Pedro]Do you know if Remko will provide builds for Mac OS X?
At the moment it’s Linux-only. Once it works on windows or Mac I’m sure we’ll provide builds
Compiled it for Linux amd64 on ubuntu breezy (got to take the libortp0 from debian unstable)
Only needed to change in third-party/libjingle/talk/session/phone/voicechannel.cc
void VoiceChannel::SendPacket(const void *data, unsigned int len) {
// SendPacket gets called from MediaEngine; send to socket
// MediaEngine will call us on a random thread. The Send operation on the socket is
// special in that it can handle this.
socket_->Send(static_cast(data), len);
}
to:
void VoiceChannel::SendPacket(const void *data, size_t len) {
// SendPacket gets called from MediaEngine; send to socket
// MediaEngine will call us on a random thread. The Send operation on the socket is
// special in that it can handle this.
socket_->Send(static_cast(data), (unsigned int) len);
}
Hello,
well that’s some good news !
Does jingle support is only needed in the clients, or does server support is also required ?
(question behind the question : will VoIP work on the federated jabber network as soon as Psi will support it ?
)
Thanks a lot for this little surprise !
Psi already supports it, and we’ve made calls across ‘normal’ jabber servers already, no server support is required, although stun and relaying use external services which improve the chance of success ![]()
And you’re welcome, thank Google and Remko mostly.
Psi trifft Google Talk
Treffen sich beide und können sogar noch schnattern. Der funktionalität ist zwar noch nicht ganz so stabiel, aber es funktioniert zumindest schon mal prinzipiel, schreibt Kevin Smith in seinem Blog.
Gelingen konnte das ganze nur dadurch das Google eine
how do i change the audio device to /dev/dsp1? it currently uses /dev/dsp. i tried to change DSP_NAME in osscard.c to /dev/dsp1 but this doesn’t work? maybe because i use alsa? but how do i change this for alsa?
Try the following forum thread:
http://psi-im.org/forum/post/24608
“although stun and relaying use external services which improve the chance of success
”
Does this mean if i am using a normal (not Google’s) Jabber server then I wont get the ICE benefits (STUN and Relaying) capabilities.
If so are there any Jabber servers with ICE support coming up?
Thanks
Hi.
I just saw in the Psi-jingle wiki page, that you are asking if someone knew about another jingle client.
Well, take a look at this
http://tapioca-voip.sourceforge.net/wiki/index.php/Tapioca

Configuring without ilbc now seems sufficient for PsiPsi conversation.
Further discussion is likely here: http://psi-im.org/forum/thread/3424