Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

M3u8Settings

import type { M3u8Settings } from "https://aws-api.deno.dev/v0.3/services/medialive.ts?docs=full";

Settings information for the .m3u8 container

interface M3u8Settings {
AudioFramesPerPes?: number | null;
AudioPids?: string | null;
EcmPid?: string | null;
NielsenId3Behavior?: M3u8NielsenId3Behavior | null;
PatInterval?: number | null;
PcrControl?: M3u8PcrControl | null;
PcrPeriod?: number | null;
PcrPid?: string | null;
PmtInterval?: number | null;
PmtPid?: string | null;
ProgramNum?: number | null;
Scte35Behavior?: M3u8Scte35Behavior | null;
Scte35Pid?: string | null;
TimedMetadataBehavior?: M3u8TimedMetadataBehavior | null;
TimedMetadataPid?: string | null;
TransportStreamId?: number | null;
VideoPid?: string | null;
}

§Properties

§
AudioFramesPerPes?: number | null
[src]

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

§
AudioPids?: string | null
[src]

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.

§
EcmPid?: string | null
[src]

This parameter is unused and deprecated.

§
NielsenId3Behavior?: M3u8NielsenId3Behavior | null
[src]

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.

§
PatInterval?: number | null
[src]

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.

§
PcrControl?: M3u8PcrControl | null
[src]

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.

§
PcrPeriod?: number | null
[src]

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

§
PcrPid?: string | null
[src]

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.

§
PmtInterval?: number | null
[src]

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.

§
PmtPid?: string | null
[src]

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

§
ProgramNum?: number | null
[src]

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

§
Scte35Behavior?: M3u8Scte35Behavior | null
[src]

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

§
Scte35Pid?: string | null
[src]

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

§
TimedMetadataBehavior?: M3u8TimedMetadataBehavior | null
[src]

When set to passthrough, timed metadata is passed through from input to output.

§
TimedMetadataPid?: string | null
[src]

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).

§
TransportStreamId?: number | null
[src]

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

§
VideoPid?: string | null
[src]

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