| Package | gs.display.flv |
| Class | public class FLVPlaybackQManager |
| Inheritance | FLVPlaybackQManager flash.events.EventDispatcher |
Examples are in the guttershark repository.
| Property | Defined by | ||
|---|---|---|---|
| continueWhenTimeLeft : Number = 3
The time in seconds remaining in the currently playing clip
before triggering the next clip to play.
| FLVPlaybackQManager | ||
| crossfadeDuration : Number = 1
The crossfade duration between two clips.
| FLVPlaybackQManager | ||
| isRTMP : Boolean [read-only]
Indicates whether or not the currently playing clip is RTMP.
| FLVPlaybackQManager | ||
| player : FLVPlayback
The FLVPlayback instance used to play through the queue.
| FLVPlaybackQManager | ||
| queue : Array [write-only]
Set the queue of file's to play through.
| FLVPlaybackQManager | ||
| source : String [read-only]
The source URI for the currently playing video.
| FLVPlaybackQManager | ||
| streamAttemptTimeBeforeFail : Number [write-only]
Set the time (in seconds) allowed for a stream attempt, before it is considered
a failed attempt.
| FLVPlaybackQManager | ||
| Method | Defined by | ||
|---|---|---|---|
|
Constructor for FLVPlaybackQManager instances.
| FLVPlaybackQManager | ||
|
pause():void
Pause the queue.
| FLVPlaybackQManager | ||
|
playNext():void
Play the next video in the queue.
| FLVPlaybackQManager | ||
|
playNow(source:String):void
Interupt the queue and play the specified file immediately.
| FLVPlaybackQManager | ||
|
reset():void
Resets everything internally.
| FLVPlaybackQManager | ||
|
start():void
Start playing the queue.
| FLVPlaybackQManager | ||
|
stop():void
Stop the queue.
| FLVPlaybackQManager | ||
| continueWhenTimeLeft | property |
public var continueWhenTimeLeft:Number = 3The time in seconds remaining in the currently playing clip before triggering the next clip to play.
| crossfadeDuration | property |
public var crossfadeDuration:Number = 1The crossfade duration between two clips.
| isRTMP | property |
isRTMP:Boolean [read-only]Indicates whether or not the currently playing clip is RTMP.
Implementation public function get isRTMP():Boolean
| player | property |
player:FLVPlayback [read-write]The FLVPlayback instance used to play through the queue.
Implementation public function get player():FLVPlayback
public function set player(value:FLVPlayback):void
| queue | property |
queue:Array [write-only]Set the queue of file's to play through. You can use relative, http, and rtmp locations.
Implementation public function set queue(value:Array):void
| source | property |
source:String [read-only]The source URI for the currently playing video.
Implementation public function get source():String
| streamAttemptTimeBeforeFail | property |
streamAttemptTimeBeforeFail:Number [write-only]Set the time (in seconds) allowed for a stream attempt, before it is considered a failed attempt. If a stream does not play before the timeout, the stream is closed and the next video is played.
Implementation public function set streamAttemptTimeBeforeFail(value:Number):void
| FLVPlaybackQManager | () | constructor |
public function FLVPlaybackQManager()Constructor for FLVPlaybackQManager instances.
| pause | () | method |
public function pause():voidPause the queue.
| playNext | () | method |
public function playNext():voidPlay the next video in the queue.
| playNow | () | method |
public function playNow(source:String):voidInterupt the queue and play the specified file immediately.
Parameterssource:String — The video source path.
|
| reset | () | method |
public function reset():voidResets everything internally. Clears the queue.
| start | () | method |
public function start():voidStart playing the queue.
| stop | () | method |
public function stop():voidStop the queue.