Pakket | org.osmf.media |
Klasse | public class PluginInfo |
Overerving | PluginInfo Object |
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
From the point of view of the Open Source Media Framework, the plugin's purpose is to expose the MediaFactoryItem objects that represent the media that the plugin handles. These MediaFactoryItem objects could describe standard media types such as video, audio, or image that can be represented by the built-in Open Source Media Framework MediaElements: VideoElement, AudioElement, or ImageElement. More likely, a plugin provides some type of specialized processing, such as a custom loader or special-purpose media element with custom implementations of the traits. For example, a plugin that provides tracking might implement a TrackingCompositeElement that includes a customized loader and a customized PlayTrait implementation that start and stop tracking as well as the video.
A PluginInfo also gives the plugin an opportunity to accept or reject a specific
Open Source Media Framework version through its isFrameworkVersionSupported()
method.
A dynamic plugin is loaded at runtime from a SWF.
A static plugin is compiled as part of the Open Source Media Framework application.
An application attempting to load a dynamic plugin accesses the class
that extends PluginInfo through
the pluginInfo
property on the root of the plugin SWF.
If this class is not found,
the plugin is not loaded.
An application attempting to load a static plugin accesses the PluginInfo
exposed by the PluginInfoResource object.
Verwante API-elementen
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
frameworkVersion : String [alleen-lezen]
The version of the framework that this plugin was compiled against. | PluginInfo | ||
mediaElementCreationNotificationFunction : Function [alleen-lezen]
Optional function which is invoked for every MediaElement that is
created from the MediaFactory to which this plugin's MediaFactoryItem
objects are added. | PluginInfo | ||
numMediaFactoryItems : int [alleen-lezen]
The number of MediaFactoryItem objects that the plugin
exposes to the loading application. | PluginInfo |
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
mediaFactoryItems : Vector.<MediaFactoryItem>
The MediaFactoryItem objects that this PluginInfo exposes. | PluginInfo |
Methode | Gedefinieerd door | ||
---|---|---|---|
PluginInfo(mediaFactoryItems:Vector.<MediaFactoryItem> = null, mediaElementCreationNotificationFunction:Function = null)
Constructor. | PluginInfo | ||
Returns the MediaFactoryItem object at the specified index. | PluginInfo | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Initialization method invoked by the media framework when this plugin
is being initialized, and which provides the plugin the resource which
was used to request the plugin. | PluginInfo | ||
Returns true if the plugin supports the specified version
of the framework, in which case the loading application loads the plugin. | PluginInfo | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Constante | Gedefinieerd door | ||
---|---|---|---|
PLUGIN_MEDIAFACTORY_NAMESPACE : String = "http://www.osmf.org/plugin/mediaFactory/1.0" [statisch]
Metadata namespace URL for a MediaFactory that is passed from player
to plugin. | PluginInfo |
frameworkVersion | eigenschap |
frameworkVersion:String
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
The version of the framework that this plugin was compiled against. The current version can be obtained from org.osmf.utils.Version.version.
Implementatie
public function get frameworkVersion():String
mediaElementCreationNotificationFunction | eigenschap |
mediaElementCreationNotificationFunction:Function
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Optional function which is invoked for every MediaElement that is created from the MediaFactory to which this plugin's MediaFactoryItem objects are added. The function must take one param of type MediaElement, and return void. This callback function is useful for plugins who want to be notified when other MediaElement are created (e.g. so as to listen to or control them).
Implementatie
public function get mediaElementCreationNotificationFunction():Function
mediaFactoryItems | eigenschap |
mediaFactoryItems:Vector.<MediaFactoryItem>
The MediaFactoryItem objects that this PluginInfo exposes.
Implementatie
protected function get mediaFactoryItems():Vector.<MediaFactoryItem>
protected function set mediaFactoryItems(value:Vector.<MediaFactoryItem>):void
numMediaFactoryItems | eigenschap |
PluginInfo | () | Constructor |
public function PluginInfo(mediaFactoryItems:Vector.<MediaFactoryItem> = null, mediaElementCreationNotificationFunction:Function = null)
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Constructor.
ParametersmediaFactoryItems:Vector.<MediaFactoryItem> (default = null ) — Vector of MediaFactoryItem objects that this plugin
exposes.
| |
mediaElementCreationNotificationFunction:Function (default = null ) — Optional function which,
if specified, is invoked for each MediaElement that is created from the
MediaFactory to which this MediaFactoryItem is added. If specified,
the function must take one param of type MediaElement, and return void.
This callback function is useful for MediaFactoryItems which need to be
notified when other MediaElements are created (e.g. so as to listen to
or control them).
|
getMediaFactoryItemAt | () | methode |
public function getMediaFactoryItemAt(index:int):MediaFactoryItem
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Returns the MediaFactoryItem object at the specified index.
If the index is out of range, throws a RangeError.
Parameters
index:int — Zero-based index position of the requested MediaFactoryItem.
|
MediaFactoryItem — A MediaFactoryItem object representing media to be loaded.
|
Verwante API-elementen
initializePlugin | () | methode |
public function initializePlugin(resource:MediaResourceBase):void
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Initialization method invoked by the media framework when this plugin is being initialized, and which provides the plugin the resource which was used to request the plugin. By default does nothing, but plugins can override this method to specify their own initialization logic.
Note that an instance of PluginInfo may be instantiated before the framework has determined that that plugin is truly going to be used, so it is strongly recommended that any initialization logic be placed within an override of this method to avoid duplicate initialization.
This method is called before getMediaFactoryItemAt or get numMediaFactoryItems.
Parameters
resource:MediaResourceBase |
isFrameworkVersionSupported | () | methode |
public function isFrameworkVersionSupported(version:String):Boolean
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Returns true
if the plugin supports the specified version
of the framework, in which case the loading application loads the plugin.
Returns false
if the plugin does not support the specified version
of the framework, in which case the loading application does not load the plugin.
Parameters
version:String — Version string of the Open Source Media Framework version.
|
Boolean — Returns true if the version is supported.
|
PLUGIN_MEDIAFACTORY_NAMESPACE | Constante |
public static const PLUGIN_MEDIAFACTORY_NAMESPACE:String = "http://www.osmf.org/plugin/mediaFactory/1.0"
Metadata namespace URL for a MediaFactory that is passed from player to plugin.
Client code can set this on the MediaResourceBase that is passed
to MediaFactory.loadPlugin
, and it will be exposed to
the plugin on the MediaResourceBase that is passed to
PluginInfo.initializePlugin
.
Wed Jun 13 2018, 11:42 AM Z