SegmentDownloadErrorData
interface SegmentDownloadErrorData extends module:Downloader.DownloadError {
message: string;
name: string;
processed: number;
url: string;
}Source: Downloader.ts:66
Information about a failed HLS segment download.
Hierarchy
DownloadErrorSegmentDownloadErrorData
Properties
message: string
Overrides message
Human-readable description of the failure.
name: string
Overrides name
The error name or type (e.g., network error, timeout, aborted).
processed: number
The current sequence number of the processed item (1-based).
url: string
Overrides url
The original segment URL as referenced in the HLS playlist (.m3u8).