Pacchetto | org.osmf.net |
Classe | public class StreamingItem |
Ereditarietà | StreamingItem Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.6 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Elementi API correlati
Proprietà pubbliche
Proprietà | Definito da | ||
---|---|---|---|
bitrate : Number [sola lettura]
Returns a Number giving the stream’s bit rate,
specified in kilobits per second (kbps). | StreamingItem | ||
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
info : Object [sola lettura]
Returns an Object containing any custom information
associated with the stream. | StreamingItem | ||
streamName : String [sola lettura]
Returns a String used to identify the stream. | StreamingItem | ||
type : String [sola lettura]
Returns a String specifying the type of the stream. | StreamingItem |
Metodi pubblici
Metodo | Definito da | ||
---|---|---|---|
Default constructor
| StreamingItem | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
Descrizione delle proprietà
bitrate | proprietà |
info | proprietà |
info:Object
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.6 |
Versioni runtime: | 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.
Implementazione
public function get info():Object
streamName | proprietà |
type | proprietà |
type:String
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.6 |
Versioni runtime: | 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.
Implementazione
public function get type():String
Descrizione della funzione di costruzione
StreamingItem | () | Funzione di costruzione |
public function StreamingItem(type:String, streamName:String, bitrate:Number = 0, info:Object = null)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.6 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Default constructor
Parametritype: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, 02:44 PM Z