Hi, I have a Yi Dome camera (1080p PTZ) and I’m trying to use it with live stream.
Live stream work prefect with all applications like vlc and others but NOT work on home assistant.
The stream window remain blank and not see any image in streaming.
My configuration is:
and include appropriate ffmpeg options in your input: line
input: -x -y -z rtsp://192.168.1.181/cho_1.h264
It’s been a while since I used ffmpeg for cameras, so I don’t recall the actual command line options. One last option may be to include the username:password in the rtsp: URL
These are ffmpeg command-line arguments. They are whatever arguments you would need if using ffmpeg on your desktop to view the stream. Here is an example config from github:
- platform: ffmpeg
name: IP camera oprit
input: !secret ip_camera_oprit_stream
extra_arguments: '-q:v 1 -r 25 -vf "scale=640:360"'
hope this helps! just in case it doesn’t, check out the FFMPEG troubleshooting page.