Module Values.TransportStreamProgramSource

The metadata of a single transport stream program.

Sourcetype nonrec t = {
  1. pcrPid : Integer.t option;
    (*

    The Program Clock Reference (PCR) Packet ID (PID) as it is reported in the Program Association Table.

    *)
  2. programName : String_.t option;
    (*

    The program name as it is reported in the Program Association Table.

    *)
  3. programNumber : Integer.t option;
    (*

    The program number as it is reported in the Program Association Table.

    *)
  4. programPid : Integer.t option;
    (*

    The program Packet ID (PID) as it is reported in the Program Association Table.

    *)
  5. streams : TransportStream.t list option;
    (*

    The list of elementary transport streams in the program. The list includes video, audio, and data streams.

    *)
}
Sourceval make : ?pcrPid:??? -> ?programName:??? -> ?programNumber:??? -> ?programPid:??? -> ?streams:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t | `Structure of (string * [> `Integer of Integer.t ]) list ]) list ] list | `String of String_.t ]) 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