blink.download_videos doesn't download videos anymore.
Describe the bug blink.download_videos(...) doesn't download videos anymore.
To Reproduce Steps to reproduce the behavior:
import asyncio
from aiohttp import ClientSession
from blinkpy.blinkpy import Blink
from blinkpy.auth import Auth
from blinkpy.helpers.util import json_load
async def start():
blink = Blink(session=ClientSession())
auth = Auth(await json_load("blink.cred"))
blink.auth = auth
await blink.start()
await blink.download_videos('videos', since='2025/09/09 09:34', delay=2)
return blink
blink = asyncio.run(start())
Expected behavior
This should download all Videos since 2025/09/09, but no Videos are loaded at all. I renamed some cameras. Could this be a problem?
Since the las login API change, no video is downladed, despite I have updated the component with the last version of the library.
As Amazon AWS is having problems today, maybe this is related... Let's wait a bit.
There hasn't been any activity on this issue recently. Please make sure to update to the latest blinkpy version and check if that solves the issue. Let us know if that works for you by adding a comment 👍 This issue has now been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.