Ffmpeg update 1.4 (#5813)

* Pump ffmpeg version

* update entity

* next 1.4
pull/5814/head
Pascal Vizeli 2017-02-08 23:18:23 +01:00 committed by GitHub
parent 612aa1cf21
commit d29b7f6910
2 changed files with 9 additions and 2 deletions

View File

@ -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)

View File

@ -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