Values.NdiMediaStreamInfoSourceDetailed information about a single media stream that is part of an NDI® source. This includes details about the stream type, codec, resolution, frame rate, audio channels, and sample rate.
type nonrec t = {streamType : String_.t option;The type of media stream (for example, Video or Audio).
*)codec : String_.t option;The codec used for the media stream. For NDI sources, use speed-hq.
*)streamId : Integer.t option;A unique identifier for the media stream.
*)scanMode : ScanMode.t option;The method used to display video frames. Used when the streamType is Video.
*)frameResolution : FrameResolution.t option;The width and height dimensions of the video frame in pixels. Used when the streamType is Video.
*)frameRate : String_.t option;The number of video frames displayed per second. Used when the streamType is Video.
*)channels : Integer.t option;The number of audio channels in the stream. Used when the streamType is Audio.
*)sampleRate : Integer.t option;The number of audio samples captured per second, measured in kilohertz (kHz). Used when the streamType is Audio.
*)}