Paquete | org.osmf.media |
Clase | public class MediaResourceBase |
Herencia | MediaResourceBase Object |
Subclases | PluginInfoResource, URLResource |
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 |
Different MediaElement instances can "handle" (i.e. process and present) different resource types (e.g. a URL vs. an array of streams), or even different variations of the same resource type (e.g. a URL with the ".jpg" extension vs. a URL with a ".mp3" extension).
A MediaResourceBase can also have an arbitrary set of descriptive metadata. Metadata is typically used to further qualify the resource so that each MediaElement can determine whether (and how) to present and process the resource.
Propiedades públicas
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
mediaType : String
The MediaType, if any, of this resource. | MediaResourceBase | ||
metadataNamespaceURLs : Vector.<String> [solo lectura]
A Vector containing the namespace URLs for all Metadata
objects within this resource. | MediaResourceBase | ||
mimeType : String
The MIME type, if any, of this resource. | MediaResourceBase |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
Constructor. | MediaResourceBase | ||
Adds a metadata value to this resource. | MediaResourceBase | ||
Retrieves a metadata value from this resource. | MediaResourceBase | ||
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 | ||
Removes a metadata value from this resource. | MediaResourceBase | ||
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
mediaType | propiedad |
metadataNamespaceURLs | propiedad |
mimeType | propiedad |
Información sobre constructores
MediaResourceBase | () | Información sobre |
public function MediaResourceBase()
Constructor.
Información sobre métodos
addMetadataValue | () | método |
public function addMetadataValue(namespaceURL:String, value:Object):void
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 |
Adds a metadata value to this resource.
Parámetros
namespaceURL:String — A URL with which this metadata is associated,
and with which it can be retrieved. If there is metadata that
is already associated with this URL, then it will be overwritten.
| |
value:Object — The metadata value. It is recommended that this be a
strongly-typed class, rather than an untyped Object.
|
getMetadataValue | () | método |
public function getMetadataValue(namespaceURL:String):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 |
Retrieves a metadata value from this resource.
Parámetros
namespaceURL:String — The URL with which the metadata is associated.
|
Object — The retrieved metadata value, null if there is no metadata value
associated with the specified namespace URL.
|
removeMetadataValue | () | método |
public function removeMetadataValue(namespaceURL:String):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 |
Removes a metadata value from this resource.
Parámetros
namespaceURL:String — The URL with which the metadata value is associated.
|
Object — The removed metadata value, null if there is no metadata value
associated with the specified namespace URL.
|
Tue Jun 12 2018, 02:12 PM Z