mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 03:07:37 +00:00
Ffmpeg update 1.4 (#5813)
* Pump ffmpeg version * update entity * next 1.4
This commit is contained in:
parent
612aa1cf21
commit
d29b7f6910
@ -18,7 +18,7 @@ import homeassistant.helpers.config_validation as cv
|
|||||||
from homeassistant.helpers.entity import Entity
|
from homeassistant.helpers.entity import Entity
|
||||||
|
|
||||||
DOMAIN = 'ffmpeg'
|
DOMAIN = 'ffmpeg'
|
||||||
REQUIREMENTS = ["ha-ffmpeg==1.2"]
|
REQUIREMENTS = ["ha-ffmpeg==1.4"]
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
@ -107,6 +107,13 @@ def async_setup(hass, config):
|
|||||||
if tasks:
|
if tasks:
|
||||||
yield from asyncio.wait(tasks, loop=hass.loop)
|
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(
|
hass.services.async_register(
|
||||||
DOMAIN, SERVICE_START, async_service_handle,
|
DOMAIN, SERVICE_START, async_service_handle,
|
||||||
descriptions[DOMAIN].get(SERVICE_START), schema=SERVICE_FFMPEG_SCHEMA)
|
descriptions[DOMAIN].get(SERVICE_START), schema=SERVICE_FFMPEG_SCHEMA)
|
||||||
|
@ -180,7 +180,7 @@ googlemaps==2.4.4
|
|||||||
gps3==0.33.3
|
gps3==0.33.3
|
||||||
|
|
||||||
# homeassistant.components.ffmpeg
|
# homeassistant.components.ffmpeg
|
||||||
ha-ffmpeg==1.2
|
ha-ffmpeg==1.4
|
||||||
|
|
||||||
# homeassistant.components.media_player.philips_js
|
# homeassistant.components.media_player.philips_js
|
||||||
ha-philipsjs==0.0.1
|
ha-philipsjs==0.0.1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user