The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
31 views

Get the raw audio in getUserMedia success callback

I'm trying to get the raw audio in getUserMedia() success callback and post it to the server. The success callback receives the LocalMediaStream object. var onSuccess = function(s) { var ...
0
votes
0answers
41 views

How to capture the video to the server using getusermedia

In my application, I want the user to record his video. Then the video should be downloaded to the Server disk. But it is downloading to the client browser. How can i save the 2 or 3 min video to the ...
0
votes
0answers
13 views

Variable name of a GetUserMedia request?

I'm using a JavaScript DOM element called Photobooth seen here: PhotoBooth Demo It uses getUserMedia to get the users video, There is a src of the video element normally for example : ...
-1
votes
0answers
31 views

How to record the audio and save it to the server without using flash or other media [closed]

I want to record the user voice and save it to the server using getUserMedia. I have searched the web and i didn't found any proper example. Can you guys please tell me how can i save the audio to the ...
2
votes
2answers
161 views

HTML5 getUserMedia record webcam, both audio and video

Is it possible to use Chrome to capture video (webcam) and audio (microphone) from the browser and then save the stream as video file? I would like to use this to create a video/photobooth-like ...
0
votes
1answer
35 views

Storing GetUserMedia permissions across future page requests

Once a user has allowed for a getUserMedia request to access their camera/microphone, is it possible to programmatically "remember" that permission across future page loads?
0
votes
2answers
81 views

getUserMedia in Firefox 20

I'm having serious trouble in getting getUserMedia to work in Firefox 20. What I would need is a simple webcam capture. I've tried a couple of examples over the web, here's one for example: ...
1
vote
1answer
95 views

Can I get a live camera image inside my App in Firefox OS?

So I am having a look into Firefox OS right now. One thing I would like to try is to manipulate the device camera's live feed using canvas et.al. From what I can see in the blog posts (like this one) ...
1
vote
2answers
76 views

Canvas URL to download image

just need to get the url of canvas/image to insert the link to download <a href=IMAGE URL HERE" download="image">Save Image</a> I have the following code... <script> ...
1
vote
1answer
84 views

reprompt for permissions with getUserMedia() after initial denial

How do we go about requesting camera/microphone access with getUserMedia() after being denied once? I'm working with getUserMedia to access the user's camera and pipe the data to a canvas. That bit ...
0
votes
3answers
191 views

stop the webcam streaming of getUserMedia without page refreshing

I am trying to close the webcam with javascript function (it has to be closed after receive some Ajax response), but it seems impossible to close without refreshing the page. All the methods for close ...
0
votes
1answer
486 views

Capture high resolution video/image html5

I'm using get user media to capture image from webcam http://www.html5rocks.com/en/tutorials/getusermedia/intro/ Best resolution that I can get is 640X480 but I have HD webcam that record video ...
0
votes
0answers
42 views

base64 image only partially displaying

I've got a program that gets the users webcam, copies a frame to the canvas then converts that to base64 while testing i sent that base64 string to a text input and then when i copy that base64 string ...
1
vote
1answer
65 views

put live audio input data into array

Hey I am using GetUserMedia() to capture audio input from user's microphone. Meanwhile I want to put captured values into an array so I can manipulate with them. I am using the following code but the ...
1
vote
1answer
194 views

HTML5 Video recording and automatically uploading video on server

I am trying to develop a test taking website for students. In this website, students should be able to answer the questions(displayed in text format) by using webcam in one go. Currently I have ...
0
votes
3answers
191 views

How do I get microphone access in Google Chrome through getUserMedia?

I've tried many different types of Javascript code, and I've changed my microphone settings in Windows and in Chrome's settings, and nothing has worked. I've tried enabling "Web Audio Input" in ...
0
votes
2answers
225 views

Capture microphone using GetUserMedia

I am using GetUserMedia to capture user input(audio) through microphone on Chrome, but the problem is that now I want to capture the input from independent microphone (not local one built-in pc). Does ...
0
votes
0answers
103 views

QR-Scanning built with HTML5 & javascript, Turned into phone app with phonegap build?

Seen many posts on this around the web but no nearer finding out if it's possible to do... Have seen http://www.webqr.com/ recommended but I tried uploading the .zip from github ...
0
votes
1answer
59 views

What do I need, to make getUserMedia() work?

I am pretty new to javascript, and I want to make use of getUserMedia(). When I go on this page everything works fine for me, chrome is asking me to allow access to my camera. But when I download ...
0
votes
1answer
100 views

webRTC: getusermedia in qtwebkit2.3 is not working

