A minimalist service for streaming a webcam over HLS
Project description
OctoPrint Stuff
This is a collection of bits and bobs that make running Octoprint a tad easier.
The most notable component is webcamd which is a minimalist drop-in replacement for mjpeg_streamer
.
- Octoprint appends a seemingly-random session ID to the camera URI, which confuses the hell out of
mjpg-streamer
mjpg-streamer
doesn't appear to be capable of handle multiple simultaneous streams, resulting in the infuriating403: Forbidden! frame already sent
errormjpg-streamer
itself is complete overkill here
webcamd
is based on Igor Maculan’s “Simple Python Motion Jpeg” daemon. It has been reworked to run under python-3.x, accept command-line arguments, to fine-tune the webcam streaming experience.
Note!
The user running webcamd
must have sufficient access to the webcam device. On most Linux systems, this is as simple as adding the user to the video
group. Otherwise the daemon will have to be run as root, which is NOT recommended.
webcam@.service is a systemd unit file for webcam.py.
haproxy.cfg is a configuration file for haproxy that actually works with non-ancient versions of haproxy, and enforces SSL connections to Octoprint.
webcamd
Quickstart
Install Locally
$
pip install .
Run the module directly
$
python3 -m webcamd
Help and Usage
$
webcamd --help
Create a SystemD Service
Open the following file and copy these contents:
/etc/systemd/system/webcamd.service
___________________________________
[Unit]
Description=Webcam Daemon. A minimalist webcam streaming service.
After=network.online.target
Wants=network.online.target
[Service]
Type=simple
User=octoprint
Group=octoprint
ExecStart=/usr/bin/webcamd
ExecStop=killall -u webcam webcamd
[Install]
WantedBy=multi-user.target
Then restart the systemd daemon loader:
$
sudo systemctl daemon-reload
And enable the service, to allow the service to start automatically on boot:
$
sudo systemctl enable webcamd.service
Development
Install Locally with dev
dependencies
$
pip install -e .[dev]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file webcamd-1.0.1.tar.gz
.
File metadata
- Download URL: webcamd-1.0.1.tar.gz
- Upload date:
- Size: 16.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d92ec147ad18f927a350daaac67ce9a7b2ddecba98a156207f5b030db105543e |
|
MD5 | 0bb518b1e6c75b19371ed6fcaee5687f |
|
BLAKE2b-256 | 267b035dc504e9b86934a2eadc014646f83bcaaebd21d891210de8eddcf8ec8e |
File details
Details for the file webcamd-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: webcamd-1.0.1-py3-none-any.whl
- Upload date:
- Size: 17.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47ccc73fc7ef4ae6edd6bf113679f543dbdc9ba2c84021e89aadfc9d0d7018b4 |
|
MD5 | 62164d579b0d1d78bf8b1c544918e6e7 |
|
BLAKE2b-256 | fbd39b2bb496d4881e0405a0d718a37995d24941cb8cb5d1eaad4851cc7104c9 |