Android video call

I want to develop an application that uses 3G for video calls, where a secondary camera will be used for video calls.

Is it possible to make a video call? If possible, please give me a link or tutorial.

+4
source share
2 answers

You should look for the SIP protocol stack in android. There are various open source projects. look for SipDroid , IMSDroid is also a good example. And Sip Api is also available on Android after API level 9.

+2
source

Another thing worth paying attention to is the CSipSimple project . It uses pjsua as a SIP library. Video call developed in the thread.

I have not tested it yet, but it seems to work according to the problem. The question starts out more interesting from comment 27 , because after that the video replacements seem to work.

Check it out and learn it. It will probably take some time to first find a path around the code.

+1
source

Source: https://habr.com/ru/post/1388408/


All Articles