Giter Site home page Giter Site logo

camorama's Introduction

Translation status

Build

The build dependencies vary along distributions.

On Fedora:

sudo dnf install gcc make gettext-devel libv4l-devel gtk3-devel cairo-devel \
	gdk-pixbuf2-devel gnome-common

On Ubuntu/Debian:

sudo apt-get install gcc make gettext libv4l-dev libgtk-3-dev libcairo2-dev \
	libgdk-pixbuf2.0-dev gnome-common

Once the dependencies are installed, building and installing camorama can be done with:

./autogen.sh
make
sudo make install

Run

camorama (options)

Help Options:
  -h, --help                 Show help options
  --help-all                 Show all help options
  --help-gapplication        Show GApplication options
  --help-gtk                 Show GTK+ Options

Application Options:
  -V, --version              show version and exit
  -d, --device               v4l device to use
  -D, --debug                enable debugging code
  -x, --width                capture width
  -y, --height               capture height
  -M, --max                  maximum capture size
  -m, --min                  minimum capture size
  -H, --half                 middle capture size
  -R, --read                 use read() rather than mmap()
  -S, --disable-scaler       disable video scaler
  -U, --userptr              use userptr pointer rather than mmap()
  --dont-use-libv4l2         use userptr pointer rather than mmap()
  -i, --input                v4l device input to use
  --display=DISPLAY          X display to use

GUI:

That's the Camorama GUI:

