Module Values.M3u8SettingsSource

Settings information for the .m3u8 container

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

    The number of audio frames to insert for each PES packet.

    *)
  2. audioPids : string option;
    (*

    Packet Identifier (PID) of the elementary audio stream(s) in the transport stream. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values.

    *)
  3. ecmPid : string option;
    (*

    This parameter is unused and deprecated.

    *)
  4. nielsenId3Behavior : M3u8NielsenId3Behavior.t option;
    (*

    If set to passthrough, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.

    *)
  5. patInterval : int option;
    (*

    The number of milliseconds between instances of this table in the output transport stream. A value of \"0\" writes out the PMT once per segment file.

    *)
  6. pcrControl : M3u8PcrControl.t option;
    (*

    When set to pcrEveryPesPacket, a Program Clock Reference value is inserted for every Packetized Elementary Stream (PES) header. This parameter is effective only when the PCR PID is the same as the video or audio elementary stream.

    *)
  7. pcrPeriod : int option;
    (*

    Maximum time in milliseconds between Program Clock References (PCRs) inserted into the transport stream.

    *)
  8. pcrPid : string option;
    (*

    Packet Identifier (PID) of the Program Clock Reference (PCR) in the transport stream. When no value is given, the encoder will assign the same value as the Video PID. Can be entered as a decimal or hexadecimal value.

    *)
  9. pmtInterval : int option;
    (*

    The number of milliseconds between instances of this table in the output transport stream. A value of \"0\" writes out the PMT once per segment file.

    *)
  10. pmtPid : string option;
    (*

    Packet Identifier (PID) for the Program Map Table (PMT) in the transport stream. Can be entered as a decimal or hexadecimal value.

    *)
  11. programNum : int option;
    (*

    The value of the program number field in the Program Map Table.

    *)
  12. scte35Behavior : M3u8Scte35Behavior.t option;
    (*

    If set to passthrough, passes any SCTE-35 signals from the input source to this output.

    *)
  13. scte35Pid : string option;
    (*

    Packet Identifier (PID) of the SCTE-35 stream in the transport stream. Can be entered as a decimal or hexadecimal value.

    *)
  14. timedMetadataBehavior : M3u8TimedMetadataBehavior.t option;
    (*

    Set to PASSTHROUGH to enable ID3 metadata insertion. To include metadata, you configure other parameters in the output group or individual outputs, or you add an ID3 action to the channel schedule.

    *)
  15. timedMetadataPid : string option;
    (*

    Packet Identifier (PID) of the timed metadata stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).

    *)
  16. transportStreamId : int option;
    (*

    The value of the transport stream ID field in the Program Map Table.

    *)
  17. videoPid : string option;
    (*

    Packet Identifier (PID) of the elementary video stream in the transport stream. Can be entered as a decimal or hexadecimal value.

    *)
  18. klvBehavior : M3u8KlvBehavior.t option;
    (*

    If set to passthrough, passes any KLV data from the input source to this output.

    *)
  19. klvDataPids : string option;
    (*

    Packet Identifier (PID) for input source KLV data to this output. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values. Each PID specified must be in the range of 32 (or 0x20)..8182 (or 0x1ff6).

    *)
}
Sourceval make : ?audioFramesPerPes:??? -> ?audioPids:??? -> ?ecmPid:??? -> ?nielsenId3Behavior:??? -> ?patInterval:??? -> ?pcrControl:??? -> ?pcrPeriod:??? -> ?pcrPid:??? -> ?pmtInterval:??? -> ?pmtPid:??? -> ?programNum:??? -> ?scte35Behavior:??? -> ?scte35Pid:??? -> ?timedMetadataBehavior:??? -> ?timedMetadataPid:??? -> ?transportStreamId:??? -> ?videoPid:??? -> ?klvBehavior:??? -> ?klvDataPids:??? -> 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