Questions tagged [libjingle]

libjingle is a collection of open-source C++ code and sample applications that enables you to build a peer-to-peer application.

Googles Jingle implementation is a C++ library for the jingle extension of XMPP. It enabled you to build jingle enabled applications, where jingle can be used for controlling/signaling stream interactions, typically multimedia streams like VoIP or videoconferencing.

142 questions
1
vote
0 answers

text-chat xmpp message stanzas never make it to the network - iphone project using libjingle

i thought it'd be better to rephrase. my earlier formulation of my question could have been better focused. the trouble with presence notifications, while real and still recurring, is kind of minor. the things i haven't figured out yet i can fake…
mike
  • 11
  • 3
0
votes
1 answer

C++ XMPP library that supports xep-0234(jingle)

I'm looking for well-documented and easy-to-use XMPP library that supports Jingle file transfer. Must work under Windows. Preferably for C++, but if you believe that there is a libray in other languages (C, Python,...) that is much better than any…
Novellizator
  • 13,633
  • 9
  • 43
  • 65
0
votes
2 answers

Link error when build libjingle on Mac OS X 10.7.2

I want to build libjingle on Mac OS X 10.7.2. I just overcome the compiler error and meet the linker error now. The path /Developer/libjingle/libjingle-0.6.3/talk/build/dbg/lib exists but system says unknown. How can I fix it and make libjingle…
chjlu
  • 1
  • 1
  • 2
0
votes
3 answers

error at building libjingle on Mac OS X 10.7.2 like "error: string.h: No such file or directory"

I failed to build libjingle on Mac OS X 10.7.2. The output was the following when I run $path_to_swtoolkit/hammer.sh according to the README of libjingle. MBP17:talk rei25$ ~/Desktop/swtoolkit/hammer.sh scons: Reading SConscript files ... scons:…
chjlu
  • 1
  • 1
  • 2
0
votes
0 answers

How to zoom camera using webRTC in android

Is there any API to zoom camera using webRTC in android. I read this link but I didn't find setZoom or isZoomSupported methods in webRTC library. Please help me to solve this issue.
Shashank Gupta
  • 165
  • 2
  • 16
0
votes
0 answers

libjingle Android crash while restarting the video call

using libjingle for video call android. Usecase is Call should be reconnected when the network is reconnected. So, what is happening is When the network lost and the peer connection state is disconnected and then went to a failure state. Getting…
Kumar Kalluri
  • 493
  • 2
  • 6
  • 26
0
votes
0 answers

Android WebRTC on LAN: only candidate 127.0.0.1 is sent to signaling server

I am trying to create an Android video chat application based on WebRTC, for deployment on a local network. The setup is simple: 2 Android terminals and one Linux server on the same local network (Ethernet). No STUN nor TURN server. Only host…
François.CA
  • 311
  • 1
  • 12
0
votes
1 answer

Libjingle and jingle

Possible Duplicate: What are the incompatibilities of libjingle and XEP-0166 et al? How does std. jingle file transfer differ from its implementation in gtalk client?
0
votes
0 answers

WebRTC Android CapturerObserver - what format texture does it expect?

My situation is the following : I run a video stream from an android device running Unity via WebRTC and i want to send a custom render result that i have as a GLES20 RGB/RGBA format texture. Unfortunately whenever i try to send this texture,…
0
votes
1 answer

iOS WebRTC Handle Packet Loss

I have a webRTC web app and an iOS WebRTC app. Both are using pubnub for signaling and this is working. I am using Xirsys for ICE. Everything works between the ios app and the web app until a packet is lost from web to ios. Once a packet is lost…
Alex Pelletier
  • 4,933
  • 6
  • 34
  • 58
0
votes
1 answer

Where could I download libjingle_peerconnection.jar source code

I'm experimenting with WebRTC from Android, so far using libjingle from this repo had made me successfully creates a native android app that broadcast a WebRTC video to my webapp rendered in browser (check my project here), or the other way around…
Bromo Programmer
  • 670
  • 2
  • 13
  • 37
0
votes
1 answer

Very high cpu usage audio to audio call libjingle_peerconnection

I'm using the pod 'libjingle_peerconnection' version (11177.2.0) at IOS. The cpu runs at 103% (Iphone) when I'm making an audio to audio call on an and to an IOS device. It seems that it is an bug. Because the PacerThread runs very high. So I was…
da1lbi3
  • 4,369
  • 6
  • 31
  • 65
0
votes
2 answers

Quickblox 2.6.1 webrtc: missing org.webrtc.videocapturerandroid$nativeobserver

I am getting a missing class error when trying to load libjingle_peerconnection_so.so. I am using Quickblox 2.6.1 video webrtc. Does anyone have any idea whats going on? ##---------------Begin: proguard configuration for Gson ---------- # Gson…
0
votes
1 answer

java.lang.AssertionError: Expected condition to be true webrtc android

I am implementing webrtc in android using libjingle (version-9127), the issue is that in one application life cycle when I try to make calls, then the first call is successfully established and then ended. But when second call is made then when the…
Akshay Bissa
  • 109
  • 1
  • 10
0
votes
0 answers

Multiple stream using android libjingle (WebRTC)

When I develop WebRTC Android app using libjingle, I'd like to make multiple stream (ex. one is HD another is VGA) via one camera. However, I can't find any right solution. When I tried to make VideoSource as followings, I got…
Won Young Lee
  • 165
  • 3
  • 14