Ring Doorbell video download video_url false

So I am having issues with my automation not downloading the Ring Video File. The logs indicate that the video_url attribute is “false” instead of containing a url to the video. If I click on the image on the Ring Tile it does play a video, so it is able to get some video urls. Thanks for the help.

Config File

Sensors

sensor:
#Ring Doorbell

  • platform: ring

Binary Sensors

binary_sensor:

  • platform: ring

Ring Doorbell

ring:
username: ****
password: *****

#Camera
camera:

  • platform: ring

Automation

  • id: ‘1546016815340’
    alias: Ring Doorbell Motion Download Feed
    trigger:
    • entity_id: binary_sensor.ring_front_door_motion
      from: ‘off’
      platform: state
      to: ‘on’
      condition:
      action:
    • data:
      filename: “last.mpg”
      overwrite: true
      url: “{{ states.camera.front_door.attributes.video_url }}”
      service: downloader.download_file
    • data:
      message: Motion has been detected at the front door.
      service: tts.google_say

Logs

2018-12-28 20:02:09 DEBUG (MainThread) [homeassistant.core] Bus:Handling <Event state_changed[L]: entity_id=binary_sensor.ring_front_door_motion, old_state=<state binary_sensor.ring_front_door_motion=off; attribution=Data provided by Ring.com, device_id=f045da1d1856, firmware=Up to Date, timezone=America/Chicago, friendly_name=Front Door Motion, device_class=motion @ 2018-12-28T19:18:41.668774-06:00>, new_state=<state binary_sensor.ring_front_door_motion=on; attribution=Data provided by Ring.com, device_id=f045da1d1856, firmware=Up to Date, timezone=America/Chicago, expires_at=2018-12-28T14:05:07.382250-06:00, state=ringing, friendly_name=Front Door Motion, device_class=motion @ 2018-12-28T20:02:09.393574-06:00>>
2018-12-28 20:02:09 DEBUG (MainThread) [homeassistant.core] Bus:Handling <Event automation_triggered[L]: name=Ring Doorbell Motion Download Feed, entity_id=automation.ring_doorbell_motion_download_feed>
2018-12-28 20:02:09 INFO (MainThread) [homeassistant.components.automation] Executing Ring Doorbell Motion Download Feed
2018-12-28 20:02:09 INFO (MainThread) [homeassistant.helpers.script] Script Ring Doorbell Motion Download Feed: Running script
2018-12-28 20:02:09 INFO (MainThread) [homeassistant.helpers.script] Script Ring Doorbell Motion Download Feed: Executing step call service
2018-12-28 20:02:09 ERROR (MainThread) [homeassistant.core] Error doing job: Task exception was never retrieved
Traceback (most recent call last):
File “/usr/local/lib/python3.6/site-packages/homeassistant/components/automation/init.py”, line 294, in async_trigger
await self._async_action(self.entity_id, variables, context)
File “/usr/local/lib/python3.6/site-packages/homeassistant/components/automation/init.py”, line 378, in action
await script_obj.async_run(variables, context)
File “/usr/local/lib/python3.6/site-packages/homeassistant/helpers/script.py”, line 130, in async_run
await self._handle_action(action, variables, context)
File “/usr/local/lib/python3.6/site-packages/homeassistant/helpers/script.py”, line 172, in _handle_action
action, variables, context)
File “/usr/local/lib/python3.6/site-packages/homeassistant/helpers/script.py”, line 261, in _async_call_service
context=context
File “/usr/local/lib/python3.6/site-packages/homeassistant/helpers/service.py”, line 81, in async_call_from_config
domain, service_name, service_data, blocking=blocking, context=context)
File “/usr/local/lib/python3.6/site-packages/homeassistant/core.py”, line 1101, in async_call
processed_data = handler.schema(service_data)
File “/usr/local/lib/python3.6/site-packages/voluptuous/schema_builder.py”, line 267, in call
return self._compiled(, data)
File “/usr/local/lib/python3.6/site-packages/voluptuous/schema_builder.py”, line 589, in validate_dict
return base_validate(path, iteritems(data), out)
File “/usr/local/lib/python3.6/site-packages/voluptuous/schema_builder.py”, line 427, in validate_mapping
raise er.MultipleInvalid(errors)
voluptuous.error.MultipleInvalid: invalid url for dictionary value @ data[‘url’]