👌

ラズパイゼロでラズパイ専用カメラの映像をSRTで送信する

2022/05/29に公開

ラズパイ専用カメラについては以下のページを参照。
https://www.raspberrypi.com/documentation/accessories/camera.html

ラズパイ3の32bitOSで、この記事の手順で、ffmpeg-small-srt をビルドします。
https://zenn.dev/tetsu_koba/articles/76f4e20cc8166f

それをラズパイゼロに持っていって、このスクリプトを実行します。

#!/bin/sh -xue

HOST=xx.yy.zz.ww
PORT=7001

libcamera-vid -t 0 --width 1280 --height 720 --framerate 30 -b 2000000 -g 60 --inline -o - | \
ffmpeg-small-srt -probesize 32 -f h264 -i - -c copy -f mpegts srt://$HOST:$PORT

中継サーバーや視聴環境についてはこの記事と同じです。
https://zenn.dev/tetsu_koba/articles/8c22466ce57498

Discussion