Type
HlsOutputPlaylistInfo
Info about an HLS media playlist.
ts
type HlsOutputPlaylistInfo = {
n: number;
tracks: OutputTrack[];
segmentFormat: OutputFormat;
};See OutputTrack and OutputFormat.
Used by
HlsOutputFormatOptions.getInitPathHlsOutputFormatOptions.getPlaylistPathHlsOutputFormatOptions.onInitHlsOutputFormatOptions.onPlaylistHlsOutputSegmentInfo.playlist
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.