2022-03-18

Updates to the Server C++ SDK (v1.1.0-beta.1)

Server C++ SDK

1.1.0-beta.1

Features

  • Introduced the join method that allows joining a conference as a user who can send and receive media. Additionally, this version of the SDK introduces the following methods that allow the local participant to send media to the conference:

    • start_audio: Starts audio transmission between the local client and a conference
    • stop_audio: Stops audio transmission between the local client and a conference
    • start_video: Starts video transmission between the local client and a conference
    • stop_video: Stops video transmission between the local client and a conference
    • set_media_source: Sets the Media Source instance as the Media Source for the SDK
    • set_audio_processing: Enables and disables audio processing of the local audio stream that is sent to the conference
  • The SDK now supports the ability to inject Audio and Video streams into the conference using the Media Injector API and the Default Media Injector Plugin.

  • The SDK now supports the ability to capture and store remote audio and video data using the Media Recorder API and the Default Media Recorder Plugin.

Changes