PhoneRTC is a Cordova plugin that makes it easy to add WebRTC-based voice and video calls to your Android/iOS app.
Questions tagged [phonertc]
42 questions
0
votes
1 answer
Phonertc demo only shows blank screen when call is started
I am using the phonertc demo project on iOS platform. The setup is done properly and app is deployed on iphone and iPad. But when I am calling a peer it just shows blank screen in the video controller div on the page. I am not sure what is…

Shashant Dahikar
- 252
- 4
- 16
0
votes
1 answer
Running PhoneRTC Demo
I am trying to run the phoneRTC demo, I hae build the android demo app and have a signalling server running but when I run the client app on android all I get is a blank screen.
these are the steps I have taken:
npm install -g cordova bower…

PU2014
- 323
- 5
- 17
0
votes
1 answer
PhoneRTC on iOS : linker command failed with exit code 1 (use -v to see invocation)
I am building this on Xcode when I build it on Xcode it shows 'Build Successful' But when I type "cordova build ios " I get the above errors shown in image above. I then tried "sudo cordova build ios" but it did not help. I have reinstalled and…

SamFast
- 1,054
- 2
- 16
- 31
0
votes
1 answer
Can I use phonertc to send arbitrary data?
I'm trying to use Phonegap/Cordova to send data between mobile and desktop application and between mobile to mobile via local network (just local p2p).
I've seen that in phonertc I can pick video/audio streams between devices, but what if I want to…

Eliezer Broide
- 95
- 1
- 1
- 7
0
votes
1 answer
PhoneRTC Cordova Plugin Won't Install in Visual Studio Cordova Projects
In both Visual Studio 2013 and Visual Studio 2015 Preview when trying to add the custom plugin PhoneRTC by inputting the .git URL the loading bar keeps going on forever. Adding plugins in VS is done by right clicking config.xml then View Designer ->…

xendi
- 2,332
- 5
- 40
- 64
0
votes
1 answer
Does anyone experience Xcode build errors when compiling the phonetic demo app for iOS?
I have been working with the phonertc demo at https://github.com/alongubkin/phonertc and am having trouble when I get to Xcode. I am using Xcode 6.1 when i follow the steps outlined
Valid Architectures => armv7
Build Active Architecture Only =>…
0
votes
1 answer
phonertc demo app only displays local video in firefox
When using the demo app between ios and desktop browser, only the local video is displayed on each side. Video and audio work fine for ios to ios connections. Used the latest Cordova to build ios and browser platforms. Tested on ios 8.1 and…

devlac406
- 1
- 1
0
votes
1 answer
can't create phonertc client
I found very good project on Github, but I can not understand all of it.
I installed a signaling server (socket.io) and a turn server. I'm trying to make an app for IOS and I'm using code like:
0
votes
1 answer
How to keep the display awake in a PhoneRTC video call?
I have a video chat in Android and iOS implemented with PhoneRTC, but after a few seconds of "inactivity", the display dims itself even though the video chat is still active.
How can I keep the display awake as long as the video chat is active?

Alon Gubkin
- 56,458
- 54
- 195
- 288
0
votes
1 answer
In PhoneRTC, how can I turn an existing voice chat into a video chat?
I have a simple voice chat working:
var config = {
isInitiator: true,
turn: {
host: 'turn:turn.example.com:3478',
username: 'test',
password: '123'
},
streams: {
audio: true,
video: false
…

Alon Gubkin
- 56,458
- 54
- 195
- 288
0
votes
2 answers
How to implement mute with PhoneRTC?
I managed to create a video chat in my Cordova app using PhoneRTC. Now, I want to add a button that toggles mute on the local microphone output.
How can I do that?

Alon Gubkin
- 56,458
- 54
- 195
- 288
-1
votes
2 answers
Phonertc ionic demo cordova is undefined
I am a newbie with ionic and trying to install phonertc on ionic platform but when i run the app it shows for VideoViewDirective that RefrenceError: cordova is undefined.
VideoViewDirective.js
angular.module('phonertcdemo')
.directive('videoView',…