mirror of
https://github.com/home-assistant/core.git
synced 2025-12-27 06:28:31 +00:00
Generate Stream snapshots using next keyframe (#96991)
* Add wait_for_next_keyframe option to stream images Add STREAM_SNAPSHOT to CameraEntityFeature Use wait_for_next_keyframe option for snapshots using stream * Update stream test comments * Add generic camera snapshot test * Get stream still images directly in camera Remove getting stream images from generic, nest, and ONVIF Refactor camera preferences Add use_stream_for_stills setting to camera Update tests * Only attempt to get stream image if integration supports stream * Use property instead of entity registry setting * Split out getting stream prerequisites from stream_source in nest * Use cached_property for rtsp live stream trait * Make rtsp live stream trait NestCamera attribute * Update homeassistant/components/nest/camera.py Co-authored-by: Allen Porter <allen.porter@gmail.com> * Change usage of async_timeout * Change import formatting in generic/test_camera * Simplify Nest camera property initialization --------- Co-authored-by: Allen Porter <allen.porter@gmail.com>
This commit is contained in:
@@ -244,8 +244,6 @@ async def test_camera_stream(
|
||||
stream_source = await camera.async_get_stream_source(hass, "camera.my_camera")
|
||||
assert stream_source == "rtsp://some/url?auth=g.0.streamingToken"
|
||||
|
||||
assert await async_get_image(hass) == IMAGE_BYTES_FROM_STREAM
|
||||
|
||||
|
||||
async def test_camera_ws_stream(
|
||||
hass: HomeAssistant,
|
||||
@@ -280,8 +278,6 @@ async def test_camera_ws_stream(
|
||||
assert msg["success"]
|
||||
assert msg["result"]["url"] == "http://home.assistant/playlist.m3u8"
|
||||
|
||||
assert await async_get_image(hass) == IMAGE_BYTES_FROM_STREAM
|
||||
|
||||
|
||||
async def test_camera_ws_stream_failure(
|
||||
hass: HomeAssistant,
|
||||
@@ -746,8 +742,6 @@ async def test_camera_multiple_streams(
|
||||
stream_source = await camera.async_get_stream_source(hass, "camera.my_camera")
|
||||
assert stream_source == "rtsp://some/url?auth=g.0.streamingToken"
|
||||
|
||||
assert await async_get_image(hass) == IMAGE_BYTES_FROM_STREAM
|
||||
|
||||
# WebRTC stream
|
||||
client = await hass_ws_client(hass)
|
||||
await client.send_json(
|
||||
|
||||
Reference in New Issue
Block a user