Module Values.DvbNitSettingsSource

Use these settings to insert a DVB Network Information Table (NIT) in the transport stream of this output.

Sourcetype nonrec t = {
  1. networkId : int option;
    (*

    The numeric value placed in the Network Information Table (NIT).

    *)
  2. networkName : string option;
    (*

    The network name text placed in the network_name_descriptor inside the Network Information Table. Maximum length is 256 characters.

    *)
  3. nitInterval : int option;
    (*

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

    *)
}
Sourceval make : ?networkId:??? -> ?networkName:??? -> ?nitInterval:??? -> unit -> t
Sourceval to_value : t -> [> `Structure 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