Skip to main content
30 votes
Accepted

How can I remotely determine if a laptop has webcam from the console?

On Windows, you can look in Device Manager to check whether camera devices exist. This check can also be performed using PowerShell or Command Prompt, without special rights. Command Prompt: pnputil /...
Daniel B's user avatar
  • 63.9k
28 votes
Accepted

Is it possible to set a default camera device to show screen instead of the output of an actual, physical camera?

Making the browser itself pretend there's a "desktop" camera would be technically possible, but since it would only work with that single browser, it doesn't look like anyone has done this yet. (At ...
grawity_u1686's user avatar
20 votes

Your webcam is currently being used by another application?

Right click on windows icon on the left corner of the taskbar. Click on the settings icon (just above the power icon), this will open windows settings panel. Click on the privacy icon (lock symbol), ...
Marc R.'s user avatar
  • 201
20 votes
Accepted

Can hackers enable the camera after the user disabled it?

These emails are all scams. I get them and I don't even have a webcam on my desktop. In theory a dedicated attacker could have done this, if they got in and used a privilege-escalation exploit to ...
Peter Cordes's user avatar
  • 5,980
15 votes

Adjust system-wide camera settings in Windows 10?

As I came here from Google looking for solution myself... You will need FFmpeg unzipped anywhere on your disk. Assuming Windows here, but FFmpeg should have Linux version as well. Navigate to bin ...
PiotrK's user avatar
  • 431
12 votes
Accepted

Linux (v4l) webcam - make settings "stick"

First the bad news: There is currently no built-in solution to do that in any distro I know. The good news is that such a solution is very easy to implement and can be adapted for many similar ...
Alicia's user avatar
  • 265
10 votes

How do I reset an USB device without unplugging it in Linux?

Let's say I want to reset /dev/sdc. # udevadm info -q all /dev/sdc | grep DEVPATH E: DEVPATH=/devices/pci0000:00/0000:00:14.0/usb2/2-1/2-1.4/2-1.4:1.0/host2/target2:0:0/2:0:0:0/block/sdc I take the ...
Tom Hale's user avatar
  • 2,480
10 votes
Accepted

webcam detection in chromium on fresh ubuntu install

Thanks to Nikita to point me at the snap install. I found on this launchpad the way to connect the camera to a snap install. It works perfectly $ sudo snap connect chromium:camera :camera
JR Utily's user avatar
  • 229
9 votes

How to disable iSight auto adjustments?

Try uvcc, a tool to configure USB Video Class (UVC) compliant devices from the command line. You can find the uvcc source code on github. (Note: I'm the author.) It's a generic tool which should work ...
Joel Purra's user avatar
9 votes

vlc to stream webcam with no delay

On the Capture Device tab: click on Show more options then change caching to 0. Change caching to zero: VLC no Delay Camera
Rodrigo Boratto's user avatar
9 votes

Webcam driver that uses an image or video file as the video source

Came across this and thought I would contribute the solution that suited my needs. Open Broadcaster Studio allows you to stream and record many sources layed out in a virtual canvas: you can define ...
Pau Coma Ramirez's user avatar
9 votes
Accepted

How to know if a usb cable has 4 wires not 2 (other than cutting it)

Use a multimeter to check for continuity. Outer, longer pins in a standard USB type-A plug are power pins. Two middle pins are for data. If you can find a corresponding pin in the other plug, then ...
gronostaj's user avatar
  • 57.5k
9 votes

USB webcam connected to MacBook through Dell monitor is sporadically undetected

There is a firmware update available for your monitor claiming to fix USB issues with Macbooks: Fixes & Enhancements ... 2. Fix Apple Macbook USB compatibility issues. ... You can find the update ...
mashuptwice's user avatar
  • 3,284
9 votes
Accepted

How can I get rid of a specific driver that I'm not even using?

In the device manager: Select View → Devices by driver Right click on the driver (in your case oem109.inf) Enable both tick boxes: ✓ Uninstall this driver from any device that currently use it. ✓ ...
iRon's user avatar
  • 208
8 votes

How to identify USB webcam by serial number from the Linux command line

I had same problem too. I needed to identify 6 usb cameras connected to raspberry pi with 1 more usb hub. 6 cameras have all identical vendor id, model name and serial #. Whenever I turned off and on ...
Simon's user avatar
  • 81
8 votes

Use a IP-camera as a virtual camera

You were pretty close on your first attempt, actually. The input format is specified before the -i argument, like this: -f mjpeg -i rtsp://192.168.1.16/play2.sdp, and you might have to specify a pixel ...
xieve's user avatar
  • 81
7 votes

Ubuntu turns on webcam but black screen in cheese

I know this sounds stupid, but it's worth a try. Some laptop models have a physical shutter, so the reason for the black screen is because the shutter's closed. You can usually open it with a ...
KayleMaster's user avatar
7 votes

FFmpeg w/ V4L2 for virtual webcam on Linux that crops, filters real uvc webcam

Yes, this is possible. Get the v4l2loopback module apt-get install v4l2loopback-dkms Load the module modprobe v4l2loopback exclusive_caps=1 card_label="Virtual Webcam" max_buffers=2 Run ...
Kai Burghardt's user avatar
7 votes

How can I remotely determine if a laptop has webcam from the console?

PowerShell looks like a good option. From Use PowerShell to discover laptop webcam a couple of options are given. The one that worked for me is Get-CimInstance Win32_PnPEntity | where caption -match '...
Mokubai's user avatar
  • 93.8k
6 votes

How can I list the available video modes for a USB webcam in Linux?

The accepted answer (v4l2-ctl --list-formats) seems to show only the first available format, e.g.: $ v4l2-ctl --list-formats ioctl: VIDIOC_ENUM_FMT Index : 0 Type : Video ...
boardrider's user avatar
  • 1,163
6 votes

Can I use my DSLR as webcam through gphoto2 + v4l2loopback?

As of October 2017, GStreamer has been updated to 1.0 and v4l2loopback has also received some updates. As such, the old command posted by @Reinaert Albrecht doesn't work anymore, and the new command ...
Florian Segginger's user avatar
6 votes

How can I remotely determine if a laptop has webcam from the console?

I haven't extensively tested this but Get-PnpDevice -PresentOnly | Where-Object { $_.Class -match '^Camera' } seems to work - kinda started with this SO answer and adjusted to fit It'll also give you ...
Journeyman Geek's user avatar
  • 130k
5 votes

Running Webcam with multiple applications

I recommend to use the free and open source software, OBS Studio. There is an OBS VirtualCam plugin which enables to create a virtual camera which can be used by other apps, for free, with no odious &...
Sam Watkins's user avatar
5 votes
Accepted

How do I reset an USB device without unplugging it in Linux?

usbutils includes usbreset. Run it without any arguments to see usage and a list of devices. It requires superuser access to actually reset devices. Usage: usbreset PPPP:VVVV - reset by product and ...
epakai's user avatar
  • 66
5 votes

Take webcam picture from shell with minimal delay

For my webcam, fswebcam takes a picture in less than half a second: $ time fswebcam test1.jpg ... real 0m0.491s user 0m0.024s sys 0m0.000s It takes a bit longer to write to stdout and then ...
dirkt's user avatar
  • 17k
5 votes

USB Webcam over Remote Desktop Connection

I found this solution from another website and it worked for me (same camera too). On the PC you're connecting to, change the following in Edit Group Policy: Computer Configuration > ...
Kcoder's user avatar
  • 171
5 votes

Logitech Streamcam not offering all modes on Manjaro

I guess my old answer was wrong. I recently bought the Logitech StreamCam myself and for me it works under Ubuntu 20.04 (kernel 5.4.0) on my Intel-based laptop. I get the same kernel messages as ...
ph0t0nix's user avatar
  • 188
5 votes

If I attach my USB webcam to USB to AV converter and then plug it in AV to HDMI mini adapter, will it work?

While I wouldnt call these USB to RCA adapters a scam, its close. They are made for very specific devices - not webcams. The seller/manufacturer probably has some left over from an order and is just ...
Keltari's user avatar
  • 73.6k
5 votes

How to list all detected cameras in chrome (offline without a website)?

The about://settings/content/camera page has a dropdown that lists the different cameras the browser can see in at least Chrome and Edge. If you want something more involved, you can try navigator....
Cpt.Whale's user avatar
  • 8,457

Only top scored, non community-wiki answers of a minimum length are eligible