Add a delegate method - (RTCVideoRotation)rotationForCameraVideoCapturer
for RTCCameraVideoCapturer
to handle device orientation update events.
Add renderers property in class RTCVideoTrack
.
This repository contains unofficial distribution of WebRTC framework binaries for iOS.
Since version M80, Google has deprecated their mobile binary libraries distributions (Was officially using the GoogleWebRTC pod). To get the most up to date WebRTC library, you can compile it on your own, or you can use precompiled binaries from other sources.
The binary releases correspond with official Chromium releases and branches as specified in the Chromium dashboard.
- All binaries in this repository are compiled from the official WebRTC source code.
- Dynamic framework (xcframework format) which contains binaries for arm64, x86 and x86_x64.
- Bitcode is included and this is the reason for the larger file size.
- Supports 64 bit only.
- iOS 11+
Xcode has a built-in support for Swift package manager. You can easily add the package by selecting File > Swift Packages > Add Package Dependency. Read more in Apple documentation.
Or, you can add the following dependency to your Package.swift
file:
dependencies: [
.Package(url: "https://github.com/stasel/WebRTC.git", .upToNextMajor("90.0.0"))
]
Use the latest
branch to get the most up to date binary:
dependencies: [
.Package(url: "https://github.com/stasel/WebRTC.git", .branch("latest"))
]
- Download the framework from the releases section.
- Unzip the file.
- Add the xcframework to your target(s) embedded frameworks.
To import WebRTC to your code add the following import statement
import WebRTC
If you wish to see how to use WebRTC I highly recommend checking out my WebRTC demo iOS app: https://github.com/stasel/WebRTC-iOS
If you wish to compile your own WebRTC binary framework, please refer to the following official guide: https://webrtc.googlesource.com/src/+/refs/heads/master/docs/native-code/ios/index.md
You can also take a look at the build script I created for more details.
- BSD 3-Clause License
- WebRTC License: https://webrtc.org/support/license