A Windows C++ Application demostrate Zoom Meeting SDK sending video raw data as user's video source to a Zoom Meeting.
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.bat
./vcpkg integrate install
./vcpkg install jsoncpp
./vcpkg install opencv
git clone https://github.com/linanw/MSDK_SendVideoRawData.git
{
"sdk_jwt": "<your_sdk_jwt>",
"meeting_number": <meeting_number_to_join>,
"passcode": "<passcode>",
"video_source": "Big_Buck_Bunny_1080_10s_1MB.mp4"
}
The app will try to join the meeting follow the Meeting Number you specified in the config.json. Specify a video source for sending to the meeting as a vitual video source. The video source could be a file path or a stream url. A video file name, "Big_Buck_Bunny_1080_10s_1MB.mp4" is set by default, which is video file's name included in project source code.
Open "MSDK_SendVideoRawData.vcxproj" file from Visual Studio 2022.
Hit F5 or click from menu "Debug" -> "Start Debugging" to launch the application.