Interface MediaError
interface MediaError {
code: number;
MEDIA_ERR_ABORTED: 1;
MEDIA_ERR_DECODE: 3;
MEDIA_ERR_NETWORK: 2;
MEDIA_ERR_SRC_NOT_SUPPORTED: 4;
message: string;
}
code: number;
MEDIA_ERR_ABORTED: 1;
MEDIA_ERR_DECODE: 3;
MEDIA_ERR_NETWORK: 2;
MEDIA_ERR_SRC_NOT_SUPPORTED: 4;
message: string;
}
Properties
Readonlycode
code: number
The read-only property MediaError.code returns a numeric value which represents the kind of error that occurred on a media element.
ReadonlyMEDIA_ERR_ABORTED
MEDIA_ERR_ABORTED: 1
ReadonlyMEDIA_ERR_DECODE
MEDIA_ERR_DECODE: 3
ReadonlyMEDIA_ERR_NETWORK
MEDIA_ERR_NETWORK: 2
ReadonlyMEDIA_ERR_SRC_NOT_SUPPORTED
MEDIA_ERR_SRC_NOT_SUPPORTED: 4
Readonlymessage
message: string
The read-only property MediaError.message returns a human-readable string offering specific diagnostic details related to the error described by the MediaError object, or an empty string ('') if no diagnostic information can be determined or provided.
The
MediaErrorinterface represents an error which occurred while handling media in an HTML media element based on HTMLMediaElement, such as audio or video.MDN Reference