Paquete | org.osmf.net |
Clase | public class StreamingItem |
Herencia | StreamingItem Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 1.6 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Elementos de API relacionados
Propiedades públicas
Propiedad | Definido por | ||
---|---|---|---|
bitrate : Number [solo lectura]
Returns a Number giving the stream’s bit rate,
specified in kilobits per second (kbps). | StreamingItem | ||
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
info : Object [solo lectura]
Returns an Object containing any custom information
associated with the stream. | StreamingItem | ||
streamName : String [solo lectura]
Returns a String used to identify the stream. | StreamingItem | ||
type : String [solo lectura]
Returns a String specifying the type of the stream. | StreamingItem |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
Default constructor
| StreamingItem | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Devuelve el valor simple del objeto especificado. | Object |
Información sobre propiedades
bitrate | propiedad |
info | propiedad |
info:Object
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 1.6 |
Versiones de motor de ejecución: | 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.
Implementación
public function get info():Object
streamName | propiedad |
type | propiedad |
type:String
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 1.6 |
Versiones de motor de ejecución: | 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.
Implementación
public function get type():String
Información sobre constructores
StreamingItem | () | Información sobre |
public function StreamingItem(type:String, streamName:String, bitrate:Number = 0, info:Object = null)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 1.6 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Default constructor
Parámetrostype: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:12 PM Z