new MediaError(value)
A Custom MediaError
class which mimics the standard HTML5 MediaError
class.
Parameters:
Name | Type | Description |
---|---|---|
value |
number | string | Object | MediaError | 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
-
static, constant defaultMessages :Array
-
The default
MediaError
messages based on the MediaError.errorTypes. -
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
-
static, constant MEDIA_ERR_ABORTED :number
-
W3C error code for media error aborted.
- Default Value:
- 1
-
static, constant MEDIA_ERR_CUSTOM :number
-
W3C error code for any custom error.
- Default Value:
- 0
-
static, constant MEDIA_ERR_DECODE :number
-
W3C error code for any decoding error.
- Default Value:
- 3
-
static, constant MEDIA_ERR_ENCRYPTED :number
-
W3C error code for any time that a source is encrypted.
- Default Value:
- 5
-
static, constant MEDIA_ERR_NETWORK :number
-
W3C error code for any network error.
- Default Value:
- 2
-
static, constant MEDIA_ERR_SRC_NOT_SUPPORTED :number
-
W3C error code for any time that a source is not supported.
- Default Value:
- 4
-
code :Number
-
The error code that refers two one of the defined
MediaError
types -
constant MEDIA_ERR_ABORTED :number
-
W3C error code for media error aborted.
- Default Value:
- 1
-
constant MEDIA_ERR_CUSTOM :number
-
W3C error code for any custom error.
- Default Value:
- 0
-
constant MEDIA_ERR_DECODE :number
-
W3C error code for any decoding error.
- Default Value:
- 3
-
constant MEDIA_ERR_ENCRYPTED :number
-
W3C error code for any time that a source is encrypted.
- Default Value:
- 5
-
constant MEDIA_ERR_NETWORK :number
-
W3C error code for any network error.
- Default Value:
- 2
-
constant MEDIA_ERR_SRC_NOT_SUPPORTED :number
-
W3C error code for any time that a source is not supported.
- Default Value:
- 4
-
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.
-
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.