The read-only property MediaStreamTrack.kind
returns a DOMString
set 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.
var type = track.kind;
The possible values are a DOMString
with on of the following values:
"audio"
: the track is an audio track."video"
: the track is a video track.Specification | Status | Comment |
---|---|---|
Media Capture and Streams The definition of 'MediaStreamTrack.kind' in that specification. | Editor's Draft | Initial specification. |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | No support | (Yes) | ? |
Feature | Android | Android Webview | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|
Basic support | ? | (Yes) | (Yes) | ? | No support | ? | ? | (Yes) |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrack/kind