Mountain View
Jabber SDK API Documentation

Tutorial: Native Conversation Video Window Overview

Native Conversation Video Window Overview

Title Native Conversation Window is native window in which Telephony Conversation's video (incoming video from remote participant) and local camera feed (self-view) are rendered. Self-view video is rendered inside child window which can be controlled. Native conversation window can be accessed from WindowController through WindowController.getNativeConversationWindow, as it is shown in the snippet below:

         var nativeConversationWindow = cwic.WindowController.getNativeConversationWindow();
     
Through NativeConversationWindow.showVideoForConversation method it can be chosen for which TelephonyConversation conversation video will be shown, as it is demonstrated in the snippet below:

        var nativeConversationWindow = cwic.WindowController.getNativeConversationWindow();
        var conversation

        // ...
        // Obtain desired telephony conversation.
        // ...

        nativeConversationWindow.showVideoForConversation(conversation);
    

Control Of Self-View Video

NativeConversationWindow has following features to control self-view video:

Next

Previous