패키지 | org.osmf.media |
클래스 | public class MediaElement |
상속 | MediaElement EventDispatcher Object |
하위 클래스 | BeaconElement, CompositeElement, HTMLElement, LoadableElementBase, ProxyElement |
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Programmatically, a media element encapsulates a set of media traits and a state space. The media traits represent the capabilities of the media element and are dynamic in nature. At one moment in time a media element might be seekable, at another moment it might not be. For example, this could occur if the media element is a video sequence containing unskippable ads.
A media element operates on a media resource. For example, if the media element represents a video player, the media resource might encapsulate a URL to a video stream. If the media element represents a complex media composition, the media resource URL might be a document that references the multiple resources used in the media composition.
관련 API 요소
MediaResourceBase
속성 | 정의 주체 | ||
---|---|---|---|
constructor : Object
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | Object | ||
container : IMediaContainer [읽기 전용]
The media container that this element uses. | MediaElement | ||
metadataNamespaceURLs : Vector.<String> [읽기 전용]
A Vector containing the namespace URLs for all Metadata
objects stored within this MediaElement. | MediaElement | ||
resource : MediaResourceBase
The media resource that this media element operates on. | MediaElement | ||
traitTypes : Vector.<String> [읽기 전용]
A Vector of MediaTraitType values representing the trait types on this
media element. | MediaElement |
메서드 | 정의 주체 | ||
---|---|---|---|
Constructor. | MediaElement | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
리스너에서 이벤트 알림을 받을 수 있도록 EventDispatcher 객체에 이벤트 리스너 객체를 등록합니다. | EventDispatcher | ||
Adds a Metadata object to this MediaElement under the specified namespace URL. | MediaElement | ||
이벤트를 이벤트 흐름으로 전달합니다. | EventDispatcher | ||
Returns the Metadata object that is stored under this MediaElement with
the specified namespace URL. | MediaElement | ||
Returns the media trait of the specified type. | MediaElement | ||
EventDispatcher 객체에 특정 유형의 이벤트에 대한 리스너가 등록되어 있는지 여부를 확인합니다. | EventDispatcher | ||
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | ||
Determines whether this media element has a media trait of the
specified type. | MediaElement | ||
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | ||
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | ||
EventDispatcher 객체에서 리스너를 제거합니다. | EventDispatcher | ||
Removes the Metadata object that was stored under this MediaElement with
the specified namespace URL. | MediaElement | ||
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | ||
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 프리미티브 값을 반환합니다. | Object | ||
이 EventDispatcher 객체 또는 조상 객체에 지정한 이벤트 유형에 대한 이벤트 리스너가 등록되어 있는지 여부를 확인합니다. | EventDispatcher |
메서드 | 정의 주체 | ||
---|---|---|---|
Adds a new media trait to this media element. | MediaElement | ||
Removes a media trait from this media element. | MediaElement | ||
Sets up the traits for this media element. | MediaElement |
이벤트 | 요약 | 정의 주체 | ||
---|---|---|---|---|
[브로드캐스트 이벤트] Flash Player 또는 AIR 응용 프로그램이 운영 체제 포커스를 얻어 활성화될 때 전달됩니다. | EventDispatcher | |||
Dispatched when the element's container property changed. | MediaElement | |||
[브로드캐스트 이벤트] Flash Player 또는 AIR 응용 프로그램이 운영 체제 포커스를 잃고 비활성화될 때 전달됩니다. | EventDispatcher | |||
Dispatched when an error which impacts the operation of the media element occurs. | MediaElement | |||
Dispatched when a info which impacts the operation of the media element is available. | MediaElement | |||
Dispatched when a Metadata object has been added to this media element. | MediaElement | |||
Dispatched when a Metadata object has been removed from this media element. | MediaElement | |||
Dispatched when a trait is added to the media element. | MediaElement | |||
Dispatched when a trait is removed from the media element. | MediaElement |
container | 속성 |
container:IMediaContainer
[읽기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
The media container that this element uses.
구현
public function get container():IMediaContainer
metadataNamespaceURLs | 속성 |
resource | 속성 |
resource:MediaResourceBase
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
The media resource that this media element operates on.
구현
public function get resource():MediaResourceBase
public function set resource(value:MediaResourceBase):void
traitTypes | 속성 |
MediaElement | () | 생성자 |
public function MediaElement()
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Constructor.
addMetadata | () | 메서드 |
public function addMetadata(namespaceURL:String, metadata:Metadata):void
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Adds a Metadata object to this MediaElement under the specified namespace URL.
매개 변수
namespaceURL:String — The namespace URL used to store the Metadata.
| |
metadata:Metadata — The Metadata to add.
|
오류
ArgumentError — if namespaceURL or metadata is null.
|
addTrait | () | 메서드 |
protected function addTrait(type:String, instance:org.osmf.traits:MediaTraitBase):void
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Adds a new media trait to this media element. If successful, dispatches a MediaElementEvent.
매개 변수
type:String — The MediaTraitType for the media trait to add.
| |
instance:org.osmf.traits:MediaTraitBase — The media trait to add.
|
오류
ArgumentError — If either parameter is null , or
if the specified type and the type of the media trait don't match,
or if a different instance of the specific trait class has already
been added.
|
getMetadata | () | 메서드 |
public function getMetadata(namespaceURL:String):Metadata
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Returns the Metadata object that is stored under this MediaElement with the specified namespace URL.
매개 변수
namespaceURL:String — The namespace URL of the Metadata object to retrieve.
|
Metadata |
오류
ArgumentError — If namespaceURL is null.
|
getTrait | () | 메서드 |
public function getTrait(type:String):org.osmf.traits:MediaTraitBase
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Returns the media trait of the specified type.
매개 변수
type:String — The MediaTraitType for the media trait to return.
|
org.osmf.traits:MediaTraitBase — The retrieved trait or null if no such trait exists on this
media element.
|
오류
ArgumentError — If the parameter is null .
|
hasTrait | () | 메서드 |
public function hasTrait(type:String):Boolean
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Determines whether this media element has a media trait of the specified type.
매개 변수
type:String — The MediaTraitType for the media trait to check for.
|
Boolean — true if this media element has a media
trait of the specified class, false otherwise.
|
오류
ArgumentError — If the parameter is null .
|
removeMetadata | () | 메서드 |
public function removeMetadata(namespaceURL:String):Metadata
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Removes the Metadata object that was stored under this MediaElement with the specified namespace URL.
매개 변수
namespaceURL:String — The namespace URL of the Metadata to remove.
|
Metadata |
오류
ArgumentError — If namespaceURL is null.
|
removeTrait | () | 메서드 |
protected function removeTrait(type:String):org.osmf.traits:MediaTraitBase
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Removes a media trait from this media element. If successful, dispatches a MediaElementEvent.
매개 변수
type:String — The MediaTraitType for the media trait to remove.
|
org.osmf.traits:MediaTraitBase — The removed trait or null if no trait was
removed.
|
오류
ArgumentError — If the parameter is null .
|
setupTraits | () | 메서드 |
protected function setupTraits():void
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Sets up the traits for this media element. Occurs during construction. Subclasses should override this method and call addTrait for each trait of their own.
containerChange | 이벤트 |
org.osmf.events.ContainerChangeEvent
속성 ContainerChangeEvent.type =
org.osmf.events.ContainerChangeEvent.CONTAINER_CHANGE
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Dispatched when the element's container property changed.
The ContainerChangeEvent.CONTAINER_CHANGE constant defines the value of the type property of the event object for a containerChange event.mediaError | 이벤트 |
org.osmf.events.MediaErrorEvent
속성 MediaErrorEvent.type =
org.osmf.events.MediaErrorEvent.MEDIA_ERROR
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Dispatched when an error which impacts the operation of the media element occurs.
The MediaErrorEvent.MEDIA_ERROR constant defines the value of the type property of the event object for a mediaError event.mediaInfo | 이벤트 |
org.osmf.events.MediaErrorEvent
속성 MediaErrorEvent.type =
org.osmf.events.MediaErrorEvent.MEDIA_INFO
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 2.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Dispatched when a info which impacts the operation of the media element is available. MEDIA_INFO events are non-fatal.
metadataAdd | 이벤트 |
org.osmf.events.MediaElementEvent
속성 MediaElementEvent.type =
org.osmf.events.MediaElementEvent.METADATA_ADD
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Dispatched when a Metadata object has been added to this media element.
The MediaElementEvent.METADATA_ADD constant defines the value of the type property of the event object for a metadataAdd event.metadataRemove | 이벤트 |
org.osmf.events.MediaElementEvent
속성 MediaElementEvent.type =
org.osmf.events.MediaElementEvent.METADATA_REMOVE
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Dispatched when a Metadata object has been removed from this media element.
The MediaElementEvent.METADATA_REMOVE constant defines the value of the type property of the event object for a metadataRemove event.traitAdd | 이벤트 |
org.osmf.events.MediaElementEvent
속성 MediaElementEvent.type =
org.osmf.events.MediaElementEvent.TRAIT_ADD
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Dispatched when a trait is added to the media element.
The MediaElementEvent.TRAIT_ADD constant defines the value of the type property of the event object for a traitAdd event.traitRemove | 이벤트 |
org.osmf.events.MediaElementEvent
속성 MediaElementEvent.type =
org.osmf.events.MediaElementEvent.TRAIT_REMOVE
언어 버전: | ActionScript 3.0 |
제품 버전: | OSMF 1.0 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Dispatched when a trait is removed from the media element.
The MediaElementEvent.TRAIT_REMOVE constant defines the value of the type property of the event object for a traitRemove event.Tue Jun 12 2018, 03:17 PM Z