Questions tagged [getusermedia]

Access to media data streams--webcam video, microphone audio--from browser Javascript. Abbreviated gUM

getUserMedia provides access to data streams from media devices such as webcams and microphones. It is used from Javascript running in a user's web browser. It supports the development of front-end web application code for capturing media.

Support varies from browser to browser and device to device. See CanIUse.com for up-to-date information.

getUserMedia forms part of browser-resident WebRTC support (see ). It can be used by itself without establishing WebRTC connections.

getUserMedia is often abbreviated gUM. It's often used in conjunction with MediaRecorder; see .

Further references:

See also:

1098 questions
0
votes
1 answer

"Google Chrome is using your microphone" doesn't disappear after disconnecting AudioNode from Web Audio

I'm currently calling the disconnect() function on my AudioNode instances in Web Audio after a user evokes a Stop Recording function, but the "Google Chrome is using your microphone" status continues to persist on the top menu. What specifically…
Edward Sun
  • 1,541
  • 3
  • 15
  • 26
0
votes
1 answer

getUserMedia API suport for Opera Local screen share

I am creating an Opera extension that will open a webpage which will allow user to stream a local window on to the browser html file. Since Opera extension structure is similar to the chrome, I tested the structure on Opera. For manifest having…
cosmoloc
  • 2,884
  • 5
  • 29
  • 48
0
votes
1 answer

Get all media instagram. More than 33 picture

I am trying to use Instagram API to create a gallery with all my instagram pictures. But I have just 33 pictures in the gallery. Can you help me please? $media = $instagram->getUserMedia($userId); public function getUserMedia($id = 'self',…
0
votes
1 answer

Xampp Alternative to Ubuntu

I want to use the GetUserMedia API on an Ubuntu OS. The thing is this api for javascript only works when there is a server running(example-for windows I had to use xampp). Is there any way I can run a server on ubuntu to so I can use the api. I only…
idude
  • 4,654
  • 8
  • 35
  • 49
0
votes
0 answers

Firefox Add-on SDK open html file in https mode for gUM

I am creating a Firefox screenshot plugin for which I need to open an html page rendering screen share in https () Locally using AddOn SDK, my url of opened html file is : …
cosmoloc
  • 2,884
  • 5
  • 29
  • 48
0
votes
1 answer

Get user media api not working in local host

i am exploring the API of the get user media and tried running the api in my localhost with sample code attached below It is working fine in jsbin here but completely fails in localhost with below errors Uncaught TypeError: Cannot read property…
user3592479
  • 695
  • 3
  • 13
  • 26
0
votes
1 answer

adjust the resolution of licode platform

I set up the licode platform by referring licode documentation in this platform how can I adjust the resolution of videos (in the basic example). I try to adjust the resolution by ./licode/extras/basic_example/public/script.js file. But I was…
Gayan Charith
  • 7,301
  • 2
  • 20
  • 32
0
votes
1 answer

How to stop audio playback in Firefox & use source.connect() hack

I'm developing a webapp that (in part) records some audio using recorder.js, and sends it to a server. I'm trying to target Firefox, so I have to use this hack to keep the audio source from cutting off: // Hack for a Firefox bug that stops input…
miller9904
  • 109
  • 9
0
votes
1 answer

Failure to record audio while using webkitSpeechRecognition on Android Chrome

In Chrome I'm recording audio while running speech recognition. The recording is using AudioRecorder which internally calls getUserMedia. The speech recognition is using webkitSpeechRecognition. On the desktop (Win7 + latest Chrome) it works…
0
votes
0 answers

getUserMedia doesn't work on Chrome

I've got a problem with an application that uses the microphone. It seems to me, that the problem lies in getUserMedia(). The point is, that it works fine on Firefox, but Chrome doesn't prompt the user for the possibility of using the microphone. I…
0
votes
1 answer

Recording audio .. cut off

Reluctantly, I am asking you guys here to help me overcome my brain freeze. I am recording audio but I have a problem with not being able to get the recorded audio without half of it missing. recAudioInput =…
Michaela.Merz
  • 143
  • 10
0
votes
1 answer

Turn of webcam after snapshot

I use this code in order to GetUserMedia() and take a snapshot. I would like the camera to turn off after the snap-shot is taken, any tips on how to accomplish this? $("#btnSaves").click(function () { var video =…
user2915962
  • 2,691
  • 8
  • 33
  • 60
0
votes
1 answer

getUserMedia/RecordRTC performance issue at 720p

I am using the RecordRTC script for recording video/Audio. Everything is fine until I require 720p. If you visit the RecordRTC site and choose 1280x720 for both video and canvas options you'll notice considerable slow down when compared to smaller…
Kudos
  • 375
  • 4
  • 14
0
votes
0 answers

Not able to turn off webcam

I've written a script that successfully activates the user's webcam but throws an error when I try to stop or pause the stream. I've built a prototype for multi-part single page webapp that requires the user to activate then deactivate their webcam.…
fitsum
  • 1
  • 6
0
votes
2 answers

Localstorage as Javascript function attribute value

I have a class / function called MyApp and have some special attributes init for example this.memory and this.userMedia to access these functions within my own app I don't know if this copies the function or just uses the reference for the…
webmaster
  • 1,960
  • 24
  • 29