Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions configs/libcamera.conf
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ PORT=8080
WIDTH=1920
HEIGHT=1080

# The height to use for the direct stream. Defaults to 480.
STREAM_HEIGHT=480

# The height to use for the video stream. Defaults to 720.
VIDEO_HEIGHT=720

Expand Down
1 change: 1 addition & 0 deletions systemd/camera-streamer-libcamera.service
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ ExecStart=/bin/sh -c "exec /usr/bin/camera-streamer \
--camera-path=$(/usr/bin/libcamera-hello --list-cameras | grep -o '/base/soc/[^)]*' | head -n1) \
--camera-format=YUYV \
--camera-width=${WIDTH} --camera-height=${HEIGHT} \
--camera-stream.height=${STREAM_HEIGHT} \
--camera-video.height=${VIDEO_HEIGHT} \
--camera-snapshot.height=${SNAPSHOT_HEIGHT} \
--camera-fps=${FRAMERATE} \
Expand Down