videosdk 1.3.1 copy "videosdk: ^1.3.1" to clipboard
videosdk: ^1.3.1 copied to clipboard

Video SDK Flutter to simply integrate Audio & Video Calling API or Live Video Streaming API to your app with just a few lines of code.


Pubev badge GitHub badge

Video SDK Flutter #

Video SDK Flutter to simply integrate Audio & Video Calling API or Live Video Streaming API to your app with just a few lines of code.

Functionality #

Feature Android iOS Web MacOs Windows
Audio/Video ✔️ ✔️ ✔️ ✔️ ✔️
Recorder ✔️ ✔️ ✔️ ✔️ ✔️
HLS ✔️ ✔️ ✔️ ✔️ ✔️
RTMP Live ✔️ ✔️ ✔️ ✔️ ✔️
Simulcast ✔️ ✔️ ✔️ ✔️
Screen Share ✔️ ✔️ ✔️ ✔️ ✔️

Getting Started #

Setup Guide #

Add videosdk as a dependency in your pubspec.yaml file.

Android Setup #

Update AndroidManifest.xml file for the permissions #

Ensure the following permission is present in your Android Manifest file, located in <project root>/android/app/src/main/AndroidManifest.xml:

<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
<uses-permission android:name="android.permission.WAKE_LOCK" />
copied to clipboard

If you need to use a Bluetooth device, please add:

<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
copied to clipboard

The Flutter project template adds it, so it may already be there.

Also you will need to set your build settings to Java 8, because official WebRTC jar now uses static methods in EglBase interface. Just add this to your app level build.gradle:

android {
    //...
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}
copied to clipboard

If necessary, in the same build.gradle you will need to increase minSdkVersion of defaultConfig up to 23 (currently default Flutter generator set it to 16).

If necessary, in the same build.gradle you will need to increase compileSdkVersion and targetSdkVersion up to 31 (currently default Flutter generator set it to 30).

iOS Setup #

  1. Add the following entry to your Info.plist file, located in <project root>/ios/Runner/Info.plist:
<key>NSCameraUsageDescription</key>
<string>$(PRODUCT_NAME) Camera Usage!</string>
<key>NSMicrophoneUsageDescription</key>
<string>$(PRODUCT_NAME) Microphone Usage!</string>
copied to clipboard

This entry allows your app to access camera and microphone.

  1. Update the minimum iOS platform version to 12.0. You can update it in the ios/Podfile.
platform: ios, "12.0";
copied to clipboard

macOS Setup #

These entries allows your app to access camera, microphone and open outgoing network connections.

  1. Add the following entry to your Info.plist file, located in <project root>/macos/Runner/Info.plist:
<key>NSCameraUsageDescription</key>
<string>$(PRODUCT_NAME) Camera Usage!</string>
<key>NSMicrophoneUsageDescription</key>
<string>$(PRODUCT_NAME) Microphone Usage!</string>
copied to clipboard
  1. Add the following entry to your DebugProfile.entitlements file, located in <project root>/macos/Runner/DebugProfile.entitlements:
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.device.camera</key>
<true/>
<key>com.apple.security.device.microphone</key>
<true/>
copied to clipboard
  1. Add the following entry to your Release.entitlements file, located in <project root>/macos/Runner/Release.entitlements:
<key>com.apple.security.network.server</key>
<true/>
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.device.camera</key>
<true/>
<key>com.apple.security.device.microphone</key>
<true/>
copied to clipboard

Import it #

Now in your Dart code, you can use:

import "package:videosdk/videosdk.dart";
copied to clipboard
121
likes
105
points
1.41k
downloads

Publisher

verified publishervideosdk.live

Weekly Downloads

2024.09.06 - 2025.03.21

Video SDK Flutter to simply integrate Audio & Video Calling API or Live Video Streaming API to your app with just a few lines of code.

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

collection, dart_webrtc, device_info_plus, encrypt, events2, flutter, flutter_foreground_task, flutter_web_plugins, h264_profile_level_id, http, permission_handler, platform_detect, plugin_platform_interface, random_string, sdp_transform, synchronized, videosdk_otel, videosdk_room_stats, videosdk_webrtc, web

More

Packages that depend on videosdk