flutter-zoom-video-sdk

Video SDK for Flutter

Getting started

To make it easy for you to get started with Flutter Video SDK, here's a list of recommended next steps.

Not yet download the Flutter? Download FLutter

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

Usage

The SDK initialize configuration needs to be fill in main.dart

InitConfig initConfig = InitConfig(
  domain: "zoom.us",
  enableLog: true,
);

Get the Video SDK instance.

var zoom = ZoomVideoSdk();

Open the event channel and listen to native SDK event

var eventListener = ZoomVideoSdkEventListener();

Generate an SDK JWT Token.

Then, join a session.

Map<String, bool> SDKaudioOptions = {
  "connect": true, 
  "mute": true
};
Map<String, bool> SDKvideoOptions = {
  "localVideoOn": true,
};
JoinSessionConfig joinSession = JoinSessionConfig(
  sessionName:"sessionName",
  sessionPassword: "sessionPwd",
  token: "JWT token",
  userName: "displayName",
  audioOptions: SDKaudioOptions,
  videoOptions: SDKvideoOptions,
  sessionIdleTimeoutMins: "time out minutes",
);
await zoom.joinSession(joinSession);

Sample App

Checkout the Zoom Flutter Video SDK Sample App in the example directory.

Documentation

Please visit Video SDK for Flutter to learn how to use the SDK wrapper and run the sample application.

For the full list of APIs and Event Listeners, see the Reference.

Need help?

If you're looking for help, try Developer Support or our Developer Forum. Priority support is also available with Premier Developer Support plans.

Changelog

For the changelog, see Video SDK for Flutter.

License

Use of this SDK is subject to our License and Terms of Use;

Open Source Software Source Code

Some licenses for OSS contained in our products give you the right to access the source code under said license. You may obtain a copy of source code for the relevant OSS via the following link: https://zoom.us/opensource/source. Please obtain independent legal advice or counsel to determine your responsibility to make source code available under any specific OSS project.

Please see oss_attribution.txt for more information.


Copyright ©2023 Zoom Video Communications, Inc. All rights reserved.


Libraries

flutter_zoom_view
native/zoom_videosdk
native/zoom_videosdk_annotation_helper
native/zoom_videosdk_audio_helper
native/zoom_videosdk_audio_setting_helper
native/zoom_videosdk_audio_status
native/zoom_videosdk_camera_device
native/zoom_videosdk_chat_helper
native/zoom_videosdk_chat_message
native/zoom_videosdk_cmd_channel
native/zoom_videosdk_CRC_helper
native/zoom_videosdk_event_listener
native/zoom_videosdk_live_stream_helper
native/zoom_videosdk_live_transcription_helper
native/zoom_videosdk_live_transcription_language
native/zoom_videosdk_live_transcription_message_info
native/zoom_videosdk_phone_helper
native/zoom_videosdk_phone_support_country_info
native/zoom_videosdk_recording_helper
native/zoom_videosdk_remote_camera_control_helper
native/zoom_videosdk_session
native/zoom_videosdk_session_dial_in_number_info
native/zoom_videosdk_session_statistics_info
native/zoom_videosdk_share_action
native/zoom_videosdk_share_helper
native/zoom_videosdk_share_statistic_info
native/zoom_videosdk_test_audio_helper
native/zoom_videosdk_user
native/zoom_videosdk_user_helper
native/zoom_videosdk_video_helper
native/zoom_videosdk_video_statistic_info
native/zoom_videosdk_video_status
native/zoom_videosdk_virtual_background_helper
native/zoom_videosdk_virtual_background_item