| Package | com.adobe.mediacore |
| Class | public class MediaPlayerStatus |
| Inheritance | MediaPlayerStatus Object |
status
property.
| Constant | Defined By | ||
|---|---|---|---|
| COMPLETE : String = complete [static]
The playback of the current media item is complete. | MediaPlayerStatus | ||
| ERROR : String = error [static]
The player has encountered an error and the playback is stopped. | MediaPlayerStatus | ||
| INITIALIZED : String = initialized [static]
The provided media player item has been sucessfully initialized
and all associated data have been retrieved. | MediaPlayerStatus | ||
| INITIALIZING : String = initializing [static]
The media player has been created and is currently waiting
for a media player item to be provided for further processing. | MediaPlayerStatus | ||
| PAUSED : String = paused [static]
The playback of current selected media item is paused. | MediaPlayerStatus | ||
| PLAYING : String = playing [static]
The playback of current selected media item is in progress. | MediaPlayerStatus | ||
| READY : String = ready [static]
All associated components have been successfully initialized. | MediaPlayerStatus | ||
| RELEASED : String = released [static]
The player's internals have been released. | MediaPlayerStatus | ||
| COMPLETE | Constant |
public static const COMPLETE:String = complete
The playback of the current media item is complete.
No additional data will be downloaded unless the playhead
is reset through method seek.
| ERROR | Constant |
public static const ERROR:String = errorThe player has encountered an error and the playback is stopped.
| INITIALIZED | Constant |
public static const INITIALIZED:String = initializedThe provided media player item has been sucessfully initialized and all associated data have been retrieved. The player is currently for additional components to complete there initialization ( FAXS ).
| INITIALIZING | Constant |
public static const INITIALIZING:String = initializingThe media player has been created and is currently waiting for a media player item to be provided for further processing.
| PAUSED | Constant |
public static const PAUSED:String = pausedThe playback of current selected media item is paused. Even in this phase the media player might download additional data in order to fulfill the buffer policies.
| PLAYING | Constant |
public static const PLAYING:String = playingThe playback of current selected media item is in progress. During this state the media player can dispatch additional events to notify the client about buffering or seeking events which may take place.
| READY | Constant |
public static const READY:String = ready
All associated components have been successfully initialized.
The playback can start.
The player is currently waiting for method play or
seek to be invoked to start playback.
| RELEASED | Constant |
public static const RELEASED:String = releasedThe player's internals have been released. It is no longer usable. This is a dead end of the state machine, the player must be deleted and a new player created.