2016-08-09 00:34:46 +00:00
|
|
|
"""
|
|
|
|
Support for Cameras with FFmpeg as decoder.
|
|
|
|
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
|
|
https://home-assistant.io/components/camera.ffmpeg/
|
|
|
|
"""
|
2016-10-24 06:48:01 +00:00
|
|
|
import asyncio
|
2016-08-09 00:34:46 +00:00
|
|
|
import logging
|
|
|
|
|
|
|
|
import voluptuous as vol
|
|
|
|
|
2019-03-30 00:03:02 +00:00
|
|
|
from homeassistant.components.camera import (
|
|
|
|
PLATFORM_SCHEMA, Camera, SUPPORT_STREAM)
|
2017-03-30 07:50:53 +00:00
|
|
|
from homeassistant.const import CONF_NAME
|
2019-03-21 05:56:46 +00:00
|
|
|
from homeassistant.helpers.aiohttp_client import async_aiohttp_proxy_stream
|
2016-08-09 00:34:46 +00:00
|
|
|
import homeassistant.helpers.config_validation as cv
|
2019-03-21 05:56:46 +00:00
|
|
|
|
|
|
|
from . import CONF_EXTRA_ARGUMENTS, CONF_INPUT, DATA_FFMPEG
|
2016-08-27 20:43:33 +00:00
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
2016-08-09 00:34:46 +00:00
|
|
|
|
2017-04-30 05:04:49 +00:00
|
|
|
DEPENDENCIES = ['ffmpeg']
|
2016-08-27 20:43:33 +00:00
|
|
|
DEFAULT_NAME = 'FFmpeg'
|
|
|
|
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
2016-08-09 00:34:46 +00:00
|
|
|
vol.Required(CONF_INPUT): cv.string,
|
|
|
|
vol.Optional(CONF_EXTRA_ARGUMENTS): cv.string,
|
2016-08-27 20:43:33 +00:00
|
|
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
|
2016-08-09 00:34:46 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
|
2018-08-24 14:37:30 +00:00
|
|
|
async def async_setup_platform(hass, config, async_add_entities,
|
2018-07-23 12:36:36 +00:00
|
|
|
discovery_info=None):
|
2017-04-30 05:04:49 +00:00
|
|
|
"""Set up a FFmpeg camera."""
|
2018-08-24 14:37:30 +00:00
|
|
|
async_add_entities([FFmpegCamera(hass, config)])
|
2016-08-09 00:34:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
class FFmpegCamera(Camera):
|
2016-08-11 09:14:24 +00:00
|
|
|
"""An implementation of an FFmpeg camera."""
|
2016-08-09 00:34:46 +00:00
|
|
|
|
2016-10-24 06:48:01 +00:00
|
|
|
def __init__(self, hass, config):
|
2016-08-09 00:34:46 +00:00
|
|
|
"""Initialize a FFmpeg camera."""
|
|
|
|
super().__init__()
|
2017-01-21 05:56:22 +00:00
|
|
|
|
|
|
|
self._manager = hass.data[DATA_FFMPEG]
|
2016-08-09 00:34:46 +00:00
|
|
|
self._name = config.get(CONF_NAME)
|
|
|
|
self._input = config.get(CONF_INPUT)
|
|
|
|
self._extra_arguments = config.get(CONF_EXTRA_ARGUMENTS)
|
|
|
|
|
2019-03-30 00:03:02 +00:00
|
|
|
@property
|
|
|
|
def supported_features(self):
|
|
|
|
"""Return supported features."""
|
|
|
|
return SUPPORT_STREAM
|
|
|
|
|
|
|
|
@property
|
|
|
|
def stream_source(self):
|
|
|
|
"""Return the stream source."""
|
|
|
|
return self._input.split(' ')[-1]
|
|
|
|
|
2018-07-23 12:36:36 +00:00
|
|
|
async def async_camera_image(self):
|
2016-08-09 00:34:46 +00:00
|
|
|
"""Return a still image response from the camera."""
|
2019-03-27 06:55:05 +00:00
|
|
|
from haffmpeg.tools import ImageFrame, IMAGE_JPEG
|
2017-01-21 05:56:22 +00:00
|
|
|
ffmpeg = ImageFrame(self._manager.binary, loop=self.hass.loop)
|
2016-09-07 01:24:11 +00:00
|
|
|
|
2018-07-23 12:36:36 +00:00
|
|
|
image = await asyncio.shield(ffmpeg.get_image(
|
2016-10-24 06:48:01 +00:00
|
|
|
self._input, output_format=IMAGE_JPEG,
|
2017-10-18 15:11:22 +00:00
|
|
|
extra_cmd=self._extra_arguments), loop=self.hass.loop)
|
2016-10-24 06:48:01 +00:00
|
|
|
return image
|
2016-08-09 00:34:46 +00:00
|
|
|
|
2018-07-23 12:36:36 +00:00
|
|
|
async def handle_async_mjpeg_stream(self, request):
|
2016-08-09 00:34:46 +00:00
|
|
|
"""Generate an HTTP MJPEG stream from the camera."""
|
2019-03-27 06:55:05 +00:00
|
|
|
from haffmpeg.camera import CameraMjpeg
|
2016-10-24 06:48:01 +00:00
|
|
|
|
2017-01-21 05:56:22 +00:00
|
|
|
stream = CameraMjpeg(self._manager.binary, loop=self.hass.loop)
|
2018-07-23 12:36:36 +00:00
|
|
|
await stream.open_camera(
|
2016-10-24 06:48:01 +00:00
|
|
|
self._input, extra_cmd=self._extra_arguments)
|
|
|
|
|
2018-07-23 12:36:36 +00:00
|
|
|
try:
|
2019-03-27 06:55:05 +00:00
|
|
|
stream_reader = await stream.get_reader()
|
2018-07-23 12:36:36 +00:00
|
|
|
return await async_aiohttp_proxy_stream(
|
2019-03-27 06:55:05 +00:00
|
|
|
self.hass, request, stream_reader,
|
2019-02-04 17:57:22 +00:00
|
|
|
self._manager.ffmpeg_stream_content_type)
|
2018-07-23 12:36:36 +00:00
|
|
|
finally:
|
|
|
|
await stream.close()
|
2016-08-09 00:34:46 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
"""Return the name of this camera."""
|
|
|
|
return self._name
|