Pacote | org.osmf.net |
Classe | public class StreamingItem |
Herança | StreamingItem Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.6 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Elementos da API relacionados
Propriedades públicas
Propriedade | Definido por | ||
---|---|---|---|
bitrate : Number [somente leitura]
Returns a Number giving the stream’s bit rate,
specified in kilobits per second (kbps). | StreamingItem | ||
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
info : Object [somente leitura]
Returns an Object containing any custom information
associated with the stream. | StreamingItem | ||
streamName : String [somente leitura]
Returns a String used to identify the stream. | StreamingItem | ||
type : String [somente leitura]
Returns a String specifying the type of the stream. | StreamingItem |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
Default constructor
| StreamingItem | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object |
Detalhes da propriedade
bitrate | propriedade |
info | propriedade |
info:Object
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.6 |
Versões de 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.
Implementação
public function get info():Object
streamName | propriedade |
type | propriedade |
type:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.6 |
Versões de 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.
Implementação
public function get type():String
Detalhes do construtor
StreamingItem | () | Construtor |
public function StreamingItem(type:String, streamName:String, bitrate:Number = 0, info:Object = null)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.6 |
Versões de runtime: | 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.
|
Wed Jun 13 2018, 11:10 AM Z