Frage

Ich verwende liniphone Core, um eine auffallbare App zu erstellen.Jetzt möchte ich Videoanruf aktivieren.Kann mir jemand helfen, alles herauszufinden, was ich tun muss.

War es hilfreich?

Lösung

Sie können die SDK von TOKBOX für Server und Clientseite verwenden, um ein Videoanruf herzustellen.Ich habe ein hier übersehen .

Andere Tipps

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.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top