0

I'm new to Linux. After installing Ubuntu when I explored all features at that time I noticed that the Camera app was not detecting my laptop's webcam, but when I'm using Windows 11 it works perfectly.

enter image description here

karel
  • 122,292
  • 133
  • 301
  • 332

3 Answers3

0

Have you tried installing cheese? I had this same issue and I installed cheese and it detected my camera. Try the command "sudo snap install cheese." in your terminal app

0

If your issue is the same as mine and another's, assuming you're using the latest Ubuntu, probably Pipewire not having all its dependencies, maybe try installing libcamera-ipa and pipewire-libcamera then:

systemctl --user restart wireplumber.service

then try the Camera app / snapshot again.

Malady
  • 292
0

Here's some steps to fix that (it worked for me and should work for you)

  1. Open a Terminal Ctrl + Alt + T

  2. Update the package list for your repository

sudo apt-get update
  1. Restart pipewire
systemctl --user restart pipewire
  1. Run snapshot from terminal. snapshot is the package name for camera app.
snapshot

It should work after that.