Passing Raw Video/Audio to Zoom Encoder on Windows Fully Customizable SDK

Hi @mtaha, thanks for the post.

Currently, the Fully Customizable SDK only allows you to provide video data. Audio data can be received, but sending it through the SDK is not directly supported at this time.

Raw video data can be sent through the sendVideoFrame method. To access this method, obtain an instance of the IZoomInstantSDKVideoSender by providing an instance of IZoomInstantSDKVideoSource in your ZoomInstantSDKSessionContext and listening for the onInitialize callback. The sender parameter is what you are looking for.

Thanks!