문제

Linphone Core를 사용하여 호출 가능한 앱을 사용합니다.이제 화상 통화를 활성화하고 싶습니다.누구든지 내가해야 할 일을 모두 알게 될 수 있습니까?

도움이 되었습니까?

해결책

서버 및 클라이언트 측에 대해 TokBox의 SDK를 사용하여 화상 통화를 설정할 수 있습니다.>

다른 팁

Liblinphone has a C-level API. It's pretty OK documented but it's really hard to find. The very best I can find about placing/receiving/managing calls (both audio and video) is the page: enter link description here

You need this function to enable video:

void linphone_call_params_enable_video (LinphoneCallParams *cp, bool_t enabled)
// cp - LinphoneCallParams object
// enabled - A boolean value telling whether to enable video or not.

Liblinphone is really tricky sometimes. There are several descriptions about video streaming inside the link I posted - check them too. There are not needed for my project - so the only one function I needed to enable video support is the one I posted - but maybe you'll need other functions too.

Hope it'll help someday.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top