mirror of
https://github.com/home-assistant/core.git
synced 2025-11-08 10:29:27 +00:00
* Add streaming support w/ audio to Android IP Webcam integration * ruff reformat * Fix ruff * Break long comments and strings * Add camera test * Fix docstring * Remove dead code * Call library function to get URL * Simplify --------- Co-authored-by: Shay Levy <levyshay1@gmail.com> Co-authored-by: Martin Hjelmare <marhje52@gmail.com> Co-authored-by: Erik Montnemery <erik@montnemery.com>
65 lines
2.5 KiB
Python
65 lines
2.5 KiB
Python
"""Support for Android IP Webcam Cameras."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.components.camera import CameraEntityFeature
|
|
from homeassistant.components.mjpeg import MjpegCamera, filter_urllib3_logging
|
|
from homeassistant.const import (
|
|
CONF_HOST,
|
|
CONF_PASSWORD,
|
|
CONF_USERNAME,
|
|
HTTP_BASIC_AUTHENTICATION,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.device_registry import DeviceInfo
|
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import AndroidIPCamConfigEntry, AndroidIPCamDataUpdateCoordinator
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: AndroidIPCamConfigEntry,
|
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the IP Webcam camera from config entry."""
|
|
filter_urllib3_logging()
|
|
async_add_entities([IPWebcamCamera(config_entry.runtime_data)])
|
|
|
|
|
|
class IPWebcamCamera(MjpegCamera):
|
|
"""Representation of a IP Webcam camera."""
|
|
|
|
_attr_has_entity_name = True
|
|
_attr_supported_features = CameraEntityFeature.STREAM
|
|
|
|
def __init__(self, coordinator: AndroidIPCamDataUpdateCoordinator) -> None:
|
|
"""Initialize the camera."""
|
|
super().__init__(
|
|
mjpeg_url=coordinator.cam.mjpeg_url,
|
|
still_image_url=coordinator.cam.image_url,
|
|
authentication=HTTP_BASIC_AUTHENTICATION,
|
|
username=coordinator.config_entry.data.get(CONF_USERNAME),
|
|
password=coordinator.config_entry.data.get(CONF_PASSWORD, ""),
|
|
)
|
|
self._attr_unique_id = f"{coordinator.config_entry.entry_id}-camera"
|
|
self._attr_device_info = DeviceInfo(
|
|
identifiers={(DOMAIN, coordinator.config_entry.entry_id)},
|
|
name=coordinator.config_entry.data[CONF_HOST],
|
|
)
|
|
self._coordinator = coordinator
|
|
|
|
async def stream_source(self) -> str:
|
|
"""Get the stream source for the Android IP camera."""
|
|
return self._coordinator.cam.get_rtsp_url(
|
|
video_codec="h264", # most compatible & recommended
|
|
# while "opus" is compatible with more devices,
|
|
# HA's stream integration requires AAC or MP3,
|
|
# and IP webcam doesn't provide MP3 audio.
|
|
# aac is supported on select devices >= android 4.1.
|
|
# The stream will be quiet on devices that don't support aac,
|
|
# but it won't fail.
|
|
audio_codec="aac",
|
|
)
|