套件 | org.osmf.media |
類別 | public class DefaultMediaFactory |
繼承 | DefaultMediaFactory MediaFactory EventDispatcher Object |
語言版本: | ActionScript 3.0 |
產品版本: | OSMF 1.0 |
執行階段版本: | 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
公用方法
方法 | 定義自 | ||
---|---|---|---|
Constructor. | DefaultMediaFactory | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
會在 EventDispatcher 物件註冊事件偵聽程式,以便讓偵聽程式收到事件的通知。 | EventDispatcher | ||
Adds the specified MediaFactoryItem to the factory. | MediaFactory | ||
Returns a MediaElement that can be created based on the specified
MediaResourceBase. | MediaFactory | ||
會將事件傳送到事件流程。 | 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 | ||
會檢查 EventDispatcher 物件是否有對特定的事件類型註冊偵聽程式。 | EventDispatcher | ||
指出物件是否有已定義的指定屬性。 | Object | ||
指出 Object 類別的實體是否位於指定為參數的物件原型鏈中。 | Object | ||
Load a plugin identified by the specified resource. | MediaFactory | ||
指出指定的屬性是否存在,以及是否可列舉。 | Object | ||
會從 EventDispatcher 物件移除偵聽程式。 | EventDispatcher | ||
Removes the specified MediaFactoryItem from the factory. | MediaFactory | ||
為迴圈作業設定動態屬性的可用性。 | Object | ||
傳回代表此物件的字串,根據地區特定慣例進行格式化。 | Object | ||
會傳回指定之物件的字串形式。 | Object | ||
會傳回指定之物件的基本值。 | Object | ||
檢查此 EventDispatcher 物件是否已註冊事件偵聽程式,或者此物件的任何祖系已為特定事件類型註冊事件偵聽程式。 | EventDispatcher |
建構函式詳細資料
DefaultMediaFactory | () | 建構函式 |
public function DefaultMediaFactory()
語言版本: | ActionScript 3.0 |
產品版本: | OSMF 1.0 |
執行階段版本: | Flash Player 10, AIR 1.5 |
Constructor.
範例 如何使用本範例
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); } } }
Tue Jun 12 2018, 03:47 PM Z