Swiftpack.co - AgoraIO-Community/SwiftUIRtc as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by AgoraIO-Community.
AgoraIO-Community/SwiftUIRtc 0.5.0
SwiftUI and Real-time Video Calling with Agora's RTC SDK
⭐️ 7
🕓 38 weeks ago
iOS macOS
.package(url: "https://github.com/AgoraIO-Community/SwiftUIRtc.git", from: "0.5.0")

SwiftUIRtc


SwiftUIRtc is a package for building video call apps using the Agora RTC SDK and SwiftUI. It provides a set of SwiftUI views and classes that simplify setting up and managing Agora RTC sessions for video calls.

This is not an official product of Agora, it is simply an open source project for helping developers use the RTC engine is new ways, such as with SwiftUI. If you have any issues with the classes in this repository, please open an issue or a PR. Agora's support team will likely not know about this package.

See the SwiftUIRtc Documentation.

Requirements

Installation

SwiftUIRtc can be installed using Swift Package Manager in Xcode. Simply add the package to your project by navigating to File > Swift Packages > Add Package Dependency and entering the repository URL:

https://github.com/AgoraIO-Community/SwiftUIRtc.git

Usage

To use SwiftUIRtc in your SwiftUI project, simply import the package and use the provided views and classes. For example, you can use AgoraVideoCanvasView and AgoraManager view to render all the video streams in an Agora RTC session:

import SwiftUIRtc
import AgoraRtcKit

struct AgoraGettingStartedView: View {
    @ObservedObject var agoraManager = AgoraManager(appId: <#AppId#>, role: .broadcaster)
    var channelId: String = "test"
    var body: some View {
        ScrollView {
            VStack {
                ForEach(Array(agoraManager.allUsers), id: \.self) { uid in
                    AgoraVideoCanvasView(manager: agoraManager, canvasId: .userId(uid))
                        .aspectRatio(contentMode: .fit).cornerRadius(10)
                }
            }.padding(20)
        }.onAppear {
            agoraManager.agoraEngine.joinChannel(
                byToken: <#Agora Temp Token#>, channelId: channelId, info: nil, uid: 0
            )
        }.onDisappear {
            agoraManager.agoraEngine.leaveChannel()
        }
    }
}

Contributing

Contributions to SwiftUIRtc are welcome! If you encounter any issues or have feature requests, please submit an issue on the GitHub repository. Pull requests are also welcome.

License

SwiftUIRtc is available under the MIT license. See the LICENSE file for more information.

Acknowledgments

SwiftUIRtc relies on the AgoraRtcKit framework developed by Agora.io for real-time communication functionality.

GitHub

link
Stars: 7
Last commit: 19 weeks ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

0.5.0 - Other Canvas ID Types
38 weeks ago

Update Canvas IDs new default way is:

ForEach(Array(agoraManager.allUsers), id: \.self) { uid in
    AgoraVideoCanvasView(manager: agoraManager, canvasId: .userId(uid))
        .aspectRatio(contentMode: .fit).cornerRadius(10)
}

This enables joinChannelEx video views as well as media source inputs: canvasId: .userIdEx(uid, rtcConnection) canvasId: .mediaSource(.mediaPlayer, mediaPlayerId: mediaPlayer.getMediaPlayerId())

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics