Skip to content
Type

HlsOutputPlaylistInfo

Info about an HLS media playlist.

ts
type HlsOutputPlaylistInfo = {
	n: number;
	tracks: OutputTrack[];
	segmentFormat: OutputFormat;
};

See OutputTrack and OutputFormat.

Used by

Properties

n

ts
n: number;

The 1-based index of the media playlist in the master playlist.

tracks

ts
tracks: OutputTrack[];

The output tracks contained in this playlist.

See OutputTrack.

segmentFormat

ts
segmentFormat: OutputFormat;

The format of the media segments in this playlist.

See OutputFormat.

Released under the Mozilla Public License 2.0.