VideoPlayer
Kind of class: | public class |
---|---|
Package: | |
Inherits from: |
|
Implements: | |
Classpath: | org.asaplibrary.ui.video.VideoPlayer |
File last modified: | Wednesday, 11 May 2011, 18:48:17 |
// create videoplayer var video:VideoPlayer = new VideoPlayer(320, 240); // add videoplayer to stage or displaylist addChild(video); // position videoplayer video.x = 20; video.y = 20; // set source url video.setSourceURL(url) // start playing the video video.play();
Summary
-
VideoPlayer
(inWidth:Number, inHeight:Number, inSmooth:Boolean = true)
- Constructor
-
show
() : void
- Set visibility of video on true - doesn't start playing the video
-
hide
() : void
- Set visibility of video on false & stop the video
-
setSourceURL
(inURL:String) : void
- Set the url for the video
-
setBufferTime
(inSeconds:Number) : void
- Set the number of seconds to buffer before play starts.
-
play
() : void
- start movie from beginning
-
pause
() : void
- Pause the video
-
resume
() : void
- Resume the video after pause
-
stop
() : void
- Stop the video
-
resizeVideo
(inWidth:Number, inHeight:Number) : void
- Change video size
-
getBytesLoaded
() : uint
- The loading progress of the movie.
-
getBytesTotal
() : uint
- The total size of the movie.
-
getMetaData
() : VideoMetaData
- Returns metadata of loaded movie
-
getCurrentCuePoint
() : VideoCuePoint
- Returns most recent cuepoint
-
setVolume
(inVolume:Number) : void
- Set volume between 0 and 1
- getVolume () : Number
- getStatus () : String
-
addLoadProgressHandler
(inHandler:Function) : void
- Add a handler for loading progress
-
addPlayProgressHandler
(inHandler:Function) : void
- Add a handler for play progress
-
addMediaEventHandler
(inHandler:Function) : void
- Add a handler for MediaEvent type events
-
removeLoadProgressHandler
(inHandler:Function) : void
- Remove previously added handler for ProgressEvent type events for loading
-
removePlayProgressHandler
(inHandler:Function) : void
- Remove previously added handler for ProgressEvent type events for playing
-
removeMediaEventHandler
(inHandler:Function) : void
- Remove previously added handler for MediaEvent type events
-
goNext
() : void
- Does nothing
-
goPrev
() : void
- Does nothing
-
goStart
() : void
- Go to beginning of video
-
goEnd
() : void
- Go to end of video
- getPosition () : Number
-
setPosition
(inSeconds:Number) : void
- Go to specified play position
- getDuration () : Number
- toString () : String
Constructor
VideoPlayer
Constructor
Instance methods
addLoadProgressHandler
Add a handler for loading progress
addMediaEventHandler
Add a handler for MediaEvent type events
addPlayProgressHandler
Add a handler for play progress
getBytesLoaded
The loading progress of the movie.
getBytesTotal
The total size of the movie.
getDuration
- the duration of the video in seconds
getPosition
- the current play position in seconds
getStatus
- videoplayer status
getVolume
- the current video sound volume
goEnd
Go to end of video
goNext
Does nothing
goPrev
Does nothing
goStart
Go to beginning of video
hide
Set visibility of video on false & stop the video
pause
Pause the video
play
start movie from beginning
removeLoadProgressHandler
Remove previously added handler for ProgressEvent type events for loading
removeMediaEventHandler
Remove previously added handler for MediaEvent type events
removePlayProgressHandler
Remove previously added handler for ProgressEvent type events for playing
resizeVideo
Change video size
resume
Resume the video after pause
setBufferTime
Set the number of seconds to buffer before play starts. Default value is 10 seconds. NB: This must be lower than the length of the whole video, otherwise the MediaEvent.PLAY_STARTED event will never be fired.
setPosition
Go to specified play position
setSourceURL
Set the url for the video
setVolume
Set volume between 0 and 1
show
Set visibility of video on true - doesn't start playing the video
stop
Stop the video
toString
- Sprite.toString