isqad / flutter-webrtc

WebRTC plugin for Flutter Mobile/Desktop/Web

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flutter-WebRTC with plugable video processors 🤖

Forked WebRTC plugin for Flutter Mobile/Desktop/Web with some integrations for pre-processing camera track

Functionality

Feature Android iOS Web macOS Windows Linux Embedded Fuchsia
Audio/Video ✔️ ✔️ ✔️ ✔️ ✔️ ✔️ [WIP]
Data Channel ✔️ ✔️ ✔️ ✔️ ✔️ ✔️ [WIP]
Screen Capture ✔️ ✔️(*) ✔️ ✔️ ✔️ ✔️ [WIP]
Unified-Plan ✔️ ✔️ ✔️ ✔️ ✔️ ✔️ [WIP]
Simulcast ✔️ ✔️ ✔️ ✔️ ✔️ ✔️ [WIP]
MediaRecorder ⚠️ ⚠️ ✔️
Insertable Streams
Plagable Video processors [WIP]

Usage

WIP

iOS

Video processors is not supported yet

Android

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.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" />

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

<uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:maxSdkVersion="30" />

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
    }
}

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).

Important reminder

When you compile the release apk, you need to add the following operations, Setup Proguard Rules

Contributing

The project is inseparable from the contributors of the community.

Example

WIP

About

WebRTC plugin for Flutter Mobile/Desktop/Web

License:MIT License


Languages

Language:C++ 28.1%Language:Java 27.2%Language:Objective-C 22.6%Language:Dart 18.0%Language:CMake 1.9%Language:Kotlin 1.3%Language:Ruby 0.4%Language:C 0.2%Language:HTML 0.2%Language:Swift 0.1%Language:Shell 0.0%