MediaSource

MediaSource

package js-html

extends EventTarget

Available on js

The MediaSource interface represents a source of media data for an HTMLMediaElement object. A MediaSource object can be attached to a HTMLMediaElement to be played in the user agent.

Documentation MediaSource by Mozilla Contributors, licensed under CC-BY-SA 2.5.

See:

Constructor

new ()

Throws:

null DOMError

Variables

read only activeSourceBuffers:SourceBufferList

Returns a SourceBufferList object containing a subset of the SourceBuffer objects contained within SourceBuffers — the list of objects providing the selected video track, enabled audio tracks, and shown/hidden text tracks.

duration:Float

Gets and sets the duration of the current media being presented.

read only readyState:MediaSourceReadyState

Returns an enum representing the state of the current MediaSource, whether it is not currently attached to a media element (closed), attached and ready to receive SourceBuffer objects (open), or attached but the stream has been ended via MediaSource.endOfStream() (ended.)

read only sourceBuffers:SourceBufferList

Returns a SourceBufferList object containing the list of SourceBuffer objects associated with this MediaSource.

Methods

addSourceBuffer (type:String):SourceBuffer

Throws:

null DOMError

endOfStream (?error:MediaSourceEndOfStreamError):Void

Throws:

null DOMError

removeSourceBuffer (sourceBuffer:SourceBuffer):Void

Throws:

null DOMError

Static methods

static isTypeSupported (type:String):Bool

© 2005–2016 Haxe Foundation
Licensed under a MIT license.
http://api.haxe.org/js/html/MediaSource.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部