Mini WebCam Server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Steffen Pohle 501cf03869
using unsigned long int instead of size_t
3 months ago
.gitignore basic meson build is working 2 years ago
Makefile scaling seem to work 3 months ago
README.md Update 'README.md' 2 years ago
configuration.cc scaling seem to work 3 months ago
configuration.h scaling seem to work 3 months ago
convert.cc working on running version 3 months ago
convert.h first frame is visible 3 months ago
debayer.cc working on running version 3 months ago
debayer.h working on running version 3 months ago
inmemoryfile.cc first frame is visible 3 months ago
inmemoryfile.h first frame is visible 3 months ago
main.cc scaling seem to work 3 months ago
miniwebcam.h first frame is visible 3 months ago
video.cc first frame is visible 3 months ago
video.h first frame is visible 3 months ago
videoframe.cc using unsigned long int instead of size_t 3 months ago
videoframe.h scaling seem to work 3 months ago
webserver.cc first frame is visible 3 months ago

README.md

MiniWebCam

this application will start a inbuild webserver serving an camera image from the following devices:

  • V4L2 Devices
  • Local Image File
  • Local Script to Create Images

Configuration

The configuration is loaded in the following order.

  • systemwide configuration file [/etc/miniwebcam.conf]
  • program parameters
  • user defined configurtion file defined in the program parameters

How to build and install

Meson/Ninja is used for the build process. To compile and install the application run the following commands:

meson setup build
meson compile -C build
meson install -C build