linphone-developers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Linphone-developers] Using USB external camera as streaming device


From: Pop Marius
Subject: Re: [Linphone-developers] Using USB external camera as streaming device for android app
Date: Wed, 8 Jul 2020 10:03:13 +0000

Hi guys,

I am working on an android app using Linphone sdk. Can you point me to a documentation on how to send/receive a message with sip server? 

I am using this sdk:

"org.linphone:linphone-sdk-android-debug:4.3.4-pre.41+827f36e"

Thanks,

Marius Pop

From: Sylvain Berfini <sylvain.berfini@belledonne-communications.com>
Sent: 25 June 2020 10:25
To: Pop Marius <pmarius@mobileinsight.com>
Cc: linphone-developers@nongnu.org <linphone-developers@nongnu.org>
Subject: Re: [Linphone-developers] Using USB external camera as streaming device for android app
 

CAUTION: This email originated from outside the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.

Hi Marius,


Using your Core object, you can get the list of available cameras using:

for (String camera : core.getVideoDevicesList()) {
    Log.i("Found camera: " + camera);
}


Then you can set the name of the device you want to use:

core.setVideoDevice(camera);


Cheers,

Sylvain Berfini
Software Engineer @ Belledonne Communications
Le 24/06/2020 à 15:02, Pop Marius a écrit :
Hi guys,

I'm developing an android app which should make a video call through sip to a web app. I am using linphone android sdk: 

org.linphone:linphone-sdk-android-debug:4.3+

I was able to make the video call with linphone sdk, but the issue is that currently the device camera is used, and I need to use external USB camera.

Is there a way to provide my already implemented USB external camera as a video stream source for the video call?

I am looking at Core class from linphone android sdk and there is:

"core.videoDevice". Is this something I could use for what I need? If yes, how?

If not, is there another way?

Thanks,

Marius.

_______________________________________________
Linphone-developers mailing list
Linphone-developers@nongnu.org
https://lists.nongnu.org/mailman/listinfo/linphone-developers

reply via email to

[Prev in Thread] Current Thread [Next in Thread]