+-----------------------------------------------------------------+
|     Camorama - HD Pro Webcam C920 - 800x600 (scale: 75%)        |
| File   Edit   View   Help                                       |
+------------------------------------------+----------------------+
|                                          |  Effects             |
|                    .~.                   |                      |
|                    /V\                   |                      |
|                   // \\                  |                      |
|                  /(   )\                 |                      |
|                   ^`~'^                  |                      |
|                                          |                      |
+------------------------------------------+----------------------+
| [Show Adjustments] [Show Controls] [Full Screen] [Take Picture] |
| Contrast:   128 ++++++++++++++++++++++|------------------------ |
| Brightness: 128 ++++++++++++++++++++++|------------------------ |
| Zoom:       100 |---------------------------------------------- |
| Color:      128 ++++++++++++++++++++++|------------------------ |
|                                                                 |
| 30.00 fps - current   30.24 fps - average                       |
+-----------------------------------------------------------------+

The menu contains:

  • File option has 3 items:
    • Take Picture: Takes an instant shot;
    • Toggle Full Screen: Toggles between full screen and normal mode;
    • Quit: quits Camorama.
  • Edit: Has a preferences menu that allows to setup periodic screen shots. See more details below.
  • View: Allows disabling/enabling the Effects view and the sliders. It also allows selecting the video resolution, which also affects the frame rate.
  • Help: Has an About button that show Camorama version, credits and license.

The camera image is shown at the top left, just below the menu. Its dispayed image can be affected by several optional effects.

The slides cover some image controls that are supported by your camera.

When there's no effects applied, the "Effects" part of the window will be empty. Right-clicking with the mouse should open an small menu that allows adding/removing efect filters to the image.

The supported effect filters are:

  • Invert:
    • invert image colors, making it a picture negative.
  • Threshold (Overall):
    • any pixel with an average value < x turns black or > x turns white. x is adjusted via a "Theshold" slider.
  • Threshold (Per Channel):
    • same as above, but sets threshold per each each color channel, e.g. red, green and blue. x is adjusted via a "Channel Theshold" slider.
  • Mirror:
    • mirror image
  • Wacky:
    • started out as an edge detection function, turned into, um, this ;-)
  • Reichardt:
    • Hassenstein-Reichardt movement detection filter
  • Smooth:
    • smooths image
  • Laplace:
    • shoddy Laplace edge detection function
  • Monochrome:
    • Remove colors from the image
  • Monochrome (Weight):
    • Remove colors from the image
  • Sobel:
    • didn't turn out right, but i thought this looked cool too :).

The buttons below the image and effects are:

  • Show Adjustments show/hide the sliders for main controls and filter sliders
  • Show Controls opens a window that allows adjusting the controls exposed by the driver. Those include the ones at Show Adjustments, but using the English names of each control, as exposed by the Linux Kernel and/or by libv4l.
  • Full Screen: Shows camorama in full screen mode;
  • Take Picture capture image

The Edit/Preferences menu allows to setup several properties related to image capture:

  • General:

    • Automatic capture: enables periodic screen shots. When selected, allows to select the capture interval.
  • Local Capture: adjust the parameters for local capture/screen shots.

    • directory - dir where captures will be saved
    • filename - filename for captures
    • append time to filename - should camorama append the time to the filename. When enabled, the file name will use this format: %Y-%m-%d %H:%M:%S. It will also append a 3-digit number in order to allow capturing more than one frame per second. If not selected, a newly captured image will overwrite the last image if it has the same name.
    • add a timestamp to captured images - put a timestamp in the lower left corner of the image. The format of such timestamp is defined via timestamp properties (see below).
    • image type - what to save the image as.
  • Remote Capture: capture and upload capture image to a remote server. Please notice that the credentials are maintained by Gnome;

    • server: IP or domain for remote capture;
    • type: type of capture. Can be ftp, scp or smb;
    • save directory - where to save the file on the server. Using the full pathname seems to work better.
    • filename - filename for captures
    • append time to filename - should camorama append the time to the filename. When enabled, the file name will use this format: %Y-%m-%d %H:%M:%S. It will also append a 3-digit number in order to allow capturing more than one frame per second. If not selected, a newly captured image will overwrite the last image if it has the same name.
    • add a timestamp to captured images - put a timestamp in the lower left corner of the image. The format of such timestamp is defined via timestamp properties (see below).
    • image type - what to save the image as.
  • Timestamp: you can use the date/time, a custom string, or both together.

    • use custom string - use a custom string in the timestamp
    • custom string - string you want to use in the timestamp
    • draw date/time - add date/time in the timestamp

Please add an issue at https://github.com/alessio/camorama if you have any problems building or running camorama or if you have any comments/questions.

Credits

These are projects that the original author looked at when creating Camorama:

  • gspy (gspy.sourceforge.net) - gnome/v4l stuff, code for image timestamp
  • gqcam - gnome/v4l stuff - the more i work on camorama, the more it becomes gqcam2 ;)
  • xawtv - v4l stuff
  • metacity-setup (https://help.ubuntu.com/community/Metacity) - configure scripts and gnome2 stuff
  • Mark McClelland for the code for YUV->RGB conversion
  • gnomemeeting for the eggtray icon stuff (system tray applet).

camorama's People

Contributors

5idereal avatar albanobattistella avatar alessio avatar atalanttore avatar bittin avatar boffire avatar comradekingu avatar copperii avatar ehespinosa avatar fabaff avatar goeranu avatar iq8qi avatar jibec avatar julroy67 avatar jwrdegoede avatar lch avatar lehronn avatar mansil avatar mchehab avatar nathan990315 avatar oersen avatar piotrdrag avatar ricky-tigg avatar scootergrisen avatar terremoth avatar weblate avatar yurchor avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

camorama's Issues

Please add AppData File

Hi, I'm a translator from Fedora. I would like your software to be translated in Gnome-Software.

To do this, please add this appdata file to your project (it's basically an improved .desktop file, you may have a look on appstream or appdata on freedesktop) :
http://pkgs.fedoraproject.org/cgit/rpms/camorama.git/tree/camorama.appdata.xml?h=f24

Then, please update your po files : one blog post about it https://blogs.gnome.org/mclasen/2016/07/21/using-modern-gettext/

Then, tell me where to go to translate ;)

thanks for your help

Difficulties with bright (outdoor) images.

I am trying to use camorama to view an outdoor scene through a window. I have tried 2 different webcams (one 10+years old; one 1 year old). Neither camera shows anything but white out the window. I put a strong neutral density filter over the lens and I can then get an image. So camorama is working, but appears to be too for a strongly lit situation. It its range it seems to autoadjust, but outdoor lighting seems to be beyond its range. Gluing filters over lenses doesn't help the image quality or sharpness. Is there a way in the software to adjust this. (the brightness slide does not handle it.) Thanks,
BTW I really like camorama and and happy to see that it is being taken care of.

notice of minor fork: docsnap

Greetings,

For my workflow, I've found it necessary to take the camorama source in a somewhat different direction (or... specialization?). I'm not trying to compete for resources or mind share, and it might not even get much traction or attention. This is just a friendly notice for your benefit, presented as a issue ticket so in case you would like to take some action on this notice (like checking out the commits, linking to the project, etc). Nothing is required, of course.

https://github.com/Osndok/docsnap

Suggested config file addition

If two cameras are on the system, you cannot access the second one - no user interface to do so. I also have a complaint: if the first device is already in use, camorama bails out without any explanation, just a brief blip on the screen and gone. I would like to see camorama scan the available video devices and gracefully skip any nonexistant or in use devices. It would also be nice to specify an exact camera to use in case of multiple cameras, and make that choice persistent through the config file so that it is the default camera each time camorama starts, if it is available. If no devices are available, an advisory message to that effect would be appreciated rather than just bailing out.

is it possible to capture a higher quality image with a smaller preview?

I've been hacking at a local copy of camorama to try and get it to export full-quality images while showing only a small/finite preview (be default it is HUGE). Before I spend too much additional time on it, I was wondering if you had any insight into the plausibility of this endeavor.

build problem: gettext version mismatch

make[3]: Leaving directory '{path cut out}camorama/po'
*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version 0.19 but the autoconf macros are from gettext version 0.20
[2]: *** [Makefile:235: stamp-po] Error 1
make[2]: Leaving directory '{}camorama/po'
make[1]: *** [Makefile:531: all-recursive] Error 1
make[1]: Leaving directory '{}camorama'
make: *** [Makefile:387: all] Error 2

please migrate to the new Fedora translation platform

Hello, the Fedora project migrates its translation platform to Weblate [1].

This tool directly interact with your git repository, and requires us to know:

  • [mandatory] which branch is your development branch?
  • [mandatory] have you merged latest translation from Zanata and locked the project?
  • [info] Weblate will handle updates when pot file changes, don't edit po files for this [2]
  • [optional] what is the license of translation? (please use a code from https://spdx.org/licenses/)
  • [optional] do you have any announcement/warning you would like to display to the translators? (it will be displayed in Weblate)
  • [optional] do you need us to activate any specific checks? (this is a setting per component [3])
  • [optional] do you need us to automatically detect new translation files? (typical usecase: website translation with one translation file per page)

Please note:

  • For github hosted projects, Weblate open pull request. For other project, you'll have to add a key to allow commits.
  • In Weblate's vocable, one project is a group of component. Each component is a translation file. You can have many projects or many components or both.
  • You can change your mind over time, just reach [email protected]

[1] https://communityblog.fedoraproject.org/fedora-localization-platform-migrates-to-weblate/
[2] https://docs.weblate.org/en/latest/admin/continuous.html#avoiding-merge-conflicts
[3] https://docs.weblate.org/en/latest/user/checks.html#translation-checks

Under Raspberry pi, camorama is producing false color images

I compiled the current version of camorama-master under raspian on a Rpi. It finds the camera, but the image display is way too intense with saturated colors. half of the image is white. The camera is working well under windows,and fedora linux.

its broken

I have no idea what im doing but enough of an idea to know that the program wont build on ubuntu 22.04 when I copy and paste the terminal commands.
I didnt even want to do it this way but it looks like the ubuntu repository is so outdated it wont work. IDK I really DO NOT understand how linux works Im just good at tinkering with stuff.

danky@Maya-deva:~$ sudo apt-get install -y camorama
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package camorama is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'camorama' has no installation candidate

danky@Maya-deva:$ sudo apt-get install gcc make gettext libv4l-dev libgtk-3-dev libcairo2-dev
libgdk-pixbuf2.0-dev gnome-common
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
gcc is already the newest version (4:11.2.0-1ubuntu1).
gcc set to manually installed.
make is already the newest version (4.3-4.1build1).
make set to manually installed.
The following packages were automatically installed and are no longer required:
python3-brlapi python3-louis xbrlapi
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
autoconf autoconf-archive automake autopoint autotools-dev icu-devtools
intltool libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libblkid-dev
libbrotli-dev libdatrie-dev libdbus-1-dev libdeflate-dev libegl-dev
libegl1-mesa-dev libepoxy-dev libffi-dev libfontconfig-dev libfontconfig1-dev
libfreetype-dev libfreetype6-dev libfribidi-dev libgdk-pixbuf-2.0-dev
libgdk-pixbuf-xlib-2.0-0 libgdk-pixbuf-xlib-2.0-dev libgl-dev libgles-dev
libgles1 libglib2.0-dev libglib2.0-dev-bin libglvnd-core-dev libglvnd-dev
libglx-dev libgraphite2-dev libharfbuzz-dev libharfbuzz-gobject0 libice-dev
libicu-dev libjbig-dev libjpeg-dev libjpeg-turbo8-dev libjpeg8-dev libltdl-dev
liblzma-dev libmount-dev libopengl-dev libpango1.0-dev libpcre16-3 libpcre2-dev
libpcre2-posix3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpixman-1-dev
libpng-dev libpng-tools libpthread-stubs0-dev libselinux1-dev libsepol-dev
libsm-dev libthai-dev libtiff-dev libtiffxx5 libtool libv4l2rds0 libwayland-bin
libwayland-dev libx11-dev libxau-dev libxcb-render0-dev libxcb-shm0-dev
libxcb1-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev
libxext-dev libxfixes-dev libxft-dev libxi-dev libxinerama-dev libxkbcommon-dev
libxrandr-dev libxrender-dev libxtst-dev m4 pango1.0-tools uuid-dev
wayland-protocols x11proto-dev xorg-sgml-doctools xtrans-dev
Suggested packages:
gnu-standards autoconf-doc gettext-doc libasprintf-dev libgettextpo-dev
libcairo2-doc libdatrie-doc freetype2-doc libgirepository1.0-dev libglib2.0-doc
libxml2-utils libgraphite2-utils libgtk-3-doc libice-doc icu-doc libtool-doc
liblzma-doc libpango1.0-doc libsm-doc libthai-doc gfortran | fortran95-compiler
gcj-jdk libwayland-doc libx11-doc libxcb-doc libxext-doc m4-doc graphicsmagick
The following NEW packages will be installed:
autoconf autoconf-archive automake autopoint autotools-dev gettext gnome-common
icu-devtools intltool libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev
libblkid-dev libbrotli-dev libcairo2-dev libdatrie-dev libdbus-1-dev
libdeflate-dev libegl-dev libegl1-mesa-dev libepoxy-dev libffi-dev
libfontconfig-dev libfontconfig1-dev libfreetype-dev libfreetype6-dev
libfribidi-dev libgdk-pixbuf-2.0-dev libgdk-pixbuf-xlib-2.0-0
libgdk-pixbuf-xlib-2.0-dev libgdk-pixbuf2.0-dev libgl-dev libgles-dev libgles1
libglib2.0-dev libglib2.0-dev-bin libglvnd-core-dev libglvnd-dev libglx-dev
libgraphite2-dev libgtk-3-dev libharfbuzz-dev libharfbuzz-gobject0 libice-dev
libicu-dev libjbig-dev libjpeg-dev libjpeg-turbo8-dev libjpeg8-dev libltdl-dev
liblzma-dev libmount-dev libopengl-dev libpango1.0-dev libpcre16-3 libpcre2-dev
libpcre2-posix3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpixman-1-dev
libpng-dev libpng-tools libpthread-stubs0-dev libselinux1-dev libsepol-dev
libsm-dev libthai-dev libtiff-dev libtiffxx5 libtool libv4l-dev libv4l2rds0
libwayland-bin libwayland-dev libx11-dev libxau-dev libxcb-render0-dev
libxcb-shm0-dev libxcb1-dev libxcomposite-dev libxcursor-dev libxdamage-dev
libxdmcp-dev libxext-dev libxfixes-dev libxft-dev libxi-dev libxinerama-dev
libxkbcommon-dev libxrandr-dev libxrender-dev libxtst-dev m4 pango1.0-tools
uuid-dev wayland-protocols x11proto-dev xorg-sgml-doctools xtrans-dev
0 upgraded, 100 newly installed, 0 to remove and 19 not upgraded.
Need to get 28.0 MB of archives.
After this operation, 134 MB of additional disk space will be used.
Do you want to continue? [Y/n]
Get:1 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 autoconf-archive all 20210219-2.1 [676 kB]
Get:2 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 m4 amd64 1.4.18-5ubuntu2 [199 kB]
Get:3 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 autoconf all 2.71-2 [338 kB]
Get:4 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 autotools-dev all 20220109.1 [44.9 kB]
Get:5 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 automake all 1:1.16.5-1.3 [558 kB]
Get:6 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 autopoint all 0.21-4ubuntu4 [422 kB]
Get:7 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 gettext amd64 0.21-4ubuntu4 [868 kB]
Get:8 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libtool all 2.4.6-15build2 [164 kB]
Get:9 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 intltool all 0.51.0-6 [44.6 kB]
Get:10 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 gnome-common all 3.18.0-4 [10.1 kB]
Get:11 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 icu-devtools amd64 70.1-2 [197 kB]
Get:12 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libffi-dev amd64 3.4.2-4 [63.7 kB]
Get:13 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libglib2.0-dev-bin amd64 2.72.4-0ubuntu2.2 [117 kB]
Get:14 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 uuid-dev amd64 2.37.2-4ubuntu3 [33.1 kB]
Get:15 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libblkid-dev amd64 2.37.2-4ubuntu3 [185 kB]
Get:16 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libsepol-dev amd64 3.3-1build1 [378 kB]
Get:17 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-posix3 amd64 10.39-3ubuntu0.1 [6,130 B]
Get:18 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-dev amd64 10.39-3ubuntu0.1 [730 kB]
Get:19 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libselinux1-dev amd64 3.3-1build2 [158 kB]
Get:20 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libmount-dev amd64 2.37.2-4ubuntu3 [14.5 kB]
Get:21 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre16-3 amd64 2:8.39-13ubuntu0.22.04.1 [164 kB]
Get:22 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre32-3 amd64 2:8.39-13ubuntu0.22.04.1 [155 kB]
Get:23 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcrecpp0v5 amd64 2:8.39-13ubuntu0.22.04.1 [16.5 kB]
Get:24 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre3-dev amd64 2:8.39-13ubuntu0.22.04.1 [579 kB]
Get:25 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libglib2.0-dev amd64 2.72.4-0ubuntu2.2 [1,739 kB]
Get:26 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libatk1.0-dev amd64 2.36.0-3build1 [96.6 kB]
Get:27 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdbus-1-dev amd64 1.12.20-2ubuntu4.1 [188 kB]
Get:28 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 xorg-sgml-doctools all 1:1.11-1.1 [10.9 kB]
Get:29 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 x11proto-dev all 2021.5-1 [604 kB]
Get:30 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxau-dev amd64 1:1.0.9-1build5 [9,724 B]
Get:31 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxdmcp-dev amd64 1:1.1.3-0ubuntu5 [26.5 kB]
Get:32 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 xtrans-dev all 1.4.0-1 [68.9 kB]
Get:33 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libpthread-stubs0-dev amd64 0.4-1build2 [5,516 B]
Get:34 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxcb1-dev amd64 1.14-3ubuntu3 [86.5 kB]
Get:35 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx11-dev amd64 2:1.7.5-1ubuntu0.3 [744 kB]
Get:36 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxext-dev amd64 2:1.3.4-1build1 [84.7 kB]
Get:37 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxfixes-dev amd64 1:6.0.0-1 [12.2 kB]
Get:38 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxi-dev amd64 2:1.8-1build1 [193 kB]
Get:39 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxtst-dev amd64 2:1.2.3-1build4 [16.3 kB]
Get:40 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libatspi2.0-dev amd64 2.44.0-3 [71.5 kB]
Get:41 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libatk-bridge2.0-dev amd64 2.38.0-3 [2,954 B]
Get:42 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libbrotli-dev amd64 1.0.9-2build6 [337 kB]
Get:43 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libpng-dev amd64 1.6.37-3build5 [192 kB]
Get:44 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libfreetype-dev amd64 2.11.1+dfsg-1ubuntu0.2 [555 kB]
Get:45 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libfreetype6-dev amd64 2.11.1+dfsg-1ubuntu0.2 [8,290 B]
Get:46 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libfontconfig-dev amd64 2.13.1-4.2ubuntu5 [151 kB]
Get:47 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libfontconfig1-dev amd64 2.13.1-4.2ubuntu5 [1,836 B]
Get:48 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxrender-dev amd64 1:0.9.10-1build4 [26.7 kB]
Get:49 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libice-dev amd64 2:1.0.10-1build2 [51.4 kB]
Get:50 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libsm-dev amd64 2:1.2.3-1build2 [18.1 kB]
Get:51 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpixman-1-dev amd64 0.40.0-1ubuntu0.22.04.1 [280 kB]
Get:52 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-render0-dev amd64 1.14-3ubuntu3 [19.6 kB]
Get:53 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-shm0-dev amd64 1.14-3ubuntu3 [6,848 B]
Get:54 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libcairo2-dev amd64 1.16.0-5ubuntu2 [692 kB]
Get:55 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libdatrie-dev amd64 0.2.13-2 [19.7 kB]
Get:56 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libdeflate-dev amd64 1.10-2 [59.2 kB]
Get:57 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libglx-dev amd64 1.4.0-1 [14.1 kB]
Get:58 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libgl-dev amd64 1.4.0-1 [101 kB]
Get:59 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libegl-dev amd64 1.4.0-1 [18.0 kB]
Get:60 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libglvnd-core-dev amd64 1.4.0-1 [12.7 kB]
Get:61 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libgles1 amd64 1.4.0-1 [11.5 kB]
Get:62 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libgles-dev amd64 1.4.0-1 [49.4 kB]
Get:63 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libopengl-dev amd64 1.4.0-1 [3,400 B]
Get:64 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libglvnd-dev amd64 1.4.0-1 [3,162 B]
Get:65 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libegl1-mesa-dev amd64 23.0.4-0ubuntu1
22.04.1 [10.7 kB]
Get:66 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libepoxy-dev amd64 1.5.10-1 [132 kB]
Get:67 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libfribidi-dev amd64 1.0.8-2ubuntu3.1 [64.8 kB]
Get:68 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg-turbo8-dev amd64 2.1.2-0ubuntu1 [257 kB]
Get:69 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg8-dev amd64 8c-2ubuntu10 [1,476 B]
Get:70 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg-dev amd64 8c-2ubuntu10 [1,472 B]
Get:71 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libjbig-dev amd64 2.1-3.1ubuntu0.22.04.1 [27.4 kB]
Get:72 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 liblzma-dev amd64 5.2.5-2ubuntu1 [159 kB]
Get:73 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtiffxx5 amd64 4.3.0-6ubuntu0.7 [5,736 B]
Get:74 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtiff-dev amd64 4.3.0-6ubuntu0.7 [315 kB]
Get:75 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgdk-pixbuf-2.0-dev amd64 2.42.8+dfsg-1ubuntu0.2 [47.8 kB]
Get:76 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libgdk-pixbuf-xlib-2.0-0 amd64 2.40.2-2build4 [42.6 kB]
Get:77 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libgdk-pixbuf-xlib-2.0-dev amd64 2.40.2-2build4 [4,738 B]
Get:78 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libgdk-pixbuf2.0-dev amd64 2.40.2-2build4 [2,492 B]
Get:79 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libgraphite2-dev amd64 1.3.14-1build2 [14.7 kB]
Get:80 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libharfbuzz-gobject0 amd64 2.7.4-1ubuntu3.1 [26.0 kB]
Get:81 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libicu-dev amd64 70.1-2 [11.6 MB]
Get:82 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libharfbuzz-dev amd64 2.7.4-1ubuntu3.1 [553 kB]
Get:83 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libthai-dev amd64 0.1.29-1build1 [26.4 kB]
Get:84 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxft-dev amd64 2.3.4-1 [52.4 kB]
Get:85 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 pango1.0-tools amd64 1.50.6+ds-2ubuntu1 [45.8 kB]
Get:86 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpango1.0-dev amd64 1.50.6+ds-2ubuntu1 [154 kB]
Get:87 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-bin amd64 1.20.0-1ubuntu0.1 [20.4 kB]
Get:88 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-dev amd64 1.20.0-1ubuntu0.1 [69.5 kB]
Get:89 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxcomposite-dev amd64 1:0.4.5-1build2 [9,326 B]
Get:90 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxcursor-dev amd64 1:1.2.0-2build4 [28.2 kB]
Get:91 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxdamage-dev amd64 1:1.1.5-2build2 [5,264 B]
Get:92 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxinerama-dev amd64 2:1.1.4-3 [8,104 B]
Get:93 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxkbcommon-dev amd64 1.4.0-1 [54.9 kB]
Get:94 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libxrandr-dev amd64 2:1.5.2-1build1 [26.7 kB]
Get:95 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 wayland-protocols all 1.25-1 [70.6 kB]
Get:96 http://us.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgtk-3-dev amd64 3.24.33-1ubuntu2 [1,082 kB]
Get:97 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libltdl-dev amd64 2.4.6-15build2 [169 kB]
Get:98 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libpng-tools amd64 1.6.37-3build5 [28.7 kB]
Get:99 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libv4l2rds0 amd64 1.22.1-2build1 [17.5 kB]
Get:100 http://us.archive.ubuntu.com/ubuntu jammy/main amd64 libv4l-dev amd64 1.22.1-2build1 [118 kB]
Fetched 28.0 MB in 32s (877 kB/s)
Extracting templates from packages: 100%
Selecting previously unselected package autoconf-archive.
(Reading database ... 425455 files and directories currently installed.)
Preparing to unpack .../00-autoconf-archive_20210219-2.1_all.deb ...
Unpacking autoconf-archive (20210219-2.1) ...
Selecting previously unselected package m4.
Preparing to unpack .../01-m4_1.4.18-5ubuntu2_amd64.deb ...
Unpacking m4 (1.4.18-5ubuntu2) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../02-autoconf_2.71-2_all.deb ...
Unpacking autoconf (2.71-2) ...
Selecting previously unselected package autotools-dev.
Preparing to unpack .../03-autotools-dev_20220109.1_all.deb ...
Unpacking autotools-dev (20220109.1) ...
Selecting previously unselected package automake.
Preparing to unpack .../04-automake_1%3a1.16.5-1.3_all.deb ...
Unpacking automake (1:1.16.5-1.3) ...
Selecting previously unselected package autopoint.
Preparing to unpack .../05-autopoint_0.21-4ubuntu4_all.deb ...
Unpacking autopoint (0.21-4ubuntu4) ...
Selecting previously unselected package gettext.
Preparing to unpack .../06-gettext_0.21-4ubuntu4_amd64.deb ...
Unpacking gettext (0.21-4ubuntu4) ...
Selecting previously unselected package libtool.
Preparing to unpack .../07-libtool_2.4.6-15build2_all.deb ...
Unpacking libtool (2.4.6-15build2) ...
Selecting previously unselected package intltool.
Preparing to unpack .../08-intltool_0.51.0-6_all.deb ...
Unpacking intltool (0.51.0-6) ...
Selecting previously unselected package gnome-common.
Preparing to unpack .../09-gnome-common_3.18.0-4_all.deb ...
Unpacking gnome-common (3.18.0-4) ...
Selecting previously unselected package icu-devtools.
Preparing to unpack .../10-icu-devtools_70.1-2_amd64.deb ...
Unpacking icu-devtools (70.1-2) ...
Selecting previously unselected package libffi-dev:amd64.
Preparing to unpack .../11-libffi-dev_3.4.2-4_amd64.deb ...
Unpacking libffi-dev:amd64 (3.4.2-4) ...
Selecting previously unselected package libglib2.0-dev-bin.
Preparing to unpack .../12-libglib2.0-dev-bin_2.72.4-0ubuntu2.2_amd64.deb ...
Unpacking libglib2.0-dev-bin (2.72.4-0ubuntu2.2) ...
Selecting previously unselected package uuid-dev:amd64.
Preparing to unpack .../13-uuid-dev_2.37.2-4ubuntu3_amd64.deb ...
Unpacking uuid-dev:amd64 (2.37.2-4ubuntu3) ...
Selecting previously unselected package libblkid-dev:amd64.
Preparing to unpack .../14-libblkid-dev_2.37.2-4ubuntu3_amd64.deb ...
Unpacking libblkid-dev:amd64 (2.37.2-4ubuntu3) ...
Selecting previously unselected package libsepol-dev:amd64.
Preparing to unpack .../15-libsepol-dev_3.3-1build1_amd64.deb ...
Unpacking libsepol-dev:amd64 (3.3-1build1) ...
Selecting previously unselected package libpcre2-posix3:amd64.
Preparing to unpack .../16-libpcre2-posix3_10.39-3ubuntu0.1_amd64.deb ...
Unpacking libpcre2-posix3:amd64 (10.39-3ubuntu0.1) ...
Selecting previously unselected package libpcre2-dev:amd64.
Preparing to unpack .../17-libpcre2-dev_10.39-3ubuntu0.1_amd64.deb ...
Unpacking libpcre2-dev:amd64 (10.39-3ubuntu0.1) ...
Selecting previously unselected package libselinux1-dev:amd64.
Preparing to unpack .../18-libselinux1-dev_3.3-1build2_amd64.deb ...
Unpacking libselinux1-dev:amd64 (3.3-1build2) ...
Selecting previously unselected package libmount-dev:amd64.
Preparing to unpack .../19-libmount-dev_2.37.2-4ubuntu3_amd64.deb ...
Unpacking libmount-dev:amd64 (2.37.2-4ubuntu3) ...
Selecting previously unselected package libpcre16-3:amd64.
Preparing to unpack .../20-libpcre16-3_2%3a8.39-13ubuntu0.22.04.1_amd64.deb ...
Unpacking libpcre16-3:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Selecting previously unselected package libpcre32-3:amd64.
Preparing to unpack .../21-libpcre32-3_2%3a8.39-13ubuntu0.22.04.1_amd64.deb ...
Unpacking libpcre32-3:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Selecting previously unselected package libpcrecpp0v5:amd64.
Preparing to unpack .../22-libpcrecpp0v5_2%3a8.39-13ubuntu0.22.04.1_amd64.deb ...
Unpacking libpcrecpp0v5:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Selecting previously unselected package libpcre3-dev:amd64.
Preparing to unpack .../23-libpcre3-dev_2%3a8.39-13ubuntu0.22.04.1_amd64.deb ...
Unpacking libpcre3-dev:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Selecting previously unselected package libglib2.0-dev:amd64.
Preparing to unpack .../24-libglib2.0-dev_2.72.4-0ubuntu2.2_amd64.deb ...
Unpacking libglib2.0-dev:amd64 (2.72.4-0ubuntu2.2) ...
Selecting previously unselected package libatk1.0-dev:amd64.
Preparing to unpack .../25-libatk1.0-dev_2.36.0-3build1_amd64.deb ...
Unpacking libatk1.0-dev:amd64 (2.36.0-3build1) ...
Selecting previously unselected package libdbus-1-dev:amd64.
Preparing to unpack .../26-libdbus-1-dev_1.12.20-2ubuntu4.1_amd64.deb ...
Unpacking libdbus-1-dev:amd64 (1.12.20-2ubuntu4.1) ...
Selecting previously unselected package xorg-sgml-doctools.
Preparing to unpack .../27-xorg-sgml-doctools_1%3a1.11-1.1_all.deb ...
Unpacking xorg-sgml-doctools (1:1.11-1.1) ...
Selecting previously unselected package x11proto-dev.
Preparing to unpack .../28-x11proto-dev_2021.5-1_all.deb ...
Unpacking x11proto-dev (2021.5-1) ...
Selecting previously unselected package libxau-dev:amd64.
Preparing to unpack .../29-libxau-dev_1%3a1.0.9-1build5_amd64.deb ...
Unpacking libxau-dev:amd64 (1:1.0.9-1build5) ...
Selecting previously unselected package libxdmcp-dev:amd64.
Preparing to unpack .../30-libxdmcp-dev_1%3a1.1.3-0ubuntu5_amd64.deb ...
Unpacking libxdmcp-dev:amd64 (1:1.1.3-0ubuntu5) ...
Selecting previously unselected package xtrans-dev.
Preparing to unpack .../31-xtrans-dev_1.4.0-1_all.deb ...
Unpacking xtrans-dev (1.4.0-1) ...
Selecting previously unselected package libpthread-stubs0-dev:amd64.
Preparing to unpack .../32-libpthread-stubs0-dev_0.4-1build2_amd64.deb ...
Unpacking libpthread-stubs0-dev:amd64 (0.4-1build2) ...
Selecting previously unselected package libxcb1-dev:amd64.
Preparing to unpack .../33-libxcb1-dev_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb1-dev:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libx11-dev:amd64.
Preparing to unpack .../34-libx11-dev_2%3a1.7.5-1ubuntu0.3_amd64.deb ...
Unpacking libx11-dev:amd64 (2:1.7.5-1ubuntu0.3) ...
Selecting previously unselected package libxext-dev:amd64.
Preparing to unpack .../35-libxext-dev_2%3a1.3.4-1build1_amd64.deb ...
Unpacking libxext-dev:amd64 (2:1.3.4-1build1) ...
Selecting previously unselected package libxfixes-dev:amd64.
Preparing to unpack .../36-libxfixes-dev_1%3a6.0.0-1_amd64.deb ...
Unpacking libxfixes-dev:amd64 (1:6.0.0-1) ...
Selecting previously unselected package libxi-dev:amd64.
Preparing to unpack .../37-libxi-dev_2%3a1.8-1build1_amd64.deb ...
Unpacking libxi-dev:amd64 (2:1.8-1build1) ...
Selecting previously unselected package libxtst-dev:amd64.
Preparing to unpack .../38-libxtst-dev_2%3a1.2.3-1build4_amd64.deb ...
Unpacking libxtst-dev:amd64 (2:1.2.3-1build4) ...
Selecting previously unselected package libatspi2.0-dev:amd64.
Preparing to unpack .../39-libatspi2.0-dev_2.44.0-3_amd64.deb ...
Unpacking libatspi2.0-dev:amd64 (2.44.0-3) ...
Selecting previously unselected package libatk-bridge2.0-dev:amd64.
Preparing to unpack .../40-libatk-bridge2.0-dev_2.38.0-3_amd64.deb ...
Unpacking libatk-bridge2.0-dev:amd64 (2.38.0-3) ...
Selecting previously unselected package libbrotli-dev:amd64.
Preparing to unpack .../41-libbrotli-dev_1.0.9-2build6_amd64.deb ...
Unpacking libbrotli-dev:amd64 (1.0.9-2build6) ...
Selecting previously unselected package libpng-dev:amd64.
Preparing to unpack .../42-libpng-dev_1.6.37-3build5_amd64.deb ...
Unpacking libpng-dev:amd64 (1.6.37-3build5) ...
Selecting previously unselected package libfreetype-dev:amd64.
Preparing to unpack .../43-libfreetype-dev_2.11.1+dfsg-1ubuntu0.2_amd64.deb ...
Unpacking libfreetype-dev:amd64 (2.11.1+dfsg-1ubuntu0.2) ...
Selecting previously unselected package libfreetype6-dev:amd64.
Preparing to unpack .../44-libfreetype6-dev_2.11.1+dfsg-1ubuntu0.2_amd64.deb ...
Unpacking libfreetype6-dev:amd64 (2.11.1+dfsg-1ubuntu0.2) ...
Selecting previously unselected package libfontconfig-dev:amd64.
Preparing to unpack .../45-libfontconfig-dev_2.13.1-4.2ubuntu5_amd64.deb ...
Unpacking libfontconfig-dev:amd64 (2.13.1-4.2ubuntu5) ...
Selecting previously unselected package libfontconfig1-dev:amd64.
Preparing to unpack .../46-libfontconfig1-dev_2.13.1-4.2ubuntu5_amd64.deb ...
Unpacking libfontconfig1-dev:amd64 (2.13.1-4.2ubuntu5) ...
Selecting previously unselected package libxrender-dev:amd64.
Preparing to unpack .../47-libxrender-dev_1%3a0.9.10-1build4_amd64.deb ...
Unpacking libxrender-dev:amd64 (1:0.9.10-1build4) ...
Selecting previously unselected package libice-dev:amd64.
Preparing to unpack .../48-libice-dev_2%3a1.0.10-1build2_amd64.deb ...
Unpacking libice-dev:amd64 (2:1.0.10-1build2) ...
Selecting previously unselected package libsm-dev:amd64.
Preparing to unpack .../49-libsm-dev_2%3a1.2.3-1build2_amd64.deb ...
Unpacking libsm-dev:amd64 (2:1.2.3-1build2) ...
Selecting previously unselected package libpixman-1-dev:amd64.
Preparing to unpack .../50-libpixman-1-dev_0.40.0-1ubuntu0.22.04.1_amd64.deb ...
Unpacking libpixman-1-dev:amd64 (0.40.0-1ubuntu0.22.04.1) ...
Selecting previously unselected package libxcb-render0-dev:amd64.
Preparing to unpack .../51-libxcb-render0-dev_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb-render0-dev:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libxcb-shm0-dev:amd64.
Preparing to unpack .../52-libxcb-shm0-dev_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb-shm0-dev:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libcairo2-dev:amd64.
Preparing to unpack .../53-libcairo2-dev_1.16.0-5ubuntu2_amd64.deb ...
Unpacking libcairo2-dev:amd64 (1.16.0-5ubuntu2) ...
Selecting previously unselected package libdatrie-dev:amd64.
Preparing to unpack .../54-libdatrie-dev_0.2.13-2_amd64.deb ...
Unpacking libdatrie-dev:amd64 (0.2.13-2) ...
Selecting previously unselected package libdeflate-dev:amd64.
Preparing to unpack .../55-libdeflate-dev_1.10-2_amd64.deb ...
Unpacking libdeflate-dev:amd64 (1.10-2) ...
Selecting previously unselected package libglx-dev:amd64.
Preparing to unpack .../56-libglx-dev_1.4.0-1_amd64.deb ...
Unpacking libglx-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libgl-dev:amd64.
Preparing to unpack .../57-libgl-dev_1.4.0-1_amd64.deb ...
Unpacking libgl-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libegl-dev:amd64.
Preparing to unpack .../58-libegl-dev_1.4.0-1_amd64.deb ...
Unpacking libegl-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libglvnd-core-dev:amd64.
Preparing to unpack .../59-libglvnd-core-dev_1.4.0-1_amd64.deb ...
Unpacking libglvnd-core-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libgles1:amd64.
Preparing to unpack .../60-libgles1_1.4.0-1_amd64.deb ...
Unpacking libgles1:amd64 (1.4.0-1) ...
Selecting previously unselected package libgles-dev:amd64.
Preparing to unpack .../61-libgles-dev_1.4.0-1_amd64.deb ...
Unpacking libgles-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libopengl-dev:amd64.
Preparing to unpack .../62-libopengl-dev_1.4.0-1_amd64.deb ...
Unpacking libopengl-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libglvnd-dev:amd64.
Preparing to unpack .../63-libglvnd-dev_1.4.0-1_amd64.deb ...
Unpacking libglvnd-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libegl1-mesa-dev:amd64.
Preparing to unpack .../64-libegl1-mesa-dev_23.0.4-0ubuntu122.04.1_amd64.deb ...
Unpacking libegl1-mesa-dev:amd64 (23.0.4-0ubuntu1
22.04.1) ...
Selecting previously unselected package libepoxy-dev:amd64.
Preparing to unpack .../65-libepoxy-dev_1.5.10-1_amd64.deb ...
Unpacking libepoxy-dev:amd64 (1.5.10-1) ...
Selecting previously unselected package libfribidi-dev:amd64.
Preparing to unpack .../66-libfribidi-dev_1.0.8-2ubuntu3.1_amd64.deb ...
Unpacking libfribidi-dev:amd64 (1.0.8-2ubuntu3.1) ...
Selecting previously unselected package libjpeg-turbo8-dev:amd64.
Preparing to unpack .../67-libjpeg-turbo8-dev_2.1.2-0ubuntu1_amd64.deb ...
Unpacking libjpeg-turbo8-dev:amd64 (2.1.2-0ubuntu1) ...
Selecting previously unselected package libjpeg8-dev:amd64.
Preparing to unpack .../68-libjpeg8-dev_8c-2ubuntu10_amd64.deb ...
Unpacking libjpeg8-dev:amd64 (8c-2ubuntu10) ...
Selecting previously unselected package libjpeg-dev:amd64.
Preparing to unpack .../69-libjpeg-dev_8c-2ubuntu10_amd64.deb ...
Unpacking libjpeg-dev:amd64 (8c-2ubuntu10) ...
Selecting previously unselected package libjbig-dev:amd64.
Preparing to unpack .../70-libjbig-dev_2.1-3.1ubuntu0.22.04.1_amd64.deb ...
Unpacking libjbig-dev:amd64 (2.1-3.1ubuntu0.22.04.1) ...
Selecting previously unselected package liblzma-dev:amd64.
Preparing to unpack .../71-liblzma-dev_5.2.5-2ubuntu1_amd64.deb ...
Unpacking liblzma-dev:amd64 (5.2.5-2ubuntu1) ...
Selecting previously unselected package libtiffxx5:amd64.
Preparing to unpack .../72-libtiffxx5_4.3.0-6ubuntu0.7_amd64.deb ...
Unpacking libtiffxx5:amd64 (4.3.0-6ubuntu0.7) ...
Selecting previously unselected package libtiff-dev:amd64.
Preparing to unpack .../73-libtiff-dev_4.3.0-6ubuntu0.7_amd64.deb ...
Unpacking libtiff-dev:amd64 (4.3.0-6ubuntu0.7) ...
Selecting previously unselected package libgdk-pixbuf-2.0-dev:amd64.
Preparing to unpack .../74-libgdk-pixbuf-2.0-dev_2.42.8+dfsg-1ubuntu0.2_amd64.deb ...
Unpacking libgdk-pixbuf-2.0-dev:amd64 (2.42.8+dfsg-1ubuntu0.2) ...
Selecting previously unselected package libgdk-pixbuf-xlib-2.0-0:amd64.
Preparing to unpack .../75-libgdk-pixbuf-xlib-2.0-0_2.40.2-2build4_amd64.deb ...
Unpacking libgdk-pixbuf-xlib-2.0-0:amd64 (2.40.2-2build4) ...
Selecting previously unselected package libgdk-pixbuf-xlib-2.0-dev:amd64.
Preparing to unpack .../76-libgdk-pixbuf-xlib-2.0-dev_2.40.2-2build4_amd64.deb ...
Unpacking libgdk-pixbuf-xlib-2.0-dev:amd64 (2.40.2-2build4) ...
Selecting previously unselected package libgdk-pixbuf2.0-dev:amd64.
Preparing to unpack .../77-libgdk-pixbuf2.0-dev_2.40.2-2build4_amd64.deb ...
Unpacking libgdk-pixbuf2.0-dev:amd64 (2.40.2-2build4) ...
Selecting previously unselected package libgraphite2-dev:amd64.
Preparing to unpack .../78-libgraphite2-dev_1.3.14-1build2_amd64.deb ...
Unpacking libgraphite2-dev:amd64 (1.3.14-1build2) ...
Selecting previously unselected package libharfbuzz-gobject0:amd64.
Preparing to unpack .../79-libharfbuzz-gobject0_2.7.4-1ubuntu3.1_amd64.deb ...
Unpacking libharfbuzz-gobject0:amd64 (2.7.4-1ubuntu3.1) ...
Selecting previously unselected package libicu-dev:amd64.
Preparing to unpack .../80-libicu-dev_70.1-2_amd64.deb ...
Unpacking libicu-dev:amd64 (70.1-2) ...
Selecting previously unselected package libharfbuzz-dev:amd64.
Preparing to unpack .../81-libharfbuzz-dev_2.7.4-1ubuntu3.1_amd64.deb ...
Unpacking libharfbuzz-dev:amd64 (2.7.4-1ubuntu3.1) ...
Selecting previously unselected package libthai-dev:amd64.
Preparing to unpack .../82-libthai-dev_0.1.29-1build1_amd64.deb ...
Unpacking libthai-dev:amd64 (0.1.29-1build1) ...
Selecting previously unselected package libxft-dev:amd64.
Preparing to unpack .../83-libxft-dev_2.3.4-1_amd64.deb ...
Unpacking libxft-dev:amd64 (2.3.4-1) ...
Selecting previously unselected package pango1.0-tools.
Preparing to unpack .../84-pango1.0-tools_1.50.6+ds-2ubuntu1_amd64.deb ...
Unpacking pango1.0-tools (1.50.6+ds-2ubuntu1) ...
Selecting previously unselected package libpango1.0-dev:amd64.
Preparing to unpack .../85-libpango1.0-dev_1.50.6+ds-2ubuntu1_amd64.deb ...
Unpacking libpango1.0-dev:amd64 (1.50.6+ds-2ubuntu1) ...
Selecting previously unselected package libwayland-bin.
Preparing to unpack .../86-libwayland-bin_1.20.0-1ubuntu0.1_amd64.deb ...
Unpacking libwayland-bin (1.20.0-1ubuntu0.1) ...
Selecting previously unselected package libwayland-dev:amd64.
Preparing to unpack .../87-libwayland-dev_1.20.0-1ubuntu0.1_amd64.deb ...
Unpacking libwayland-dev:amd64 (1.20.0-1ubuntu0.1) ...
Selecting previously unselected package libxcomposite-dev:amd64.
Preparing to unpack .../88-libxcomposite-dev_1%3a0.4.5-1build2_amd64.deb ...
Unpacking libxcomposite-dev:amd64 (1:0.4.5-1build2) ...
Selecting previously unselected package libxcursor-dev:amd64.
Preparing to unpack .../89-libxcursor-dev_1%3a1.2.0-2build4_amd64.deb ...
Unpacking libxcursor-dev:amd64 (1:1.2.0-2build4) ...
Selecting previously unselected package libxdamage-dev:amd64.
Preparing to unpack .../90-libxdamage-dev_1%3a1.1.5-2build2_amd64.deb ...
Unpacking libxdamage-dev:amd64 (1:1.1.5-2build2) ...
Selecting previously unselected package libxinerama-dev:amd64.
Preparing to unpack .../91-libxinerama-dev_2%3a1.1.4-3_amd64.deb ...
Unpacking libxinerama-dev:amd64 (2:1.1.4-3) ...
Selecting previously unselected package libxkbcommon-dev:amd64.
Preparing to unpack .../92-libxkbcommon-dev_1.4.0-1_amd64.deb ...
Unpacking libxkbcommon-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libxrandr-dev:amd64.
Preparing to unpack .../93-libxrandr-dev_2%3a1.5.2-1build1_amd64.deb ...
Unpacking libxrandr-dev:amd64 (2:1.5.2-1build1) ...
Selecting previously unselected package wayland-protocols.
Preparing to unpack .../94-wayland-protocols_1.25-1_all.deb ...
Unpacking wayland-protocols (1.25-1) ...
Selecting previously unselected package libgtk-3-dev:amd64.
Preparing to unpack .../95-libgtk-3-dev_3.24.33-1ubuntu2_amd64.deb ...
Unpacking libgtk-3-dev:amd64 (3.24.33-1ubuntu2) ...
Selecting previously unselected package libltdl-dev:amd64.
Preparing to unpack .../96-libltdl-dev_2.4.6-15build2_amd64.deb ...
Unpacking libltdl-dev:amd64 (2.4.6-15build2) ...
Selecting previously unselected package libpng-tools.
Preparing to unpack .../97-libpng-tools_1.6.37-3build5_amd64.deb ...
Unpacking libpng-tools (1.6.37-3build5) ...
Selecting previously unselected package libv4l2rds0:amd64.
Preparing to unpack .../98-libv4l2rds0_1.22.1-2build1_amd64.deb ...
Unpacking libv4l2rds0:amd64 (1.22.1-2build1) ...
Selecting previously unselected package libv4l-dev:amd64.
Preparing to unpack .../99-libv4l-dev_1.22.1-2build1_amd64.deb ...
Unpacking libv4l-dev:amd64 (1.22.1-2build1) ...
Setting up libpcrecpp0v5:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Setting up libglib2.0-dev-bin (2.72.4-0ubuntu2.2) ...
Setting up libjpeg-turbo8-dev:amd64 (2.1.2-0ubuntu1) ...
Setting up gettext (0.21-4ubuntu4) ...
Setting up libpixman-1-dev:amd64 (0.40.0-1ubuntu0.22.04.1) ...
Setting up libgdk-pixbuf-xlib-2.0-0:amd64 (2.40.2-2build4) ...
Setting up libglvnd-core-dev:amd64 (1.4.0-1) ...
Setting up libpcre16-3:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Setting up libpng-tools (1.6.37-3build5) ...
Setting up libfribidi-dev:amd64 (1.0.8-2ubuntu3.1) ...
Setting up libxkbcommon-dev:amd64 (1.4.0-1) ...
Setting up libpng-dev:amd64 (1.6.37-3build5) ...
Setting up pango1.0-tools (1.50.6+ds-2ubuntu1) ...
Setting up libjbig-dev:amd64 (2.1-3.1ubuntu0.22.04.1) ...
Setting up m4 (1.4.18-5ubuntu2) ...
Setting up autoconf-archive (20210219-2.1) ...
Setting up libharfbuzz-gobject0:amd64 (2.7.4-1ubuntu3.1) ...
Setting up libffi-dev:amd64 (3.4.2-4) ...
Setting up libpthread-stubs0-dev:amd64 (0.4-1build2) ...
Setting up xtrans-dev (1.4.0-1) ...
Setting up libwayland-bin (1.20.0-1ubuntu0.1) ...
Setting up libgraphite2-dev:amd64 (1.3.14-1build2) ...
Setting up autotools-dev (20220109.1) ...
Setting up libdbus-1-dev:amd64 (1.12.20-2ubuntu4.1) ...
Setting up uuid-dev:amd64 (2.37.2-4ubuntu3) ...
Setting up libgles1:amd64 (1.4.0-1) ...
Setting up libpcre32-3:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Setting up autopoint (0.21-4ubuntu4) ...
Setting up icu-devtools (70.1-2) ...
Setting up libsepol-dev:amd64 (3.3-1build1) ...
Setting up autoconf (2.71-2) ...
Setting up liblzma-dev:amd64 (5.2.5-2ubuntu1) ...
Setting up libpcre2-posix3:amd64 (10.39-3ubuntu0.1) ...
Setting up wayland-protocols (1.25-1) ...
Setting up libdatrie-dev:amd64 (0.2.13-2) ...
Setting up libv4l2rds0:amd64 (1.22.1-2build1) ...
Setting up xorg-sgml-doctools (1:1.11-1.1) ...
Setting up libopengl-dev:amd64 (1.4.0-1) ...
Setting up libjpeg8-dev:amd64 (8c-2ubuntu10) ...
Setting up libdeflate-dev:amd64 (1.10-2) ...
Setting up libicu-dev:amd64 (70.1-2) ...
Setting up libbrotli-dev:amd64 (1.0.9-2build6) ...
Setting up libtiffxx5:amd64 (4.3.0-6ubuntu0.7) ...
Setting up automake (1:1.16.5-1.3) ...
update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
Setting up libblkid-dev:amd64 (2.37.2-4ubuntu3) ...
Setting up libpcre2-dev:amd64 (10.39-3ubuntu0.1) ...
Setting up libtool (2.4.6-15build2) ...
Setting up libselinux1-dev:amd64 (3.3-1build2) ...
Setting up libpcre3-dev:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Setting up libjpeg-dev:amd64 (8c-2ubuntu10) ...
Setting up libv4l-dev:amd64 (1.22.1-2build1) ...
Setting up libwayland-dev:amd64 (1.20.0-1ubuntu0.1) ...
Setting up libfreetype-dev:amd64 (2.11.1+dfsg-1ubuntu0.2) ...
Setting up libltdl-dev:amd64 (2.4.6-15build2) ...
Setting up libtiff-dev:amd64 (4.3.0-6ubuntu0.7) ...
Setting up intltool (0.51.0-6) ...
Setting up libthai-dev:amd64 (0.1.29-1build1) ...
Setting up libmount-dev:amd64 (2.37.2-4ubuntu3) ...
Setting up libfontconfig-dev:amd64 (2.13.1-4.2ubuntu5) ...
Setting up gnome-common (3.18.0-4) ...
Setting up libfreetype6-dev:amd64 (2.11.1+dfsg-1ubuntu0.2) ...
Setting up libglib2.0-dev:amd64 (2.72.4-0ubuntu2.2) ...
Setting up libfontconfig1-dev:amd64 (2.13.1-4.2ubuntu5) ...
Processing triggers for libglib2.0-0:amd64 (2.72.4-0ubuntu2.2) ...
Processing triggers for libglib2.0-0:i386 (2.72.4-0ubuntu2.2) ...
Processing triggers for libc-bin (2.35-0ubuntu3.4) ...
Processing triggers for man-db (2.10.2-1) ...
Processing triggers for sgml-base (1.30) ...
Processing triggers for install-info (6.8-4build1) ...
Setting up libatk1.0-dev:amd64 (2.36.0-3build1) ...
Setting up x11proto-dev (2021.5-1) ...
Setting up libgdk-pixbuf-2.0-dev:amd64 (2.42.8+dfsg-1ubuntu0.2) ...
Setting up libharfbuzz-dev:amd64 (2.7.4-1ubuntu3.1) ...
Setting up libxau-dev:amd64 (1:1.0.9-1build5) ...
Setting up libice-dev:amd64 (2:1.0.10-1build2) ...
Setting up libsm-dev:amd64 (2:1.2.3-1build2) ...
Setting up libxdmcp-dev:amd64 (1:1.1.3-0ubuntu5) ...
Setting up libxcb1-dev:amd64 (1.14-3ubuntu3) ...
Setting up libx11-dev:amd64 (2:1.7.5-1ubuntu0.3) ...
Setting up libgdk-pixbuf-xlib-2.0-dev:amd64 (2.40.2-2build4) ...
Setting up libgdk-pixbuf2.0-dev:amd64 (2.40.2-2build4) ...
Setting up libxfixes-dev:amd64 (1:6.0.0-1) ...
Setting up libxcb-shm0-dev:amd64 (1.14-3ubuntu3) ...
Setting up libxcb-render0-dev:amd64 (1.14-3ubuntu3) ...
Setting up libxext-dev:amd64 (2:1.3.4-1build1) ...
Setting up libglx-dev:amd64 (1.4.0-1) ...
Setting up libxi-dev:amd64 (2:1.8-1build1) ...
Setting up libxrender-dev:amd64 (1:0.9.10-1build4) ...
Setting up libgl-dev:amd64 (1.4.0-1) ...
Setting up libxft-dev:amd64 (2.3.4-1) ...
Setting up libxtst-dev:amd64 (2:1.2.3-1build4) ...
Setting up libxdamage-dev:amd64 (1:1.1.5-2build2) ...
Setting up libatspi2.0-dev:amd64 (2.44.0-3) ...
Setting up libegl-dev:amd64 (1.4.0-1) ...
Setting up libxcomposite-dev:amd64 (1:0.4.5-1build2) ...
Setting up libxcursor-dev:amd64 (1:1.2.0-2build4) ...
Setting up libepoxy-dev:amd64 (1.5.10-1) ...
Setting up libatk-bridge2.0-dev:amd64 (2.38.0-3) ...
Setting up libxrandr-dev:amd64 (2:1.5.2-1build1) ...
Setting up libxinerama-dev:amd64 (2:1.1.4-3) ...
Setting up libcairo2-dev:amd64 (1.16.0-5ubuntu2) ...
Setting up libgles-dev:amd64 (1.4.0-1) ...
Setting up libglvnd-dev:amd64 (1.4.0-1) ...
Setting up libpango1.0-dev:amd64 (1.50.6+ds-2ubuntu1) ...
Setting up libegl1-mesa-dev:amd64 (23.0.4-0ubuntu1~22.04.1) ...
Setting up libgtk-3-dev:amd64 (3.24.33-1ubuntu2) ...

danky@Maya-deva:~$ ./autogen.sh
make
sudo make install
-bash: ./autogen.sh: No such file or directory
make: *** No targets specified and no makefile found. Stop.
make: *** No rule to make target 'install'. Stop.

danky@Maya-deva:~$ camorama
camorama: command not found

Uninstall

How do I uninstall this package after building the package and installing it?

Date and time color is a problem

I just downloaded and compiled camorama-master and am using it to monitor a camera and send an photo up to a weather internet site every 5 minutes. It also saves a copy to hard drive. The borders on both images are black. On the image saved to the hard drive, the lettering is either yellow or white on black. On the image uploaded the lettering is black on black and can barely be seen and not read. I don't know how the color is chosen but something is wrong.

Please change Build Section in Readme.md

My Distro unfortunately does not provide packages for camorama, so I had to build it on my own.
I took some time and headache to get it done because the build process was not so easy as promised in Readme.md.
Please update this section. My experience was:

sudo apt-get install gnome-common libv4l-dev libcairo2-dev libgtk-3-dev

unzip camorama-master.zip
cd camorama-master/
gettextize -f
aclocal -I m4
./autogen.sh
make
echo $?
sudo make install

Thank you, this will help others too to use this cool tool.
I use it every Christmas to make a time-lapse Video while I trim the Christmas tree.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.