本帖最后由 whxciotw 于 2025-8-22 23:10 编辑
刚好家里买了个摄像头,晚上研究了下frigate,详细参考了楼主的文章,恰逢160版本,非常及时,感谢!
有个问题咨询下,实现双向对讲,需要在stream的地址后面,加怎样的backchannel呢?尝试过backchannel=0和1,但仍提示该设备不支持双向对讲。
目前我用的这款是萤石的,在萤石app内,可以双向。webrtc我也配置了,https也有,查看视频、音频都是正常,但是我通过frigate无法说话。猜测是自己没找到backchannel?能给点思路、指点下吗?
谢谢。
mqtt:
host: 192.168.19.4
port: 1883
user: mqtt
password: mqtt
# tls:
# enabled: false
auth:
enabled: false
go2rtc:
# rtsp:
streams:
child:
- rtsp://admin:[email protected]:554/streaming/channels/101#backchannel=1
# - isapi://admin:[email protected]:80/
webrtc:
candidates:
- stun:8555
birdseye:
enabled: True
mode: motion
restream: True
cameras:
child: # <------ Name the camera
enabled: true
birdseye:
mode: objects
ffmpeg:
inputs:
- path: rtsp://admin:[email protected]:554/streaming/channels/101#backchannel=1
roles:
- detect
- audio
- record
detect:
enabled: true # <---- disable detection until you have a working camera feed
width: 1280
height: 720
ffmpeg:
hwaccel_args: preset-intel-qsv-h264
objects:
track:
- person
detect:
enabled: true
version: 0.16-0
record:
enabled: True
retain:
days: 30
mode: motion
alerts:
retain:
days: 30
mode: motion
detections:
retain:
days: 30
mode: motion
motion:
threshold: 45
|