Skip to content

v0.2.8

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 27 Nov 22:00
· 2 commits to main since this release

Release 0.2.8

  • libcamera: support transform to orientation rename (bc23191)
  • build against libcamera version 0.1.0+rpt20231122-1

Variants

Download correct version for your platform:

  • Variant: raspi: Raspberry PI compatible build with USB, CSI, WebRTC, RTSP support
  • Variant: generic: All other platforms with USB and MJPEG support only for time being
  • System: bullseye: Debian Bullseye (11) compatible build
  • System: bookworm: Debian Bookworm (12) compatible build
  • Platform: amd64: x86/64 compatible build
  • Platform: arm32: ARM 32-bit kernel: PIs 0.2W, 2B, and higher, Orange PIs, Rock64, etc. No support for RPI0.
  • Platform: arm64: ARM 64-bit kernel: PIs 0.2W, 3B, and higher, Orange PIs, Rock64, etc. No support for RPI0 and RPI2B.

Install on Raspberry PI or any other platform

Copy the below and paste into terminal:

PACKAGE=camera-streamer-$(test -e /etc/default/raspberrypi-kernel && echo raspi || echo generic)_0.2.8.$(. /etc/os-release; echo $VERSION_CODENAME)_$(dpkg --print-architecture).deb
wget "https://github.com/ayufan/camera-streamer/releases/download/v0.2.8/$PACKAGE"
sudo apt install "$PWD/$PACKAGE"

Enable one of provided systemd configuration:

ls -al /usr/share/camera-streamer/examples/
systemctl enable /usr/share/camera-streamer/examples/camera-streamer-raspi-v3-12MP.service
systemctl start camera-streamer-raspi-v3-12MP

You can also copy an existing service and fine tune it:

cp /usr/share/camera-streamer/examples/camera-streamer-raspi-v3-12MP.service /etc/systemd/system/camera-streamer.service
edit /etc/systemd/system/camera-streamer.service
systemctl enable camera-streamer
systemctl start camera-streamer