Pacote | org.osmf.traits |
Classe | public class DVRTrait |
Herança | DVRTrait MediaTraitBase EventDispatcher Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Use the MediaElement.hasTrait(MediaTraitType.DVR)
method to query
whether a media element has this trait.
If hasTrait(MediaTraitType.DVR)
returns true
,
use the MediaElement.getTrait(MediaTraitType.DVR)
method
to get an object of this type.
Propriedade | Definido por | ||
---|---|---|---|
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
isRecording : Boolean [somente leitura]
Defines if the recording is ongoing. | DVRTrait | ||
timeOffset : Number [somente leitura]
Indicates the number of seconds to be added to the time-related
properties of the stream in order to obtain the real values.
(OSMF always exposes a zero-based timeline)
The timeOffset might have a non-zero value in case of DVR with
a rolling window.
| DVRTrait | ||
traitType : String [somente leitura]
The MediaTraitType for this trait. | MediaTraitBase | ||
windowDuration : Number [somente leitura]
Indicates the number of seconds of recorded content that are available
behind the live point. | DVRTrait |
Método | Definido por | ||
---|---|---|---|
Constructor. | DVRTrait | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra um objeto de ouvinte de evento em um objeto EventDispatcher, de forma que o ouvinte receba a notificação de um evento. | EventDispatcher | ||
Envia um evento para o fluxo de eventos. | EventDispatcher | ||
Disposes of any resources used by this trait. | MediaTraitBase | ||
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | EventDispatcher | ||
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 | ||
Remove um ouvinte do objeto EventDispatcher. | EventDispatcher | ||
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 | ||
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | EventDispatcher |
Evento | Resumo | Definido por | ||
---|---|---|---|---|
[transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR ganha o foco do sistema operacional e está se tornando inativo. | EventDispatcher | |||
[transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR perde o foco do sistema operacional e está se tornando inativo. | EventDispatcher | |||
Dispatched when the object's isRecording property changes. | DVRTrait |
isRecording | propriedade |
timeOffset | propriedade |
timeOffset:Number
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 2.0.1 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Indicates the number of seconds to be added to the time-related properties of the stream in order to obtain the real values. (OSMF always exposes a zero-based timeline)
The timeOffset might have a non-zero value in case of DVR with a rolling window.
Implementação
public function get timeOffset():Number
windowDuration | propriedade |
windowDuration:Number
[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 |
Indicates the number of seconds of recorded content that are available behind the live point. If -1, indicates the amount of cached content is unlimited.
Implementação
public function get windowDuration():Number
DVRTrait | () | Construtor |
public function DVRTrait(isRecording:Boolean = false, windowDuration:Number = -1)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Constructor.
ParâmetrosisRecording:Boolean (default = false ) — Defines whether the recording is ongoing.
| |
windowDuration:Number (default = -1 ) — If -1, indicates the amount of available recorded
content is unlimited. If a non-zero positive number, indicates the number
of seconds of recorded content that are available behind the live point.
|
isRecordingChange | Evento |
org.osmf.events.DVREvent
Dispatched when the object's isRecording property changes.
Wed Jun 13 2018, 11:10 AM Z