getusermedia

Is it possible to upload stream on amazon s3 from browser?

邮差的信 提交于 2019-12-08 20:51:24
问题 I want to capture webcam video stream, and directly stream it to S3 storage. I've learned that you can upload via stream to s3: https://aws.amazon.com/blogs/aws/amazon-s3-multipart-upload/ I've learned that you can upload via browser: http://docs.aws.amazon.com/AmazonS3/latest/dev/HTTPPOSTExamples.html#HTTPPOSTExamplesFileUpload But Im still lost on how to actually do it. I need an example of someone uploadin getusermediastream to S3 like above. Buffer, Binary data, multipart upload, stream..

navigator.mediaDevices is null on iOS with Chrome 62?

六月ゝ 毕业季﹏ 提交于 2019-12-08 20:33:09
问题 Since latest version of Chrome 62, only under iOS 11 devices, when I try using navigator.mediaDevices - it's null. Nothing in the documentation suggests this functionality was removed. In the meantime I opened a bug under Chrome, but this is both critical and strange. Anyone come across this issue? Any ideas? 来源: https://stackoverflow.com/questions/47207084/navigator-mediadevices-is-null-on-ios-with-chrome-62

How to use webcam using Internet Explorer

元气小坏坏 提交于 2019-12-08 18:19:50
问题 Is there any way to run getUserMedia in Internet Explorer and use a webcam (without using Flash)? 回答1: According to this, no. http://caniuse.com/#search=getuserMedia This is the only polyfill I can find, and it uses a flash fallback: https://github.com/addyosmani/getUserMedia.js 回答2: Another tool (WITH flash fallback - since getuserMedia is on development for IE) that worked way much better for me is WebcamJS by jhuckaby: https://github.com/jhuckaby/webcamjs This should be a comment to Mike

How to cancel getUserMedia indicator after recording

岁酱吖の 提交于 2019-12-08 16:37:21
问题 I'm using the recorder.js and getUserMedia to do some audio recording in the browser. When starting the recording, the user is given the "Allow this site to use your microphone" prompt, and once they click allow, Chrome adds an indicator onto the tab's favicon to show that it is recording: Recording indicator http://ubuntuone.com/1nBkbmc9vA313WeWtV03Kz My issue is that the indicator never goes away, even after my application has stopped recording. Basically, I'd like to revoke my own

getUserMedia doesn't trigger error callback when you choose 'Not now' in Firefox

試著忘記壹切 提交于 2019-12-08 12:25:29
问题 i'm trying to write a script to detect when the user allow/deny the use of a microphone, using the getUserMedia API. EDIT: I've made a fiddle to show you the issue: http://jsfiddle.net/4rgRY/ navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia; if (navigator.getUserMedia) { navigator.getUserMedia({audio: true, video: false}, function(stream) { console.log('Yayy!'); }, function(err){ console.log("There was an

Using getUSerMedia AND webkitSpeechRecognition allow access x 2

懵懂的女人 提交于 2019-12-08 08:28:25
问题 I am creating a site that uses two types of audio input... getUserMedia and webkitSpeechRecognition. Both functions are working fine but Chrome is popping up it's access security pop-up twice - which makes sense. Does anyone know how to have one access permission handle both functions? Cheers SO! navigator.getUserMedia({audio:true}, gotStream, function(e) { alert('Error getting audio'); console.log(e); }); and... var recognition = new webkitSpeechRecognition(); 回答1: The only way to avoid

Is it possible to embed two webcam streams on one Html page from one or more cameras.

£可爱£侵袭症+ 提交于 2019-12-08 03:40:11
问题 Im trying to Embed two webcam streams on one HTML page. I am use to a get user media script that I got from this site https://www.kirupa.com/html5/accessing_your_webcam_in_html5.htm It works fine for one steam but when I try to make two different video streams on the same page it doesn't work. I have tried making a div tag with a grid in it and putting one video element in each cell. This results in only one stream. Here is my most recent try <!DOCTYPE html> <html> <head> <meta charset="utf-8

What's the state of the art for getting user media in browsers?

拥有回忆 提交于 2019-12-08 02:51:25
问题 From MDN's page on Navigator.getUserMedia(): Deprecated This feature has been removed from the Web standards. Though some browsers may still support it, it is in the process of being dropped. Do not use it in old or new projects. Pages or Web apps using it may break at any time. ... So how in heaven can we access user media in browsers? I see around some webapps that are perfectly capable to detect a smartphone camera so what is the solution? For example this doesn't work anymore http://www

JavaScript GetUserMedia using Chrome with localhost without HTTPS

五迷三道 提交于 2019-12-07 18:07:05
问题 I didn't know how to express it in the title, but I'm having an issue with Chrome. I'm trying to use GetUserMedia() and GetPosition() in Chrome. I know that it requires SSL certification first, unless you're on localhost . The thing is, I can't try my project on my computer, so I must use my smart phone, and in order to access localhost through my smartphone, I must use the machine's IP address (192.168.1.4). The problem is that Chrome doesn't consider this IP address as localhost , so it

Is it possible now to use GetUserMedia API to read video stream from web camera and send it directly to server for further broadcasting? [closed]

匆匆过客 提交于 2019-12-07 08:05:49
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . I need to build a web application that uses WebRTC to get web camera video stream and mic audio stream and immediatelly translate it to the server for further broadcasting to multiple clients. The app must do it in real time in full duplex. I mean it would be a kind of live video