Skip to content
Snippets Groups Projects
Commit 593a5a93 authored by Mohamed Chibani's avatar Mohamed Chibani
Browse files

Update 6.1. Conference Protocol

parent aabaee7e
No related branches found
No related tags found
No related merge requests found
...@@ -87,14 +87,13 @@ So, if a call receives some confInfo, we know that this call is a member of a co ...@@ -87,14 +87,13 @@ So, if a call receives some confInfo, we know that this call is a member of a co
To summarize, `Call` manages received layouts, `Conference`-managed sent layouts. To summarize, `Call` manages received layouts, `Conference`-managed sent layouts.
## Moderators ## Moderator actions
A conference can be controlled (for now, only the layout can be controlled). Some actions can be performed on the conference by the moderators such changing the layout or muting a participant.
A moderator is added if on the same device as the host for now.
### Implementation ### Implementation
#### Layouts #### Change video layout
To change a layout, the moderator can send a payload with "application/confOrder+json" as type: To change a layout, the moderator can send a payload with "application/confOrder+json" as type:
``` ```
...@@ -105,7 +104,7 @@ To change a layout, the moderator can send a payload with "application/confOrder ...@@ -105,7 +104,7 @@ To change a layout, the moderator can send a payload with "application/confOrder
where **0** is a grid, **1** is one user in big, others in small, **2** is one in big where **0** is a grid, **1** is one user in big, others in small, **2** is one in big
#### Active participant #### Set participant to active state
To set a participant as active, the moderator can send a payload with "application/confOrder+json" as type: To set a participant as active, the moderator can send a payload with "application/confOrder+json" as type:
...@@ -115,7 +114,7 @@ To set a participant as active, the moderator can send a payload with "applicati ...@@ -115,7 +114,7 @@ To set a participant as active, the moderator can send a payload with "applicati
} }
``` ```
#### Moderator mute #### Mute participant
``` ```
{ {
...@@ -132,6 +131,26 @@ To set a participant as active, the moderator can send a payload with "applicati ...@@ -132,6 +131,26 @@ To set a participant as active, the moderator can send a payload with "applicati
} }
``` ```
## Regular participant actions
Some actions can be performed by all participants, including moderators.
### Implementation
#### Raise hand actions
```
{
"handUp": "uri"
}
```
```
{
"handDown": "uri"
}
```
### Controlling moderators ### Controlling moderators
There is actually 3 possibilities: There is actually 3 possibilities:
...@@ -143,5 +162,4 @@ There is actually 3 possibilities: ...@@ -143,5 +162,4 @@ There is actually 3 possibilities:
## Future ## Future
+ Multiple master management
+ Separate streams to allow more controls? + Separate streams to allow more controls?
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment