23

What software options are there for taking videos and or pictures within Ubuntu (Much like Apple's Photobooth)?

Please limit one software solution per answer and include key features/description of the software

Jorge Castro
  • 73,907
  • 2
    This has been made more generic from the original posters question of "Alternatives for Cheese" in order to make it work better on this site. While Cheese will inevitably be an answer to this question, so will every other available software like cheese making it not only work for the Original Poster, but also everyone else (Those looking Alternatives to either Cheese - or software similar to Cheese). – Marco Ceppi Oct 27 '10 at 15:43

5 Answers5

18

cheese Install cheese

Cheese uses your webcam to take photos and videos, applies fancy special effects and lets you share the fun with others.

Cheese uses GStreamer to apply fancy effects to photos and videos. With Cheese it is easy to take photos of you, your friends, pets or whatever you want and share them with others. After the success of the Summer of Code, the development continued and we still are looking for people with nice ideas and patches ;)

alt text

sBlatt
  • 4,649
  • Is there a way to increase FPS on cheese. I get sluggish videos and while taking pics I have to stay still for about 2 sec for the picture to be stabalized. – Gaurav Butola Oct 27 '10 at 20:02
7

Camorama Webcam Viewer Install Camorama

sudo apt-get install camorama

Caomorana screenshot

  • Good option to do basic capturing and adjustments. Required only 1 package (camorama - ~1MB post install) as opposed to 33 packages (~79MB) required for cheese on my setup. – Sithsu May 01 '14 at 12:21
4

GTK+ base UVC Viewer Install UVC Viewer

It has a clean, intuitive design that makes it very easy to use, and gives excellent results each time.

enter image description here enter image description hereenter image description here

Radu Rădeanu
  • 174,437
0

ffmpeg + ffplay + pipe

Mostly for some minimalist fun, but it does work:

sudo apt install ffmpeg
ffmpeg -f v4l2 -framerate 30 -video_size 1280x720 -input_format mjpeg \
  -i /dev/video0 -c copy -f matroska - |
  tee out.mkv |
  ffplay -

You will get a "preview window" with ffplay, and once you close that window, the file out.mkv will also contain the video you just recorded.

ffplay from pipe explained at: https://superuser.com/questions/322216/how-can-i-pipe-output-of-ffmpeg-to-ffplay/520952#520952

More context at: How to check available webcams from the command line?

Tested on Ubuntu 23.10, Lenovo ThinkPad P14s.

0

QtCAM is a free, Open Source Linux Webcamera Software with more than 10 image control settings, extension settings and Color space switching.

Still capture settings in QtCAM

Zanna
  • 72,471