Onvif not working

Hi there,

In downloaded the ffmpeg bin and put it on c:\ffmpeg\bin
My configuration:

ffmpeg:
  ffmpeg_bin: C:\ffmpeg\bin

my camera.yaml

#Cameras
 - platform: onvif
   host: rtsp://x.x.x.x:554/rtsp_live0
   username: x
   password: x

On HA im getting ONVIFG Camera (Image not available)

Am i missing something?

i still having a fight to set this up correctly. Frontend give me a kitchen (image not available).
When i click on it there is no feed.

1

log:

2018-09-01 14:56:52 WARNING (MainThread) [haffmpeg.core] FFmpeg isn’t running!

ffmpeg -an -i "rtsp://10.3.1.9:554/rtsp_live0" -f null -
in cmd works perfectly.
but in home assistant it doesnt.

cameras.yaml

- platform: ffmpeg
  input: -an -i "rtsp://10.3.1.9:554/rtsp_live0"-
  name: Kitchen
  authentication: true

configuration.yaml

ffmpeg:
  ffmpeg_bin: 'C:\ffmpeg\bin\ffmpeg.exe'

camera: !include cameras.yaml

EDIT: found a typo, below is correct and seems to work:

#Cameras
- platform: ffmpeg
  input: -an -i "rtsp://10.3.1.9:554/rtsp_live0"
  name: Kitchen
  authentication: true