admin管理员组文章数量:1350038
We can request a media stream to a screen or windows via navigator.mediaDevices.getDisplayMedia()
. However, this immediately prompts the user to decide which kind of capturing to use. I need to check if the browser/platform even support screen capturing.
Of course, it is possible to check for 'getDisplayMedia' in navigator.mediaDevices
, but this just tells us if the API is supported by the browser. In particular, on FF and Chrome on Android, the API is defined and I can call getDisplayMedia()
, but it always immediately returns a NotAllowedError
error (which is to be expected: according to caniuse, the mobile browsers do not yet support getDisplayMedia
.)
Next, I tried checking navigator.mediaDevices.getSupportedConstraints()
. However, my mobile FF returns the exact same object as my desktop FF. In particular, navigator.mediaDevices.getSupportedConstraints().mediaSource
is true
in both cases. Finally, the data returned by navigator.mediaDevices.enumerateDevices()
does not help me either. I only get a device and group ID which I cannot interpret in any way (right?).
Is it possible to detect whether or not screen capture via getDisplayMedia
is supported beforehand?
(Note: this Q&A seems fairly similar, but is about getUserMedia
and is already quite old)
We can request a media stream to a screen or windows via navigator.mediaDevices.getDisplayMedia()
. However, this immediately prompts the user to decide which kind of capturing to use. I need to check if the browser/platform even support screen capturing.
Of course, it is possible to check for 'getDisplayMedia' in navigator.mediaDevices
, but this just tells us if the API is supported by the browser. In particular, on FF and Chrome on Android, the API is defined and I can call getDisplayMedia()
, but it always immediately returns a NotAllowedError
error (which is to be expected: according to caniuse, the mobile browsers do not yet support getDisplayMedia
.)
Next, I tried checking navigator.mediaDevices.getSupportedConstraints()
. However, my mobile FF returns the exact same object as my desktop FF. In particular, navigator.mediaDevices.getSupportedConstraints().mediaSource
is true
in both cases. Finally, the data returned by navigator.mediaDevices.enumerateDevices()
does not help me either. I only get a device and group ID which I cannot interpret in any way (right?).
Is it possible to detect whether or not screen capture via getDisplayMedia
is supported beforehand?
(Note: this Q&A seems fairly similar, but is about getUserMedia
and is already quite old)
- Are you using HTTPS? – str Commented Nov 13, 2019 at 18:00
-
@str Yes, I am. Also note that this question is not about "I can't use
getDisplayMedia
on mobile". That is fine for me. I just want to check whether or not it is supported. – Lukas Kalbertodt Commented Nov 13, 2019 at 18:01 - Doesn't getDisplayMedia return a promise? – aksappy Commented Nov 13, 2019 at 18:30
- @aksappy Yes. Why? I don't see how that would help me. Either it resolves immediately to an error (on mobile) or the user get prompted by the browser (desktop, if supported). – Lukas Kalbertodt Commented Nov 13, 2019 at 18:34
- Well, that was more of a conversation starter :-) Have you looked at MediaRecorder? It solves your use case with a isTypeSupported method. – aksappy Commented Nov 13, 2019 at 19:05
1 Answer
Reset to default 9Unfortunately, there's no direct way to feature-detect whether getDisplayMedia will work on those browsers.
All you can do today is browser-sniff the UA string to detect you're not on mobile, where support is lacking.¹
I've filed an issue on the spec based on your question, to see if getDisplayMedia is better left undefined
when unsupported.
1. caniuse claims Opera Mobile has support, but this appears not so when I test it.
本文标签: javascriptCheck if browserplatform support screen capturing via getDisplayMediaStack Overflow
版权声明:本文标题:javascript - Check if browserplatform support screen capturing via `getDisplayMedia` - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743872477a2553725.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论