VideoError.NO_BITRATE_MATCH

Availability

Flash Player 8.

Edition

Flash Professional 8.

Usage

mx.video.VideoError.NO_BITRATE_MATCH

Description

A value of 1006, which indicates that there is no default FLV file listed that matches any bit rate. Occurs only when downloading and parsing a SMIL file. For more information, see Using a SMIL file.

Example

The following code checks for the NO_BITRATE_MATCH error code:

import mx.video.*;

try {
    ...
} catch (err:VideoError) {

if (err.code == NO_BITRATE_MATCH) {
        ...
    }

}

See also

FLVPlayback.bitrate