Pakiet | org.osmf.traits |
Klasa | public class DynamicStreamTrait |
Dziedziczenie | DynamicStreamTrait MediaTraitBase EventDispatcher Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Use the MediaElement.hasTrait(MediaTraitType.DYNAMIC_STREAM)
method to query
whether a media element has a trait of this type.
If hasTrait(MediaTraitType.DYNAMIC_STREAM)
returns true
,
use the MediaElement.getTrait(MediaTraitType.DYNAMIC_STREAM)
method
to get an object of this type.
Powiązane elementy interfejsu API
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
autoSwitch : Boolean
Defines whether or not the trait should be in manual
or auto-switch mode. | DynamicStreamTrait | ||
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
currentIndex : int [tylko do odczytu]
The index of the current dynamic stream. | DynamicStreamTrait | ||
maxAllowedIndex : int
The maximum allowed index. | DynamicStreamTrait | ||
numDynamicStreams : int [tylko do odczytu]
The total number of dynamic streams. | DynamicStreamTrait | ||
switching : Boolean [tylko do odczytu]
Indicates whether or not a switch is currently in progress. | DynamicStreamTrait | ||
traitType : String [tylko do odczytu]
The MediaTraitType for this trait. | MediaTraitBase |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
Constructor. | DynamicStreamTrait | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Rejestruje obiekt detektora zdarzeń w obiekcie EventDispatcher, dzięki czemu detektor będzie otrzymywał powiadomienia o zdarzeniu. | EventDispatcher | ||
Wywołuje zdarzenie, tj. kieruje je do przepływu zdarzeń. | EventDispatcher | ||
Disposes of any resources used by this trait. | MediaTraitBase | ||
Returns the associated bitrate, in kilobits per second, for the specified index. | DynamicStreamTrait | ||
Sprawdza, czy obiekt EventDispatcher zawiera jakiekolwiek detektory zarejestrowane dla konkretnego typu zdarzeń. | EventDispatcher | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Usuwa detektor z obiektu EventDispatcher. | EventDispatcher | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Switch to a specific index. | DynamicStreamTrait | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg reprezentujący określony obiekt. | Object | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object | ||
Sprawdza, czy detektor zdarzeń określonego typu jest zarejestrowany w tym obiekcie EventDispatcher lub jego elementach macierzystych. | EventDispatcher |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
Called just after the autoSwitch property has changed. | DynamicStreamTrait | ||
Called immediately before the autoSwitch property is changed. | DynamicStreamTrait | ||
Called just after the maxAllowedIndex property has changed. | DynamicStreamTrait | ||
Called immediately before the maxAllowedIndex property is changed. | DynamicStreamTrait | ||
Invoking this setter will result in the trait's currentIndex
property changing. | DynamicStreamTrait | ||
Invoking this setter will result in the trait's numDynamicStreams
property changing. | DynamicStreamTrait | ||
Must be called by the implementing media on completing a switch. | DynamicStreamTrait | ||
Called just after the switching property has changed. | DynamicStreamTrait | ||
Called immediately before the switching property is changed. | DynamicStreamTrait |
Zdarzenie | Podsumowanie | Zdefiniowane przez | ||
---|---|---|---|---|
[zdarzenie broadcast] Wywoływane, gdy program Flash Player lub aplikacja środowiska wykonawczego AIR uzyskuje fokus w systemie operacyjnym i przechodzi w stan aktywny. | EventDispatcher | |||
Dispatched when the autoSwitch property changed. | DynamicStreamTrait | |||
[zdarzenie broadcast] Wywoływane, gdy program Flash Player lub aplikacja AIR traci fokus w systemie operacyjnym i przechodzi w stan nieaktywny. | EventDispatcher | |||
Dispatched when the number of dynamic streams has changed. | DynamicStreamTrait | |||
Dispatched when a stream switch is requested, completed, or failed. | DynamicStreamTrait |
autoSwitch | właściwość |
autoSwitch:Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Defines whether or not the trait should be in manual
or auto-switch mode. If in manual mode the switchTo
method can be used to manually switch to a specific stream.
Implementacja
public function get autoSwitch():Boolean
public function set autoSwitch(value:Boolean):void
currentIndex | właściwość |
maxAllowedIndex | właściwość |
maxAllowedIndex:int
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
The maximum allowed index. This can be set at run-time to provide a ceiling for the switching profile, for example, to keep from switching up to a higher quality stream when the current video is too small to handle a higher quality stream. The default is the highest stream index.
Implementacja
public function get maxAllowedIndex():int
public function set maxAllowedIndex(value:int):void
Zgłasza
RangeError — If the specified index is less than zero or
greater than the total number of dynamic streams.
|
numDynamicStreams | właściwość |
switching | właściwość |
switching:Boolean
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Indicates whether or not a switch is currently in progress.
This property will return true
while a switch has been
requested and the switch has not yet been acknowledged and no switch failure
has occurred. Once the switch request has been acknowledged or a
failure occurs, the property will return false
.
Implementacja
public function get switching():Boolean
DynamicStreamTrait | () | Konstruktor |
public function DynamicStreamTrait(autoSwitch:Boolean = true, currentIndex:int = 0, numDynamicStreams:int = 1)
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Constructor.
ParametryautoSwitch:Boolean (default = true ) — The initial autoSwitch state for the trait. The default is true.
| |
currentIndex:int (default = 0 ) — The initial stream index for the trait. The default is zero.
| |
numDynamicStreams:int (default = 1 ) — The total number of dynamic streams.
|
autoSwitchChangeEnd | () | metoda |
protected function autoSwitchChangeEnd():void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Called just after the autoSwitch
property has changed.
Dispatches the change event.
Subclasses that override should call this method to dispatch the change event.
autoSwitchChangeStart | () | metoda |
protected function autoSwitchChangeStart(value:Boolean):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Called immediately before the autoSwitch
property is changed.
Subclasses can override this method to communicate the change to the media.
Parametry
value:Boolean — New value for the autoSwitch property.
|
getBitrateForIndex | () | metoda |
public function getBitrateForIndex(index:int):Number
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Returns the associated bitrate, in kilobits per second, for the specified index.
Parametry
index:int |
Number |
Zgłasza
RangeError — If the specified index is less than zero or
greater than the highest index available.
|
maxAllowedIndexChangeEnd | () | metoda |
protected function maxAllowedIndexChangeEnd():void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Called just after the maxAllowedIndex
property has changed.
maxAllowedIndexChangeStart | () | metoda |
protected function maxAllowedIndexChangeStart(newIndex:int):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Called immediately before the maxAllowedIndex
property is changed.
Subclasses can override this method to communicate the change to the media.
Parametry
newIndex:int — New value for the maxAllowedIndex property.
|
setCurrentIndex | () | metoda |
setNumDynamicStreams | () | metoda |
setSwitching | () | metoda |
protected final function setSwitching(newSwitching:Boolean, index:int):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Must be called by the implementing media on completing a switch.
Calls the switchingChangeStart()
and switchingChangeEnd()
methods.
Parametry
newSwitching:Boolean — New switching value for the trait.
| |
index:int — The index to which the switch shall (or did) occur.
|
switchingChangeEnd | () | metoda |
protected function switchingChangeEnd(index:int):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Called just after the switching
property has changed.
Dispatches the change event.
Subclasses that override should call this method to dispatch the change event.
Parametry
index:int — The index of the switched-to stream.
|
switchingChangeStart | () | metoda |
protected function switchingChangeStart(newSwitching:Boolean, index:int):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Called immediately before the switching
property is changed.
Subclasses can override this method to communicate the change to the media.
Parametry
newSwitching:Boolean — New value for the switching property.
| |
index:int — The index of the stream to switch to.
|
switchTo | () | metoda |
public function switchTo(index:int):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Switch to a specific index. To switch up, use the currentIndex
property, such as:
obj.switchTo(obj.currentIndex + 1);
Parametry
index:int |
Zgłasza
RangeError — If the specified index is less than zero or
greater than maxAllowedIndex .
Note: If the media is paused, switching will not take place until after play resumes.
| |
IllegalOperationError — If the stream is not in manual switch mode.
|
Powiązane elementy interfejsu API
autoSwitchChange | Zdarzenie |
org.osmf.events.DynamicStreamEvent
właściwość DynamicStreamEvent.type =
org.osmf.events.DynamicStreamEvent.AUTO_SWITCH_CHANGE
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Dispatched when the autoSwitch property changed.
The DynamicStreamEvent.AUTO_SWITCH_CHANGE constant defines the value of the type property of the event object for an autoSwitchChange event.numDynamicStreamsChange | Zdarzenie |
org.osmf.events.DynamicStreamEvent
właściwość DynamicStreamEvent.type =
org.osmf.events.DynamicStreamEvent.NUM_DYNAMIC_STREAMS_CHANGE
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Dispatched when the number of dynamic streams has changed.
The DynamicStreamEvent.NUM_DYNAMIC_STREAMS_CHANGE constant defines the value of the type property of the event object for a numDynamicStreamsChange event.switchingChange | Zdarzenie |
org.osmf.events.DynamicStreamEvent
właściwość DynamicStreamEvent.type =
org.osmf.events.DynamicStreamEvent.SWITCHING_CHANGE
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | OSMF 1.0 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Dispatched when a stream switch is requested, completed, or failed.
The DynamicStreamEvent.SWITCHING_CHANGE constant defines the value of the type property of the event object for a switchingChange event.Tue Jun 12 2018, 12:06 PM Z