Module Values.DvbSdtSettingsSource

DVB Service Description Table (SDT)

Sourcetype nonrec t = {
  1. outputSdt : DvbSdtOutputSdt.t option;
    (*

    Selects method of inserting SDT information into output stream. The sdtFollow setting copies SDT information from input stream to output stream. The sdtFollowIfPresent setting copies SDT information from input stream to output stream if SDT information is present in the input, otherwise it will fall back on the user-defined values. The sdtManual setting means user will enter the SDT information. The sdtNone setting means output stream will not contain SDT information.

    *)
  2. repInterval : int option;
    (*

    The number of milliseconds between instances of this table in the output transport stream.

    *)
  3. serviceName : string option;
    (*

    The service name placed in the serviceDescriptor in the Service Description Table. Maximum length is 256 characters.

    *)
  4. serviceProviderName : string option;
    (*

    The service provider name placed in the serviceDescriptor in the Service Description Table. Maximum length is 256 characters.

    *)
}
Sourceval make : ?outputSdt:??? -> ?repInterval:??? -> ?serviceName:??? -> ?serviceProviderName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of int | `String of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t