Pacote | org.osmf.media |
Classe | public class DefaultMediaFactory |
Herança | DefaultMediaFactory MediaFactory 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 |
The default media factory can construct media elements of the following types:
-
VideoElement, using either:
- NetLoader (streaming or progressive)
- RTMPDynamicStreamingNetLoader (MBR streaming)
- HTTPStreamingNetLoader (HTTP streaming), if the CONFIG::FLASH_10_1 compiler flag is set to true
- F4MLoader (Flash Media Manifest files)
- DVRCastNetLoader (DVRCast)
-
SoundElement, using either:
- SoundLoader (progressive)
- NetLoader (streaming)
- ImageElement
- SWFElement
Propriedades públicas
Métodos públicos
Método | Definido por | ||
---|---|---|---|
Constructor. | DefaultMediaFactory | ||
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 | ||
Adds the specified MediaFactoryItem to the factory. | MediaFactory | ||
Returns a MediaElement that can be created based on the specified
MediaResourceBase. | MediaFactory | ||
Envia um evento para o fluxo de eventos. | EventDispatcher | ||
Gets the MediaFactoryItem at the specified index. | MediaFactory | ||
Returns the MediaFactoryItem with the specified ID or null if the
specified MediaFactoryItem does not exist in this factory. | MediaFactory | ||
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 | ||
Load a plugin identified by the specified resource. | MediaFactory | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Remove um ouvinte do objeto EventDispatcher. | EventDispatcher | ||
Removes the specified MediaFactoryItem from the factory. | MediaFactory | ||
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 |
Métodos protegidos
Eventos
Detalhes do construtor
DefaultMediaFactory | () | Construtor |
public function DefaultMediaFactory()
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.
Exemplos Como usar este exemplo
DefaultMediaFactoryExample.as
This example demonstrates how to manually use the DefaultMediaFactory
class to instantiate a video element.
package org.osmf.media { import flash.display.Sprite; import org.osmf.containers.MediaContainer; public class DefaultMediaFactoryExample extends Sprite { public function DefaultMediaFactoryExample() { // Construct a default media factory: var factory:DefaultMediaFactory = new DefaultMediaFactory(); // Request the factory to create a media element that matches the passed URL: var media:MediaElement = factory.createMediaElement(new URLResource("http://mediapm.edgesuite.net/strobe/content/test/AFaerysTale_sylviaApostol_640_500_short.flv")); // Add a media container, and player to have the constructed VideoElement // play back: var mediaContainer:MediaContainer = new MediaContainer(); addChild(mediaContainer); mediaContainer.width = 640; mediaContainer.height = 500; mediaContainer.addMediaElement(media); new MediaPlayer(media); } } }
Wed Jun 13 2018, 11:10 AM Z