voip

GCDAsyncSocket background VOIP

我们两清 提交于 2019-12-03 10:19:46
问题 I'm trying to implement this(Configuring Sockets for VoIP Usage) using this(CocoaAsyncSocket). To the best of my knowledge step 1 I have done, adding VOIP to background services in the plist, and below should be step 2 (Configure one of the app’s sockets for VoIP usage) - (void)socket:(GCDAsyncSocket *)sock didConnectToHost:(NSString *)host port:(UInt16)connectedPort { [CCV setLocalMode:FALSE]; [socket performBlock:^{ [socket enableBackgroundingOnSocket]; }]; But the rest of the steps I

Android VOIP application without access to internet

荒凉一梦 提交于 2019-12-03 09:53:42
问题 I need to develop the VOIP application between 2 android devices. As I know there is a SIP protocol used for this purpose but it requires registation to SIP server and access to internet for SIP signaling. Is any way to create VOIP application in android without internet access? 回答1: Of course it is possible! Why you would need the internet? As long as you are both connected to the same network that is fine! Below is the java and xml for a working app. On start up it will provide you with

VoIP Implementation using Java SIP Library [closed]

旧巷老猫 提交于 2019-12-03 08:13:46
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center . I want to Implement simple VoIP application using any of the Java SIP Libraries and APIs.can you give me a simple example of VOIP application. i have not get any resources or tutor that contains java Voice over IP. This article covers this domain very widely. Stefan Buynov For code samples, you can look at Jitsi 's source code - it

Understanding how SIP, WebRTC and PSTN work together [closed]

一个人想着一个人 提交于 2019-12-03 07:38:49
I have been learning more about WebRTC, SIP and PSTN and how they work together especially the ability to receive phone calls in browser. I have spent some time on Twilio's website and I like the way they are able to make you receive a phone call From PSTN to your browser. I want to understand how they are able to let someone call a normal PSTN phone number and the call is directed to web browser. I bumped into this question and got some little understanding but there are some things that are still missing for me. To help clarify my question, let us take the following scenario: 1st Part Let's

sip stack for iphone and android

醉酒当歌 提交于 2019-12-03 07:36:40
I am looking for the SIP stacks for Android and iPhone. I found plenty of similar questions, which are sometimes quite old... I do not care too much if the solution is commercial (but this is preferred) or open source. So far I found Commercial solution from RADVISION for Android Open source SIPHONE for iPhone LINPHONE which covers both platforms. Gingerbreadhas built-in SIP stack - but seems that it has some limitations and might be removed by MNO... My questions are: Does anybody has good/bad experience with above solutions? Do you develop and publish an application with use of above

How does WebRTC handle many-to-many connections?

ぐ巨炮叔叔 提交于 2019-12-03 06:13:08
if I am in a room with other 7 users, I am wondering if WebRTC force every user to establish a connection to each one of other participants. Obviously it would consume something like 7kb/s*7 download and even upload, and many connection cannot handle this if their connection is already busy. Instead with some kind of media relay the bandwidth usage would be only 7kb/s but you would lose bandwidth adaptation between peers. Do you know any media relay, or way to solve this problem? is TURN server ( like https://code.google.com/p/rfc5766-turn-server/ ) suitable for this kind of job ( multicast

WebRTC + IOS + Freeswitch : Can't hear audio

半城伤御伤魂 提交于 2019-12-03 04:34:44
问题 I'm trying to implement mod_verto on IOS (calling from iPhone to Desktop). I'm using Google's libjingle library for the RTC side, got it up and running using this excellent tutorial. When making a call from my iPhone, I get the call on the desktop browser using the Verto Communicator (downloaded and running on my local machine). On the iPhone side, I can hear the audio from my desktop, but I hear nothing on the desktop side . If I'm making the call using 2 browser windows (with the Verto

VOIP using XMPP Framework in iPhone [closed]

孤街醉人 提交于 2019-12-03 03:18:22
I am able to implement Facebook and Gmail chat with the help of XMPP Framework in my iPhone app. Wanted to know if its possible to implement VOIP(SIP) in a similar manner using XMPP. UVM You can use jingle framework.This is what jingle wiki says: "Jingle is an extension to the Extensible Messaging and Presence Protocol (XMPP) which adds peer-to-peer (P2P) session control (signaling) for multimedia interactions such as in Voice over IP (VoIP) or videoconferencing communications. It was designed by Google and the XMPP Standards Foundation. The multimedia streams are delivered using the Real-time

GCDAsyncSocket background VOIP

本小妞迷上赌 提交于 2019-12-03 01:53:53
I'm trying to implement this (Configuring Sockets for VoIP Usage) using this (CocoaAsyncSocket). To the best of my knowledge step 1 I have done, adding VOIP to background services in the plist, and below should be step 2 (Configure one of the app’s sockets for VoIP usage) - (void)socket:(GCDAsyncSocket *)sock didConnectToHost:(NSString *)host port:(UInt16)connectedPort { [CCV setLocalMode:FALSE]; [socket performBlock:^{ [socket enableBackgroundingOnSocket]; }]; But the rest of the steps I cannot figure out. If I do - (void)applicationDidEnterBackground:(UIApplication *)application {

didUpdatePushCredentials not get called

匿名 (未验证) 提交于 2019-12-03 00:59:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I want to implement VoIP notifications in my iOS application, But the didUpdatePushCredentials method never got called, I can't get the device token. I had implemented APNS in the application, May these two services conflict ? Here is my AppDelegate codes - (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings { LOGI(@"%@", NSStringFromSelector(_cmd)); //register for voip notifications self->pushRegistry = [[PKPushRegistry alloc] initWithQueue:dispatch_get_main