MediaEvent
Kind of class: | public class |
---|---|
Package: | |
Inherits from: |
|
Classpath: | org.asaplibrary.util.media.MediaEvent |
File last modified: | Wednesday, 11 May 2011, 22:42:25 |
Summary
Constructor
- MediaEvent (inSubtype:String, inStatus:String = null, inMetaData:VideoMetaData = null)
Constants
-
_EVENT
: String
- Generic event type
-
STATUS_CHANGE
: String
- Event sent when player status has changed
-
PLAY_STARTED
: String
- Event sent when the player starts playing video
-
PLAY_FINISHED
: String
- Event sent when the video stopped at the end
- BUFFER_EMPTY : String
- BUFFER_FLUSH : String
- CUEPOINT : String
- METADATA : String
- MEDIA_NOT_FOUND : String
- SECURITY_ERROR : String
- SEEK_INVALID : String
- STREAM_NOTFOUND : String
- CONNECTION_ERROR : String
- CONNECTION_FULL : String
Instance properties
-
subtype
: String
- specific type of event
-
status
: String
- status of media player
-
metadata
: VideoMetaData
- metadata in case of subtype METADATA
Instance methods
- clone () : Event
Constructor
MediaEvent
function MediaEvent(inSubtype:String,
inStatus:String = null,
inMetaData:VideoMetaData = null)
Constants
BUFFER_EMPTY
static const BUFFER_EMPTY:String = "onBufferEmpty"
BUFFER_FLUSH
static const BUFFER_FLUSH:String = "onBufferFlush"
CONNECTION_ERROR
static const CONNECTION_ERROR:String = "onConnectionError"
CONNECTION_FULL
static const CONNECTION_FULL:String = "onConnectionFull"
CUEPOINT
static const CUEPOINT:String = "onCuePoint"
MEDIA_NOT_FOUND
static const MEDIA_NOT_FOUND:String = "onMediaNotFound"
METADATA
static const METADATA:String = "onMetaData"
PLAY_FINISHED
static const PLAY_FINISHED:String = "onPlayFinished"
Event sent when the video stopped at the end
PLAY_STARTED
static const PLAY_STARTED:String = "onPlayStarted"
Event sent when the player starts playing video
SECURITY_ERROR
static const SECURITY_ERROR:String = "onSecurityError"
SEEK_INVALID
static const SEEK_INVALID:String = "onSeekInvalid"
STATUS_CHANGE
static const STATUS_CHANGE:String = "onStatusChange"
Event sent when player status has changed
STREAM_NOTFOUND
static const STREAM_NOTFOUND:String = "onStreamNotFound"
_EVENT
static const _EVENT:String = "mediaEvent"
Generic event type
Instance properties
status
status:String(read,write)
status of media player
subtype
subtype:String(read,write)
specific type of event
Instance methods
clone
override function clone() : Event
Overrides
- Event.clone