parent
5c96f45556
commit
38796de79a
@ -0,0 +1 @@
|
|||||||
|
Add support for multi-stream VoIP, as per [MSC3077](https://github.com/matrix-org/matrix-spec-proposals/pull/3077).
|
@ -0,0 +1,27 @@
|
|||||||
|
type: object
|
||||||
|
x-addedInMatrixVersion: "1.10"
|
||||||
|
description: |-
|
||||||
|
Metadata describing the [streams](/client-server-api/#streams) that will be
|
||||||
|
sent.
|
||||||
|
|
||||||
|
This is a map of stream ID to metadata about the stream.
|
||||||
|
additionalProperties:
|
||||||
|
type: object
|
||||||
|
title: StreamMetadata
|
||||||
|
description: Metadata describing a stream.
|
||||||
|
properties:
|
||||||
|
purpose:
|
||||||
|
type: string
|
||||||
|
enum:
|
||||||
|
- m.usermedia
|
||||||
|
- m.screenshare
|
||||||
|
description: |-
|
||||||
|
The purpose of the stream.
|
||||||
|
|
||||||
|
The possible values are:
|
||||||
|
|
||||||
|
* `m.usermedia`: Stream that contains the webcam and/or microphone
|
||||||
|
tracks.
|
||||||
|
* `m.screenshare`: Stream with the screen-sharing tracks.
|
||||||
|
required:
|
||||||
|
- purpose
|
Loading…
Reference in New Issue