webrtc学习——mediaStream和MediaStreamTrack
This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for the proper prefixes to use in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the spec changes.
The MediaStream interface represents a stream of media content. A stream consists of several tracks, like video or audio tracks.
Attributes
MediaStream.endedRead only- Is a Boolean value with a value of
trueif theendedevent has been fired on the object, meaning that the stream has been completely read, orfalseif the end of hte stream has not been reached.
MediaStream.idRead only- Is a
DOMStringcontaining 36 characters denoting a unique identifier (GUID) for the object.
Event handlers
MediaStream.onaddtrack- Is a
EventHandlercontaining the action to perform when anaddtrackevent is fired on the object, that is when a newMediaStreamTrackobject is added. MediaStream.onended- Is a
EventHandlercontaining the action to perform when anendedevent is fired on the object, that is when the streaming is terminating. MediaStream.onremovetrack- Is a
EventHandlercontaining the action to perform when anremovetrackevent is fired on the object, that is when aMediaStreamTrackobject is removed from it.
Methods
MediaStream.addTrack()- Stores a copy of the
MediaStreamTrackgiven as argument. If the track has already been added to theMediaStreamobject, nothing happens; if the track is in thefinishedstate, that is has already reached its end, the exceptionINVALID_STATE_RAISEis raised.
MediaStream.clone()- Return a clone of the
MediaStreamobjet. The clone will have a new id value. - Returns the track whose id corresponds to the one given in parameters,
trackid. If no parameter is given, or if no track with that id does exists, it returnsnull. If several tracks have the same id, it returns the first one.
MediaStream.getAudioTracks()- Returns a list of the
MediaStreamTrackstored in theMediaStreamobject that have theirkindattribute set to"audio". The order is not defined, and may vary from one browser to an other, but also from one call to the method to another.
MediaStream.getTrackById()- Returns the track whose id corresponds to the one given in parameters,
trackid. If no parameter is given, or if no track with that id does exists, it returnsnull. If several tracks have the same id, it returns the first one.
MediaStream.getVideoTracks()- Returns a list of the
MediaStreamTrackstored in theMediaStreamobject that have theirkindattribute set to"video". The order is not defined, and may vary from one browser to an other, but also from one call to the method to another.
MediaStream.removeTrack()- Removes the
MediaStreamTrackgiven as argument. If the track is not part of theMediaStreamobject, nothing happens; if the track is in thefinishedstate, that is has already reached its end, the exceptionINVALID_STATE_RAISEis raised.
MediaStreamTrack
Summary
The MediaStream interface represents a stream of media content. A stream consists of several tracks, like video or audio tracks.
Properties
MediaStreamTrack.enabled- Is a Boolean value with a value of
trueif the track is enabled, that is allowed to render the media source stream; orfalseif it is disabled, that is not rendering the media source stream but silence and blackness. If the track has been disconnected, this value can be changed but has no more effect. MediaStreamTrack.idRead only- Returns a
DOMStringcontaining a unique identifier (GUID) for the track; it is generated by the browser. MediaStreamTrack.kindRead only- Returns a
DOMStringset to"audio"if the track is an audio track and to"video", if it is a video track. It doesn't change if the track is deassociated from its source. MediaStreamTrack.labelRead only- Returns a
DOMStringcontaining a user agent-assigned label that identifies the track source, as in"internal microphone". The string may be left empty and is empty as long as no source has been connected. When the track is deassociated from its source, the label is not changed. MediaStreamTrack.mutedRead only- Returns a Boolean value with a value of
trueif the track is muted,falseotherwise. MediaStreamTrack.readonlyRead only- Returns a Boolean value with a value of
trueif the track is readonly (such a video file source or a camera that settings can't be modified),falseotherwise. MediaStreamTrack.readyStateRead only- Returns an enumerated value giving the status of the track.It takes one of the following values:
"live"which indicates that an input is connected and does its best-effort in providing real-time data. In that case, the output of data can be switched on or off using theMediaStreamTrack.enabledattribute."ended"which indicates that the input is not giving any more data and will never provide new data.
MediaStreamTrack.remoteRead only- Returns a boolean value with a value of
trueif the track is sourced by aRTCPeerConnection,falseotherwise.
Event handlers
MediaStreamTrack.onstarted- Is a
EventHandlercontaining the action to perform when anstartedevent is fired on the object, that is when a newMediaStreamTrackobject is added. MediaStreamTrack.onmute- Is a
EventHandlercontaining the action to perform when anmuteevent is fired on the object, that is when the streaming is terminating. MediaStreamTrack.onunmute- Is a
EventHandlercontaining the action to perform when anunmuteevent is fired on the object, that is when aMediaStreamTrackobject is removed from it. MediaStreamTrack.onoverconstrained- Is a
EventHandlercontaining the action to perform when anoverconstrainedevent is fired on the object, that is when aMediaStreamTrackobject is removed from it. MediaStreamTrack.oneended- Is a
EventHandlercontaining the action to perform when anendedevent is fired on the object, that is when aMediaStreamTrackobject is removed from it.
Methods
MediaStreamTrack.getConstraints()MediaStreamTrack.applyConstraints()MediaStreamTrack.getSettings()MediaStreamTrack.getCapabilities()MediaStreamTrack.clone()MediaStreamTrack.stop()- Stops playing the source associated to the track, both the source and the track are deassociated. The track state is set to
ended.
Specifications
| Specification | Status | Comment |
|---|---|---|
| Media Capture and Streams The definition of 'MediaStreamTrack' in that specification. |
Candidate Recommendation | Initial definition |
https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrack
https://developer.mozilla.org/en-US/docs/Web/API/MediaStream
webrtc学习——mediaStream和MediaStreamTrack的更多相关文章
- WebRTC学习笔记_Demo收集
1. WebRTC学习 1.1 WebRTC现状 本人最早接触WebRTC是在2011年底,那时Google已经在Android源代码中增加了webrtc源代码,放在/external/w ...
- WebRTC学习
1. WebRTC学习 1.1 WebRTC现状 本人最早接触WebRTC是在2011年底,那时Google已经在Android源码中加入了webrtc源码,放在/external/web ...
- WebRTC学习与DEMO资源一览
一. WebRTC学习 1.1 WebRTC现状 本人最早接触WebRTC是在2011年底,那时Google已经在Android源码中加入了webrtc源码,放在/external/webrtc/ ...
- [转]webrtc学习: 部署stun和turn服务器
[转]webrtc学习: 部署stun和turn服务器 http://www.cnblogs.com/lingdhox/p/4209659.html webrtc的P2P穿透部分是由libjingle ...
- WebRTC学习之九:摄像头的捕捉和显示
较新的WebRTC源代码中已经没有了与VoiceEngine结构相应的VidoeEngine了,取而代之的是MeidaEngine.MediaEngine包括了MediaEngineInterface ...
- webrtc学习———记录三:mediaStreamTrack
参考: https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrack 转自http://c.tieba.baidu.com/p/3 ...
- webrtc学习——RTCPeerConnection
The RTCPeerConnection interface represents a WebRTC connection and handles efficient streaming of da ...
- webrtc 学习资源 http://www.cnblogs.com/lingyunhu/p/3578218.html
Realtime/Working WebRTC Experiments It is a repository of uniquely experimented WebRTC demos; writte ...
- WebRTC学习资料大全
在学习WebRTC,找了些资料,记录一下,供以后查询. 有些需要FQ才能看 WebRTC 介绍 官网在这里:https://webrtc.org/.然后这里有一个官方的Getting Started: ...
随机推荐
- [Bhatia.Matrix Analysis.Solutions to Exercises and Problems]Contents
I find it may cost me so much time in doing such solutions to exercises and problems....I am sorry t ...
- STSdb
打开数据库并写入数据 ? using (StorageEngine engine = new StorageEngine("stsdb4.sys", "stsdb4.da ...
- Hierarchy--分层。单词意思即为分层视图。
英文释义:Hierarchy--分层.单词意思即为分层视图. 功能:层次Viewer允许你调试和优化您的用户界面.还可以学习别人做好的UI界面,它提供了一个布局的视图层次结构(布局视图)的视觉表现和放 ...
- HDU 3416 Marriage Match IV dij+dinic
题意:给你n个点,m条边的图(有向图,记住一定是有向图),给定起点和终点,问你从起点到终点有几条不同的最短路 分析:不同的最短路,即一条边也不能相同,然后刚开始我的想法是找到一条删一条,然后光荣TLE ...
- 给Sublime Text 2安装CTags插件
以Windows操作系统为例介绍安装过程: 安装ctags应用程序. 到CTags的官方网站下载最新版本,解压后将ctags.exe文件放到系统的搜索路径中. 安装Sublime Text 2的Pac ...
- HIbernate学习笔记(一) 了解hibernate并搭建环境建立第一个hello world程序
Hibernate是一个开放源代码的ORM(对象关系映射)框架,它对JDBC进行了轻量级的封装,Java程序员可以使用面向对象的编程思维来操纵数据库,它通过对象属性和数据库表字段之间的映射关系,将对象 ...
- phpMyAdmin安装设置
phpMyAdmin是一种MySQL的管理工具,它直接从web上去管理MySQL. 假设你的web(网页存放)根目录是 /var/www/ 假设你的主机web访问是这样的 http://192.1 ...
- Esper系列(八)Method Definition、Schema
Method Definition 作用:以公共静态方法的方式去访问外部数据. 应用说明: 1.返回数据的方法必须是公共静态方法(方法参数可以有多个也可以没有): 2.如果返回一条数据或无返回数据 ...
- 算法导论学习-Dynamic Programming
转载自:http://blog.csdn.net/speedme/article/details/24231197 1. 什么是动态规划 ------------------------------- ...
- Windows下使用GCC编译器
1.GCC编译器的选择 Windows下最常见的安装GCC的方式有两种:Cygwin和MinGW.本文主要介绍MinGW的安装配置. 2.下载MinGW 下载地址:http://sourceforge ...