Questions tagged [pjsua2]

PJSUA2 is an object-oriented abstraction above open source command line SIP user agent (softphone) PJSUA API. Use this tag for questions related to this type of OO abstraction.

PJSUA2 is an object-oriented abstraction above open source command line SIP user agent (softphone) PJSUA API. Use this tag for questions related to this type of OO abstraction.

152 questions
1
vote
1 answer

How to read specific content(sip info request ) from PJSIP header files?

How can i read below message: connection established while making call in pjsip pjsua2 for android app. 2021-10-25 17:12:37.468 19483-19641/org.pjsip.pjsua2.app I/System.out: Allow: INVITE, ACK, BYE, CANCEL, OPTIONS, MESSAGE, INFO, UPDATE,…
James
  • 318
  • 1
  • 10
1
vote
1 answer

Making calls in PJSUA2

I am new to PJSUA2, and I'm trying to make calls using this library. I already managed to authorize on remote sip server, but calling is more difficult. So, here is the code: #include #include #include…
Infiniter
  • 53
  • 1
  • 7
1
vote
2 answers

PJSIP client does not ACK invite response

I'm working on creating a SIP client using Python and PJSUA2. I'm testing it with a SIP server running on the same host. When I call makeCall() Wireshark shows the following: The INVITE messages being sent to the server The server responding…
jmq
  • 1,559
  • 9
  • 21
1
vote
1 answer

How to generate libpjsua2.so for x86 abi in jnilibs

I want to test the app with android 10 in emulator.So for that I only have "armeabi", "armeabi-v7a","arm64-v8a" in jnilibs. But running app with android 10 device(Emulator), requires x86 abi. So for that first I have downloaded ndk for x86.And the…
Kousalya
  • 700
  • 10
  • 29
1
vote
2 answers

Check for INVITE after REGISTER in SIP

I've been developing a C# Xamarin application with PJSIP, and I have encountered a small (or large) obstacle. The system I currently have set-up is that a user will get a notification of an incoming call, which allows them to click on the…
Scornz
  • 380
  • 3
  • 14
1
vote
0 answers

PJSUA2 / PJSIP Python Real-Time Audio Streams

currently im writing a script using PJSUA2 in Python3. The goal of the script is to make voice-calls using SIP. The script is working so far. With createRecorder() and createPlayer() and transmitting to them I'm able to record the calls and play…
Fuzzle
  • 11
  • 1
1
vote
2 answers

Conference Calling in Pjsua android

How to implement Conference calling with pjsip android? I can put my current call on hold and un-hold it successfully. Anybody pls do help with conferencing. It seemed to be a tough nut for me. I know, we can start transmitting various ports using…
Ameena Shafeer
  • 626
  • 3
  • 18
1
vote
1 answer

Call Transferring in Pjsip Android returns 403 Forbidden

My Voip Application using pjsua returns 403 Frobidden on Call Transferring REFER request. The Call transferring code is as follows, public void transferTo(String destination) throws Exception { String transferString = "sip:" + destination +…
Ameena Shafeer
  • 626
  • 3
  • 18
1
vote
0 answers

SipVicious(100) incoming calls in my Sip Application

I build my Android Sip application using pjsua library. I am using BSNL Wings service provider for sip account. I am receiving a call from 100, randomly at my phone which have no response from the other side even when answered. I took the log, and…
Ameena Shafeer
  • 626
  • 3
  • 18
1
vote
1 answer

Exception while ending calls - "pjsua_conf_disconnect(id, sink.id) error: Invalid value or argument"

My application using pjsua library is working great. But, always an exception like below appear while hanging up the calls. this is the part of the code where exception is raised in MyApp.java class, where amr refers to AudioMediaRecorder, and am…
Ameena Shafeer
  • 626
  • 3
  • 18
1
vote
1 answer

how can I call re-registration and send registration to server manually on pjsua2?

I'm using pjsip in my android chat application(using pjsua2). All things is good and I can register and make call with others successfully. default re-registration of pjsua2 is 300s and after this time a re-register request will send to server. And…
Hosein Kord
  • 187
  • 2
  • 15
1
vote
1 answer

Pjsip Android Video Call: How to display your view in a SurfaceView using Pjsip Library

I am implementing SIP Video Call using Pjsip library. My view is successfully transmitted to other person but what I want is to display my camera view in my screen(Something like WhatsApp). I found that Pjsip is using camera to transmit view. How…
Aanal Shah
  • 1,946
  • 2
  • 20
  • 30
1
vote
2 answers

Pjsip Android Video Call: Inverted Video Preview

I am using Pjsip library for SIP Video call. I am facing issue displying my own view in a SurfaceView. Here is the image: Expected View: Fetching Preview ID in onCallMediaState mVideoPreview = VideoPreview(mediaInfo.videoCapDev) mVideoWindow =…
Aanal Shah
  • 1,946
  • 2
  • 20
  • 30
1
vote
0 answers

Android: Error building Pjsip v2.9 Sample Application

I have successfully till TARGET_ABI https://trac.pjsip.org/repos/wiki/Getting-Started/Android. When I tried to build sample Application, I am having following…
Aanal Shah
  • 1,946
  • 2
  • 20
  • 30
1
vote
0 answers

Android Pjsip Video Call: Green screen before actual window renderred

I am implementing Video Call using the Pjsip library and 80% it worked well. I am facing one issue like when I initiate a video call, it first displays a green screen like below and then renders actual video streaming. I am not getting any hint…
Aanal Shah
  • 1,946
  • 2
  • 20
  • 30
1 2
3
10 11