Questions tagged [phonertc]

PhoneRTC is a Cordova plugin that makes it easy to add WebRTC-based voice and video calls to your Android/iOS app.

42 questions
3
votes
0 answers

How to capture the screen through Cordova application?

Hi I tried below getUserMedia API to capture the android screen,But Its not working any help ? const constraints = { audio: false, // mandatory. video: {'mandatory': {'chromeMediaSource':'screen'}} }; const successCallback = (stream) => { var video…
Sandeep Ks
  • 504
  • 3
  • 13
3
votes
1 answer

Importing the Cordova plugin

I am creating a real time audio calling app using phoneRTC in ionic3. I have added the cordova plugin using following command ionic cordova plugin add cordova-plugin-phonertc --save Which adds following lines to my package.json "cordova": { …
Sid
  • 146
  • 1
  • 9
3
votes
0 answers

PhoneRTC build issues in PhoneGap - Bridging-Header.h issue

I am sure my problem has something to do with the bridging header but I don't know what. I found a git issue referenced below which stated to make sure the bridging-Header is correct. I am not sure how to do…
Workman
  • 117
  • 7
3
votes
2 answers

PhoneRTC demo application

I am Trying to get PhoneRTC demo up and running. https://github.com/alongubkin/phonertc/ I actually have a bunch of doubts First of all, my understanding: 1. We need a TURN server 2. We need a signaling Server (demo/server in repo) 3. We need a…
Tejas
  • 6,508
  • 1
  • 21
  • 25
2
votes
0 answers

PhoneRTC ionic Crashing on establishing call (ANDROID)

This the flow till now. Send call from mobile A to B, Accept the call from B (initiating session with isInitiator false as per documents for mobile B), then the signal goes to mobile A for the event "answer" and I try to create a session on Mobile…
2
votes
2 answers

how to install cordova plugin from a zip file

I'm trying to install phoneRTC (https://github.com/alongubkin/phonertc) but its taking forever with git clone: cordova plugin add https://github.com/alongubkin/phonertc.git That's why I decided to just use wget on the zip file available at…
Wern Ancheta
  • 22,397
  • 38
  • 100
  • 139
2
votes
1 answer

PhoneRTC 64 bit Support?

PhoneRTC doesn't currently support 64 bit devices. From 1st February 2015, Apple requires all iOS apps to support 64 bit devices. Therefore, very soon PhoneRTC will no longer be a viable option for including video chat in an iOS application. This…
shauneba
  • 2,122
  • 2
  • 22
  • 32
2
votes
1 answer

Phonertc on ios video only works one way

I have made a small test app, to test out the phonertc plugin for cordova. But i have run into a bit of a problem. When 2 ipads call each other from the app only the callee can see the caller, the caller can't see the callee, but the sound goes…
user2688636
  • 141
  • 1
  • 7
1
vote
1 answer

PhoneRTC: git-submodule is broken

I'm using the Wiki guide to test the plugin. When I perform the command: cordova plugin add https://github.com/alongubkin/phonertc.git the PC stucks few minutes then gives the error (from the log): 0 info it worked if it ends with ok 1 verbose cli…
Sandor Mezil
  • 390
  • 1
  • 4
  • 16
1
vote
0 answers

At a high level, how does PhoneRTC work?

Let's start with basics for context. PhoneRTC is a WebRTC implementation for Cordova apps. That means Cordova apps can access a WebRTC API. What is WebRTC? Ok, let's reverse for a second. WebRTC is a standard, right? Browsers then choose to…
andy
  • 8,775
  • 13
  • 77
  • 122
1
vote
0 answers

How to create audio and video calling in ionic framework using phonertc?

I want to create audio and video calling in ionic. How to run the demo file in phonertc ? what are the steps that must be followed to test the phonertc demo file. The folder structures are different in phonertc demo file compared to ionic project…
rookie
  • 33
  • 4
1
vote
1 answer

PhoneRTC in Ionic 2

I'm planning to create a WebRTC based Ionic 2 application so was wondering if PhoneRTC is fully supported in Ionic 2. Also, what are the alternatives available if it's not.
Neville Katila
  • 329
  • 5
  • 20
1
vote
0 answers

How to implement the chat and file transfer app using phonertc with cordova

I tried to to implement chat with phonertc but datachannel is not getting. I think i am facing the issue with datachannel in phonertc. Any suggestions very help full...
Ashok Narvaneni
  • 196
  • 1
  • 2
  • 8
1
vote
2 answers

TURN server in ubuntu is not working

For video calling i am using Phonertc (based on Webrtc) I set up turnserver in Ubuntu 14.04.3 LTS I followed the instruction from https://github.com/coturn/rfc5766-turn-server/ i dowloaded…
Tsujit Pathak
  • 77
  • 4
  • 14
1
vote
1 answer

XCode 7 / Cordova plugin / Link issue: _utf8_nextCharSafeBody undefined symbol

I'm adapting an (apparently outdated) Cordova plugin for use in my app (PhoneRTC if you're curious). As a Linux/CLI guy at heart I've been struggling with XCode for a day, and I managed to iron out most of the deprecated code using a lot of Google…
1
2 3