I have Frigate running on one server and Home Assistant running on another. They use the same MQTT server. I have a test camera set up, connected to the Frigate server and configured with go2RTC which is working fine showing that camera on the Advanced Camera Card on the Home Assistant server. When I look at this same camera on the Frigate server (port 5000) and click on the image to get the live view, I see functional pan and tilt controls which work just fine.
I am trying to get the pan and tilt (and then later zoom) controls to show and to work within the Advanced Camera Card.
Live (Live camera view options)/Live Controls/Built-in video controls is ON
Live (Live camera view options)/Live Controls/PTZ/Mode is ON and hide pan & tile control is off BUT, there are no pan and tile controls shown in the image. All other functions I have tested so far for this configuration, such as motion triggers, are working just fine.
This camera is configured in the Advanced Camera Card as:
- camera_entity: camera.test_camera
live_provider: go2rtc
go2rtc:
url: 192.168.1.89
and on the Frigate server as:
go2rtc:
streams:
test_camera_hi:
- ffmpeg:rtsp://admin:[email protected]:554/11
test_camera_low:
- ffmpeg:rtsp://admin:[email protected]:554/12
cameras:
test_camera:
ffmpeg:
inputs:
# hi res stream
- path: rtsp://127.0.0.1:8554/test_camera_hi
input_args: preset-rtsp-restream
roles:
- record
# low res stream
- path: rtsp://127.0.0.1:8554/test_camera_low
input_args: preset-rtsp-restream
roles:
- detect
detect:
fps: 15
enabled: true
width: 800
height: 450
live:
stream_name: test_camera_hi
height: 720
quality: 8
onvif:
host: 192.168.10.99
port: 8080
user: admin
password: XXXX
What am I missing to get this working? Thank you! (if there is perhaps a better place to post this question, please suggest it and I will post it there).