Steve Herrell
Steve Herrell
Did you try reloading after updating the file?
I'll dig out an old iPhone I have and take a look. In the meantime, is the streaming working from the Arlo website on the device?
@AndreKR sorry about the issue before, there were some bugs in the upgrade code. For the record, all the settings are in the yaml file, all the integration does is...
@CAT1210 I think you are still on version 0.8 of virtual; `yaml_config` is only available on version 0.9 and version 0.9 doesn't use `FREQUENCY_GIGAHERTZ`.
The sensors should work. Make sure it is being shared and has admin access, If that looks good then post the debug that follows shortly after this line: ``` 2025-03-11...
Look at the `last` sensors. There is an `object_type` attribute. 
Thank you for looking into this. I've been trying to get the rtsp stream back after the old user agent I was using was deprecated. I'll keep playing around with...
Using the mpeg-dash stream is easy enough, here is come code I was using to test `pyaarlo`. ```python stream_url = camera.start_stream("mac") print("stream-url={}".format(stream_url)) url = urlparse(stream_url) egress_token = parse_qs(url.query)["egressToken"][0] print('starting ffmpeg')...
This is what I showed you. We need to pass the headers I showed you in the previous message to the stream component. I'm trying to work out how to...
These diffs allow me get mpeg-dash streaming. ## This diff applies to the core _homeassistant_. ```diff diff --git a/homeassistant/components/stream/__init__.py b/homeassistant/components/stream/__init__.py index 8fa4c69ac5a..51758f0ede8 100644 --- a/homeassistant/components/stream/__init__.py +++ b/homeassistant/components/stream/__init__.py @@ -44,6 +44,7...