forked from AgoraIO/AgoraRtcEngine_iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
curated a big chunk of AgoraRtcEngineKit
- Loading branch information
1 parent
dc0f32e
commit 6e0b7bf
Showing
2 changed files
with
81 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# ``AgoraRtcKit/AgoraRtcEngineKit`` | ||
|
||
## Topics | ||
|
||
### Initialise and Destruct | ||
|
||
- ``sharedEngine(withAppId:delegate:)`` | ||
- ``sharedEngine(with:delegate:)`` | ||
- ``destroy()`` | ||
|
||
### Channel Management | ||
|
||
- ``joinChannel(byToken:channelId:info:uid:joinSuccess:)`` | ||
- ``joinChannel(byToken:channelId:uid:mediaOptions:joinSuccess:)`` | ||
- ``updateChannel(with:)`` | ||
- ``leaveChannel(_:)`` | ||
- ``leaveChannel(_:leaveChannelBlock:)`` | ||
- ``renewToken(_:)`` | ||
- ``setClientRole(_:options:)`` | ||
- ``setClientRole(_:)`` | ||
- ``getConnectionState()`` | ||
|
||
### Channel Events | ||
|
||
Check out ``AgoraRtcEngineDelegate`` for channel events. | ||
|
||
### Audio Management | ||
|
||
- ``enableAudio()`` | ||
- ``disableAudio()`` | ||
- ``enableLocalAudio(_:)`` | ||
- ``setAudioProfile(_:)`` | ||
- ``setAudioProfile(_:scenario:)`` | ||
- ``setAudioScenario(_:)`` | ||
- ``muteLocalAudioStream(_:)`` | ||
- ``muteRemoteAudioStream(_:mute:)`` | ||
- ``muteAllRemoteAudioStreams(_:)`` | ||
- ``setAudioSessionOperationRestriction(_:)`` | ||
- ``adjustRecordingSignalVolume(_:)`` | ||
- ``adjustUserPlaybackSignalVolume(_:volume:)`` | ||
- ``adjustCustomAudioPublishVolume(_:volume:)`` | ||
|
||
### Video Management | ||
|
||
- ``enableVideo()`` | ||
- ``disableVideo()`` | ||
- ``enableLocalVideo(_:)`` | ||
<!--- ``setRenderMode``--> | ||
<!--- ``setView``--> | ||
- ``setVideoEncoderConfiguration(_:)`` | ||
- ``startPreview()`` | ||
- ``stopPreview()`` | ||
- ``setupLocalVideo(_:)`` | ||
- ``setupRemoteVideo(_:)`` | ||
- ``setLocalRenderMode(_:mirror:)`` | ||
- ``setRemoteRenderMode(_:mode:mirror:)`` | ||
- ``setRemoteVideoStream(_:type:)`` | ||
- ``muteLocalVideoStream(_:)`` | ||
- ``muteRemoteVideoStream(_:mute:)`` | ||
- ``muteAllRemoteVideoStreams(_:)`` | ||
- ``enableInstantMediaRendering()`` | ||
- ``startMediaRenderingTracing()`` | ||
|
||
### Capture screenshots | ||
|
||
- ``takeSnapshot(_:filePath:)`` | ||
|
||
See also: ``AgoraRtcEngineDelegate/rtcEngine(_:snapshotTaken:filePath:width:height:errCode:)`` | ||
|
||
### Subscribing to and publishing audio and video streams | ||
|
||
- ``setSubscribeAudioBlocklist(_:)`` | ||
- ``setSubscribeAudioAllowlist(_:)`` | ||
- ``setSubscribeVideoBlocklist(_:)`` | ||
- ``setSubscribeVideoAllowlist(_:)`` | ||
|
||
### Multi-device capture | ||
|
||
- ``startSecondaryCameraCapture()`` | ||
- ``stopSecondaryCameraCapture()`` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters