家里闲置两块树莓派,打算做个WiFi视频流RTSP/RTP:
注:后续打算上天,帮我在模拟航模上拍点高清视频。
本来想上一个热成像摄像头,看看夜景,奈何并非这么简单,而且价格也高。就不整那个玩意了。
大白天,我们选了两款:
鱼眼 OV5647 130° 1.85mm 非夜视
树莓派原装 V2 IMX219 NoIR
妥妥的原生态系统bullseye
,目前来说,兼容性是比较好的。系统安装参考:Raspbian镜像无头烧录
注:如果想使用其他系统,可以访问:raspios_lite_arm64
Raspberry Pi Zero W
Raspberry Pi 3B+
新系统已经不支持raspistill
和raspivid
了,更多用的是libcamera
。
$ libcamera-
libcamera-hello libcamera-jpeg libcamera-raw libcamera-still libcamera-vid
注:以前raspistill: command not found命令已经被逐渐淘汰,详见:raspios_armhf/release_notes.txt。
2021-10-30:
- New default camera subsystem based on libcamera
- New camera demo applications (libcamera-still and libcamera-vid) have replaced raspistill and raspivid
- Legacy camera subsystem removed from 64-bit RPi OS (still available on 32-bit)
$ sudo nano /boot/config.txt
Step 1:将camera-auto-detect=1
修改camera_auto_detect=0
Step 2:根据摄像头不同型号,添加dtoverlay
驱动设置到/boot/config.txt
文件中。
鱼眼 OV5647 130° 1.85mm 非夜视:
dtoverlay=ov5647
树莓派原装 V2 IMX219 NoIR:dtoverlay=imx219
拍照正常,基本驱动应该就正常了,详细的指令可以参考:Pi5-IMX219, www.waveshare.com
$ libcamera-jpeg -o test.jpg
$ libcamera-jpeg -o test.jpg -t 2000 --width 640 --height 480
$ libcamera-jpeg -o test.jpg -t 2000 --shutter 20000 --gain 1.5
$ libcamera-jpeg --ev -0.5 -o darker.jpg
$ libcamera-jpeg --ev 0 -o normal.jpg
$ libcamera-jpeg --ev 0.5 -o brighter.jpg
$ libcamera-still -o test.jpg
$ libcamera-still -e png -o test.png
$ libcamera-still -e bmp -o test.bmp
$ libcamera-still -e rgb -o test.data
$ libcamera-still -e yuv420 -o test.data
$ libcamera-still -r -o test.jpg
$ libcamera-still -o long_exposure.jpg --shutter 100000000 --gain 1 --awbgains 1,1 --immediate
$ sudo apt-get install vlc
$ libcamera-vid -t 0 --inline -o - | cvlc stream:///dev/stdin --sout '#rtp{sdp=rtsp://:8554/stream1}' :demux=h264
rtsp://192.168.1.201:8554/stream1
$ libcamera-vid -t 0 --inline --listen -o tcp://0.0.0.0:8554
tcp/h264://192.168.1.201:8554
【1】Raspbian镜像无头烧录
【2】Pi5-IMX219, www.waveshare.com
【3】Introducing the Raspberry Pi Cameras