Values.AddMediaStreamRequestSourceThe media stream that you want to add to the flow.
type nonrec t = {attributes : MediaStreamAttributesRequest.t option;The attributes that you want to assign to the new media stream.
*)clockRate : Integer.t option;The sample rate (in Hz) for the stream. If the media stream type is video or ancillary data, set this value to 90000. If the media stream type is audio, set this value to either 48000 or 96000.
*)description : String_.t option;A description that can help you quickly identify what your media stream is used for.
*)mediaStreamId : Integer.t;A unique identifier for the media stream.
*)mediaStreamName : String_.t;A name that helps you distinguish one media stream from another.
*)mediaStreamType : MediaStreamType.t;The type of media stream.
*)videoFormat : String_.t option;The resolution of the video.
*)mediaStreamTags : (String_.t * String_.t) list option;The key-value pairs that can be used to tag and organize the media stream.
*)}val make :
?attributes:??? ->
?clockRate:??? ->
?description:??? ->
?videoFormat:??? ->
?mediaStreamTags:??? ->
mediaStreamId:Integer.t ->
mediaStreamName:String_.t ->
mediaStreamType:MediaStreamType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of Integer.t
| `Map of
([> `String of String_.t ] * [> `String of String_.t ]) list
| `String of String_.t
| `Structure of
(string
* [> `String of String_.t
| `Structure of
(string * [> `Enum of string | `String of String_.t ]) list ])
list ])
list ]