Paket | org.osmf.net |
Klass | public class StreamingItem |
Arv | StreamingItem Object |
Språkversion: | ActionScript 3.0 |
Produktversion: | OSMF 1.6 |
Körningsmiljöversioner: | Flash Player 10, AIR 1.5 |
Relaterade API-element
Publika egenskaper
Egenskap | Definieras med | ||
---|---|---|---|
bitrate : Number [skrivskyddad]
Returns a Number giving the stream’s bit rate,
specified in kilobits per second (kbps). | StreamingItem | ||
constructor : Object
En referens till klassobjektet eller konstruktorfunktionen för en given objektinstans. | Object | ||
info : Object [skrivskyddad]
Returns an Object containing any custom information
associated with the stream. | StreamingItem | ||
streamName : String [skrivskyddad]
Returns a String used to identify the stream. | StreamingItem | ||
type : String [skrivskyddad]
Returns a String specifying the type of the stream. | StreamingItem |
Publika metoder
Metod | Definieras med | ||
---|---|---|---|
Default constructor
| StreamingItem | ||
Anger om det finns en egenskap angiven för ett objekt. | Object | ||
Anger om en instans av klassen Object finns i prototypkedjan för objektet som anges som parameter. | Object | ||
Anger om den angivna egenskapen finns och är uppräkningsbar. | Object | ||
Anger tillgänglighet för en dynamisk egenskap för slingåtgärder. | Object | ||
Returnerar det här objektets strängrepresentation, formaterad i enlighet med språkspecifika konventioner. | Object | ||
Returnerar det angivna objektets strängbeteckning. | Object | ||
Returnerar det angivna objektets primitiva värde. | Object |
Egenskapsdetaljer
bitrate | egenskap |
info | egenskap |
info:Object
[skrivskyddad] Språkversion: | ActionScript 3.0 |
Produktversion: | OSMF 1.6 |
Körningsmiljöversioner: | Flash Player 10, AIR 1.5 |
Returns an Object
containing any custom information
associated with the stream. Typically, this can include the width
and height of the video, but it could also contain a user-friendly
description of the stream.
Implementering
public function get info():Object
streamName | egenskap |
type | egenskap |
type:String
[skrivskyddad] Språkversion: | ActionScript 3.0 |
Produktversion: | OSMF 1.6 |
Körningsmiljöversioner: | Flash Player 10, AIR 1.5 |
Returns a String
specifying the type of the stream.
Possible values are VIDEO
, for a stream that includes
video, and AUDIO
, for a stream that contains only audio.
Implementering
public function get type():String
Konstruktordetaljer
StreamingItem | () | Konstruktor |
public function StreamingItem(type:String, streamName:String, bitrate:Number = 0, info:Object = null)
Språkversion: | ActionScript 3.0 |
Produktversion: | OSMF 1.6 |
Körningsmiljöversioner: | Flash Player 10, AIR 1.5 |
Default constructor
Parametrartype:String — The StreamingItemType of the stream. Allowed values
are VIDEO , for a stream that includes video, and
AUDIO , for a stream that contains only audio.
| |
streamName:String — A String used to identify this stream.
| |
bitrate:Number (default = 0 ) — A Number specifying the stream’s encoded bit rate
in kbps (kilobits per second).
| |
info:Object (default = null ) — An Object containing any custom information associated
with the stream. Typically, this can include the width and height
of the video, but it could also contain a user-friendly description
of the stream.
|
Tue Jun 12 2018, 01:40 PM Z