I am doing a project in qt in which new i am trying to enable webRTC in the fancy-browser. I want to us QT4.8 for this so i have downloaded qtWebKit2.3 and i have build successfully by ...
0
votes
0answers
24 views

Facial recognition with props in PHP lagging when changing props

I found a facial recognition library with props but wanted for it to be able to change props that you use instead of only one prop. I put the function of face.html inside a onclick function where you ...
0
votes
1answer
84 views

Edit localStream

Is there a way to edit the local video stream 'localStream' before sending it to another peer via peerConnection() ? navigator.getUserMedia({video: true, audio: true}, function(localMediaStream) { ...
0
votes
1answer
164 views

how would I get camera and mic presence in device with html5?

I am writing an app that uses camera and microphone with HMTL5, I read out all the documentation to use camera and mic with getUserMedia, webRTC, webAudio,etc.. APIs, but I cant figure out how before ...
3
votes
1answer
595 views

Capturing an image from a webcam

I'm attempting to randomly capture an image from a webcam and then save it to my server, right now i'm using getUserMedia to stream the webcam to video element then I can capture an image to a canvas ...
0
votes
1answer
242 views

getUserMedia permission denied after clicking the “allow” button

I'm trying to use the navigator.getUserMedia() and as expected on my webpage (or for example https://apprtc.appspot.com/) I'm asked to allow or deny access to my webcam/microphone. But after I click ...
2
votes
0answers
143 views

WebRTC (getUserMedia) on CEF not working. But it works on Chrome. Any ideas?

I have a bare bones web video chat page that works on Chrome. Kind of like apprtc.appspot.com But I want to embed this functionality on c++/c# my application. So I tried Chromium Embedded Framework ...
0
votes
1answer
71 views

How do I play a video file after selecting a video on my iPhone via getUserMedia in mobile Safari?

To anyone who can help, I'm at my wit's end and can't figure out how to play a tmp video file from my iphone. I'm using getUserMedia and I can save the file to my database and play it after upload. ...
0
votes
1answer
118 views

rendering HTML5 Video to Canvas is squashing the image

I'm trying to take a photo from the user's webcam using getUserMedia. The image from the camera is 640x480 (which presumably could be any size, depending on the user's webcam). Ive got a video tag, ...
0
votes
1answer
102 views

can we store LocalMediaStream locally?

in WebRTC , getUserMedia() gives you a MediaStreamObject - LocalMediaStream. HTML5ROCKS has a tutorial in which you can relay the camera. Is it possible to store the LocalMediaStream in localstorage ...
1
vote
1answer
530 views

Chrome getUserMedia video not working on localhost

I'm trying to get Chrome's getUserMedia to work on my localhost. My index.php file is: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" ...
-3
votes
1answer
236 views

Accessing webcam Using HTML5 And JavaScript [closed]

<html> <head> <script type="text/javascript"> window.onload = function () { var video = $("#live").get()[0]; var canvas = $("#canvas"); var ctx = ...
0
votes
0answers
137 views

Audio Problems with navigator.webkitGetUserMedia

I can't for the life of me figure out why my audio doesn't work for navigator.webkitGetUserMedia in chrome. My friend was able to get it working on OSX but I could not on Windows. What's weirder is ...
0
votes
0answers
74 views

Cancelling a getUserMedia request

I have a modal dialog box in my application which uses getUserMedia to display a video from the user's camera. This causes a "Deny/Allow" bar to appear. Let's say that the user closes the dialog ...
0
votes
2answers
54 views

Is it possible to create a custom user permission request dialog for HTML5 APIs?

Is it possible to create a custom user permission request dialog for HTML5 APIs (e.g geolocation or getUserMedia) so they look the same across all browsers?
2
votes
1answer
223 views

Read the value of Firefox' media.navigator.enabled in Javascript

I've been building a demo using getUserMedia() in Javascript to get the devices webcam and draw the video stream to a html5 canvas. For browsers that don't support getUserMedia() I'm defaulting back ...
0
votes
3answers
233 views

WebRTC - Browser doesn't ask for mic access permission for local html file

I have some simple webRTC code which uses getUserMedia to gain access to user's mic. Now when I load that html file (saved at my localhost) in my browser, the browser doesn't ask for mic access ...
0
votes
1answer
171 views

How can I get the size of the webcam image with getUserMedia?

I'm trying to find out what will be the size of the image I get from the webcam using getUserMedia. Right now, in my Macbook, I have supposedly a 720p camera, but the image I'm getting is 640x480. ...
3
votes
1answer
694 views

Detecting getUserMedia in Firefox

I'm writing a web app that uses getUserMedia to access the user's webcam and let him take snapshots. This degrades gracefully to let them upload files manually which in this use case is more ...