iOS كيفية تمكين مكالمة الفيديو باستخدام Linphone Core

StackOverflow https://stackoverflow.com//questions/23002481

  •  20-12-2019
  •  | 
  •  

سؤال

أنا أستخدم Linphone Core لإجراء تطبيق قابل للاستدعاء.الآن أريد أن تمكن مكالمة الفيديو.هل يمكن لأي شخص أن يساعدني في معرفة كل ما أحتاجه للقيام بذلك.

هل كانت مفيدة؟

المحلول

يمكنك استخدام SDK Tokbox for Server و Serient Side لإنشاء مكالمة فيديو.لديك نظرة هنا .

نصائح أخرى

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