parent
612aa1cf21
commit
d29b7f6910
|
@ -18,7 +18,7 @@ import homeassistant.helpers.config_validation as cv
|
|||
from homeassistant.helpers.entity import Entity
|
||||
|
||||
DOMAIN = 'ffmpeg'
|
||||
REQUIREMENTS = ["ha-ffmpeg==1.2"]
|
||||
REQUIREMENTS = ["ha-ffmpeg==1.4"]
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
@ -107,6 +107,13 @@ def async_setup(hass, config):
|
|||
if tasks:
|
||||
yield from asyncio.wait(tasks, loop=hass.loop)
|
||||
|
||||
tasks.clear()
|
||||
for device in devices:
|
||||
tasks.append(device.async_update_ha_state())
|
||||
|
||||
if tasks:
|
||||
yield from asyncio.wait(tasks, loop=hass.loop)
|
||||
|
||||
hass.services.async_register(
|
||||
DOMAIN, SERVICE_START, async_service_handle,
|
||||
descriptions[DOMAIN].get(SERVICE_START), schema=SERVICE_FFMPEG_SCHEMA)
|
||||
|
|
|
@ -180,7 +180,7 @@ googlemaps==2.4.4
|
|||
gps3==0.33.3
|
||||
|
||||
# homeassistant.components.ffmpeg
|
||||
ha-ffmpeg==1.2
|
||||
ha-ffmpeg==1.4
|
||||
|
||||
# homeassistant.components.media_player.philips_js
|
||||
ha-philipsjs==0.0.1
|
||||
|
|
Loading…
Reference in New Issue