Paquete | org.osmf.traits |
Clase | public class DVRTrait |
Herencia | DVRTrait MediaTraitBase EventDispatcher Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 1.0 |
Versiones de motor de ejecución: | 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.
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
isRecording : Boolean [solo lectura]
Defines if the recording is ongoing. | DVRTrait | ||
timeOffset : Number [solo lectura]
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 [solo lectura]
The MediaTraitType for this trait. | MediaTraitBase | ||
windowDuration : Number [solo lectura]
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 un objeto de detector de eventos con un objeto EventDispatcher, de modo que el detector reciba la notificación de un evento. | EventDispatcher | ||
Distribuye un evento en el flujo del evento. | EventDispatcher | ||
Disposes of any resources used by this trait. | MediaTraitBase | ||
Comprueba si el objeto EventDispatcher tiene detectores registrados para un tipo concreto de evento. | EventDispatcher | ||
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 | ||
Elimina un detector del objeto EventDispatcher. | EventDispatcher | ||
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 | ||
Comprueba si hay registrado un detector de eventos con este objeto EventDispatcher o con cualquiera de sus ascendientes para el tipo de evento concreto. | EventDispatcher |
Evento | Resumen | Definido por | ||
---|---|---|---|---|
[evento broadcast] Se distribuye cuando Flash Player o AIR pasan a estar activos. | EventDispatcher | |||
[evento broadcast] Se distribuye cuando Flash Player o de AIR pasan a estar inactivos. | EventDispatcher | |||
Dispatched when the object's isRecording property changes. | DVRTrait |
isRecording | propiedad |
timeOffset | propiedad |
timeOffset:Number
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 2.0.1 |
Versiones de motor de ejecución: | 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.
Implementación
public function get timeOffset():Number
windowDuration | propiedad |
windowDuration:Number
[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 |
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.
Implementación
public function get windowDuration():Number
DVRTrait | () | Información sobre |
public function DVRTrait(isRecording:Boolean = false, windowDuration:Number = -1)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | OSMF 1.0 |
Versiones de motor de ejecución: | 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.
Tue Jun 12 2018, 02:12 PM Z