- Notifications
You must be signed in to change notification settings - Fork251
µStreamer - Lightweight and fast MJPEG-HTTP streamer
License
pikvm/ustreamer
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
µStreamer is a lightweight and very quick server to streamMJPEG video from any V4L2 device to the net. All new browsers have native support of this video format, as well as most video players such as mplayer, VLC etc.µStreamer is a part of thePiKVM project designed to streamVGA andHDMI screencast hardware data with the highest resolution and FPS possible.
µStreamer is very similar tomjpg-streamer withinput_uvc.so
andoutput_http.so
plugins, however, there are some major differences. The key ones are:
Feature | µStreamer | mjpg-streamer |
---|---|---|
Multithreaded JPEG encoding | ✔ | ✘ |
Hardware image encoding on Raspberry Pi | ✔ | ✘ |
Behavior when the device is disconnected while streaming | ✔ Shows a black screen with NO SIGNAL on ituntil reconnected | ✘ Stops the streaming1 |
DV-timings support - the ability to change resolution on the fly by source signal | ✔ | ☹ Partially yes1 |
Option to skip frames when streaming static images by HTTP to save the traffic | ✔2 | ✘ |
Streaming via UNIX domain socket | ✔ | ✘ |
Systemd socket activation | ✔ | ✘ |
Debug logs without recompiling, performance statistics log, access to HTTP streaming parameters | ✔ | ✘ |
Option to serve files with a built-in HTTP server | ✔ | ☹ Regular files only |
Signaling about the stream state on GPIO usinglibgpiod | ✔ | ✘ |
Access to webcam controls (focus, servos) and settings such as brightness via HTTP | ✘ | ✔ |
Compatibility with mjpg-streamer's API | ✔ | :) |
Footnotes:
1
Long before µStreamer, I made apatch to add DV-timings support to mjpg-streamer and to keep it from hanging up on device disconnection. Alas, the patch is far from perfect and I can't guarantee it will work every time - mjpg-streamer's source code is very complicated and its structure is hard to understand. With this in mind, along with needing multithreading and JPEG hardware acceleration in the future, I decided to make my own stream server from scratch instead of supporting legacy code.2
This feature allows to cut down outgoing traffic several-fold when streaming HDMI, but it increases CPU usage a little bit. The idea is that HDMI is a fully digital interface and each captured frame can be identical to the previous one byte-wise. There's no need to stream the same image over the net several times a second. With the--drop-same-frames=20
option enabled, µStreamer will drop all the matching frames (with a limit of 20 in a row). Each new frame is matched with the previous one first by length, then usingmemcmp()
.
If you're going to live-stream from your backyard webcam and need to control it, use mjpg-streamer. If you need a high-quality image with high FPS - µStreamer for the win.
You need to download the µStreamer onto your system and build it from the sources.
- AUR has a package for Arch Linux:https://aur.archlinux.org/packages/ustreamer.
- Fedora:https://src.fedoraproject.org/rpms/ustreamer.
- Ubuntu:https://packages.ubuntu.com/jammy/ustreamer.
- Debian:https://packages.debian.org/sid/ustreamer
- FreeBSD port:https://www.freshports.org/multimedia/ustreamer.
You'll needmake
,gcc
,pkg-config
,libevent
withpthreads
support,libjpeg9
/libjpeg-turbo
andlibbsd
(only for Linux).
- Arch:
sudo pacman -S libevent libjpeg-turbo libutil-linux libbsd
. - Raspberry OS Bullseye:
sudo apt install libevent-dev libjpeg62-turbo libbsd-dev
. Addlibgpiod-dev
forWITH_GPIO=1
andlibsystemd-dev
forWITH_SYSTEMD=1
andlibasound2-dev libspeex-dev libspeexdsp-dev libopus-dev
forWITH_JANUS=1
. - Raspberry OS Bookworm: same as previous but replace
libjpeg62-turbo
tolibjpeg62-turbo-dev
. - Debian/Ubuntu:
sudo apt install build-essential libevent-dev libjpeg-dev libbsd-dev
. - Alpine:
sudo apk add libevent-dev libbsd-dev libjpeg-turbo-dev musl-dev
. Build withWITH_PTHREAD_NP=0
.
To enable GPIO support installlibgpiod and pass optionWITH_GPIO=1
. If the compiler reports about a missing functionpthread_get_name_np()
(or similar), add optionWITH_PTHREAD_NP=0
(it's enabled by default). For the similar error withsetproctitle()
add optionWITH_SETPROCTITLE=0
.
The most convenient process is to clone the µStreamer Git repository onto your system. If you don't have Git installed and don't want to install it either, you can download and unzip the sources from GitHub usingwget https://github.com/pikvm/ustreamer/archive/refs/heads/master.zip
.
$ git clone --depth=1 https://github.com/pikvm/ustreamer$ cd ustreamer$ make$ ./ustreamer --help
Assuming you have a µStreamer clone as discussed above you can update µStreamer as follows.
$ cd ustreamer$ git pull$ make clean$ make
For M2M hardware encoding on Raspberry Pi, you need at least 5.15.32 kernel. OpenMAX and MMAL support on older kernels is deprecated and removed.
Without arguments,ustreamer
will try to open/dev/video0
with 640x480 resolution and start streaming onhttp://127.0.0.1:8080
. You can override this behavior using parameters--device
,--host
and--port
. For example, to stream to the world, run:
# ./ustreamer --device=/dev/video1 --host=0.0.0.0 --port=80
❗ Please note that since µStreamer v2.0 cross-domain requests were disabled by default forsecurity reasons. To enable the old behavior, use the option--allow-origin=\*
.
The recommended way of running µStreamer withTC358743-based capture device on Raspberry Pi:
$ ./ustreamer \ --format=uyvy \ # Device input format --encoder=m2m-image \ # Hardware encoding on V4L2 M2M driver --workers=3 \ # Workers number --persistent \ # Suppress repetitive signal source errors (for example when HDMI cable was disconnected) --dv-timings \ # Use DV-timings --drop-same-frames=30 # Save the traffic
❗ Please note that to use--drop-same-frames
for different browsers you need to use some specific URL/stream
parameters (see URL/
for details).
You can always view the full list of options withustreamer --help
.
Add following lines to /boot/firmware/usercfg.txt:
gpu_mem=128dtoverlay=tc358743
Check size of CMA:
$ dmesg | grep cma-reserved[ 0.000000] Memory: 7700524K/8244224K available (11772K kernel code, 1278K rwdata, 4320K rodata, 4096K init, 1077K bss, 281556K reserved, 262144K cma-reserved)
If it is smaller than 128M add following to /boot/firmware/cmdline.txt:
cma=128M
Save changes and reboot.
Start container:
$ docker run --device /dev/video0:/dev/video0 -e EDID=1 -p 8080:8080 pikvm/ustreamer:latest
Then access the web interface at port 8080 (e.g.http://raspberrypi.local:8080).
$ docker run --rm pikvm/ustreamer:latest \ --format=uyvy \ --workers=3 \ --persistent \ --dv-timings \ --drop-same-frames=30
Add-e EDID=1
to set HDMI EDID before starting ustreamer. Use together with-e EDID_HEX=xx
to specify custom EDID data.
Example usage for the Raspberry Pi v3 camera (requiredlibcamerify
which is located inlibcamera-tools
andlibcamera-v4l2
(install both) on Raspbian):
$ sudo modprobe bcm2835-v4l2$ libcamerify ./ustreamer --host :: --encoder=m2m-image
For v2 camera you can use the same trick withlibcamerify
but enable legacy camera mode inraspi-config
.
Example usage for the Raspberry Pi v1 camera:
$ sudo modprobe bcm2835-v4l2$ ./ustreamer --host :: -m jpeg --device-timeout=5 --buffers=3 -r 2592x1944
❗ Please note that newer camera models have a different maximum resolution. You can see the supported resolutions at thePiCamera documentation.
❗ If you get a poor framerate, it could be that the camera is switched to photo mode, which produces a low framerate (but a higher quality picture). This is becausebcm2835-v4l2
switches to photo mode at resolutions higher than1280x720
. To work around this, pass themax_video_width
andmax_video_height
module parameters like so:
$ modprobe bcm2835-v4l2 max_video_width=2592 max_video_height=1944
µStreamer supports bandwidth-efficient streaming usingH.264 compression and the Janus WebRTC server. See theJanus integration guide for full details.
When uStreamer is behind an Nginx proxy, its buffering behavior introduces latency into the video stream. It's possible to disable Nginx's buffering to eliminate the additional latency:
location/stream{postpone_output 0;proxy_buffering off;proxy_ignore_headers X-Accel-Buffering;proxy_pass http://ustreamer;}
v4l2 utilities provide the tools to manage USB webcam setting and information. Scripts can be use to make adjustments and run manually or with cron. Running in cron for example to change the exposure settings at certain times of day. The package is available in all Linux distributions and is usually calledv4l-utils
.
- List of available video devices:
v4l2-ctl --list-devices
. - List available control settings:
v4l2-ctl -d /dev/video0 --list-ctrls
. - List available video formats:
v4l2-ctl -d /dev/video0 --list-formats-ext
. - Read the current setting:
v4l2-ctl -d /dev/video0 --get-ctrl=exposure_auto
. - Change the setting value:
v4l2-ctl -d /dev/video0 --set-ctrl=exposure_auto=1
.
Here you can find more examples. Documentation is available inman v4l2-ctl
.
Copyright (C) 2018-2024 by Maxim Devaevmdevaev@gmail.com
This program is free software: you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation, either version 3 of the License, or(at your option) any later version.
This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.
You should have received a copy of the GNU General Public Licensealong with this program. If not, seehttps://www.gnu.org/licenses/.
About
µStreamer - Lightweight and fast MJPEG-HTTP streamer