new MediaError(value)
A Custom MediaError class which mimics the standard HTML5 MediaError class.
Parameters:
| Name | Type | Description |
|---|---|---|
value | number | | This can be of multiple types: - number: should be a standard error code - string: an error message (the code will be 0) - Object: arbitrary properties - |
Members
(constant) MEDIA_ERR_ABORTED :number
W3C error code for media error aborted.
(constant) MEDIA_ERR_CUSTOM :number
W3C error code for any custom error.
(constant) MEDIA_ERR_DECODE :number
W3C error code for any decoding error.
(constant) MEDIA_ERR_ENCRYPTED :number
W3C error code for any time that a source is encrypted.
(constant) MEDIA_ERR_NETWORK :number
W3C error code for any network error.
(constant) MEDIA_ERR_SRC_NOT_SUPPORTED :number
W3C error code for any time that a source is not supported.
code :Number
The error code that refers two one of the defined MediaError types
message :String
An optional message that to show with the error. Message is not part of the HTML5 video spec but allows for more informative custom errors.
metadata :ErrorMetadata
An optional object to give more detail about the error. This can be used to give a higher level of specificity to an error versus the more generic MediaError codes. metadata expects an errorType string that should align with the values from videojs.Error.
status :Array
An optional status code that can be set by plugins to allow even more detail about the error. For example a plugin might provide a specific HTTP status code and an error message for that code. Then when the plugin gets that error this class will know how to display an error message for it. This allows a custom message to show up on the Player error overlay.
(static, constant) MEDIA_ERR_ABORTED :number
W3C error code for media error aborted.
(static, constant) MEDIA_ERR_CUSTOM :number
W3C error code for any custom error.
(static, constant) MEDIA_ERR_DECODE :number
W3C error code for any decoding error.
(static, constant) MEDIA_ERR_ENCRYPTED :number
W3C error code for any time that a source is encrypted.
(static, constant) MEDIA_ERR_NETWORK :number
W3C error code for any network error.
(static, constant) MEDIA_ERR_SRC_NOT_SUPPORTED :number
W3C error code for any time that a source is not supported.
(static, constant) defaultMessages :Array
(static, readonly) errorTypes :array
Errors indexed by the W3C standard. The order CANNOT CHANGE! See the specification listed under MediaError for more information.
Properties| Name | Type | Description |
|---|---|---|
0 | string | MEDIA_ERR_CUSTOM |
1 | string | MEDIA_ERR_ABORTED |
2 | string | MEDIA_ERR_NETWORK |
3 | string | MEDIA_ERR_DECODE |
4 | string | MEDIA_ERR_SRC_NOT_SUPPORTED |
5 | string | MEDIA_ERR_ENCRYPTED |