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: ...
随机推荐
- bootm命令中地址参数,内核加载地址以及内核入口地址
bootm命令只能用来引导经过mkimage构建了镜像头的内核镜像文件以及根文件镜像,对于没有用mkimage对内核进行处理的话,那直接把内核下载到连接脚本中指定的加载地址0x30008000再运行就 ...
- Monkey的简单自动化
手机测试都逃避不了Monkey,但每次都是手动跑Monkey,自己导出包来,一条条的手动输入命令. 现在轮到我去执行这些任务,觉得很是繁琐,于是写了这个脚本,自动读取导出的包名,一键回车搞定. 代码如 ...
- Entity Framework 杂碎
其实看图很简单,database first和model first都是通过 data model创建的edmx文件,只不过model first模块可以自己根据需要创建和修改实体,显得更加灵活. c ...
- Exception in thread "main" java.lang.ClassNotFoundException: 解决方法
[root@h1 ~]# hadoop jar W1.jar hdfs://h1:9000/hello hdfs://h1:9000/cmd Exception in thread "mai ...
- OS X: Keyboard shortcuts
Using keyboard shortcuts To use a keyboard shortcut, press a modifier key at the same time as a char ...
- poj 3069 Saruman's Army (贪心)
简单贪心. 从左边开始,找 r 以内最大距离的点,再在该点的右侧找到该点能覆盖的点.如图. 自己的逻辑有些混乱,最后还是参考书上代码.(<挑战程序设计> P46) /*********** ...
- 【Mysql学习笔记】浅析mysql的binlog
最近读一份关于“数据库事务故障恢复"的技术资料,发现对mysql的binlog的认识不够清楚,查阅mysql reference manual有所收获,作为笔记,记录于此. 1. What' ...
- [Git]git常用命令总结
git clone url 将远程库复制到本地 git status 查看本地库的状态 git add filename.filetype 将库中被修改的文件标记为添加状态 git diff 查看库中 ...
- C++下字符串转换
引用自:http://blog.sina.com.cn/s/blog_a98e39a20101ari9.html 把最近用到的各种unicode下类型转换总结了一下,今后遇到其他的再补充: 1.str ...
- 史上最全的ASP.NET MVC路由配置,以后RouteConfig再弄不懂神仙都难救你啦~
继续延续坑爹标题系列.其实只是把apress.pro.asp.net.mvc.4.framework里的CHAPTER 13翻译过来罢了,当做自己总结吧.内容看看就好,排版就不要吐槽了,反正我知道你也 ...