diff --git a/homeassistant/components/media_extractor.py b/homeassistant/components/media_extractor.py index e44ef68354a..9cee62c39f7 100644 --- a/homeassistant/components/media_extractor.py +++ b/homeassistant/components/media_extractor.py @@ -6,6 +6,7 @@ https://home-assistant.io/components/media_extractor/ """ import logging import os + import voluptuous as vol from homeassistant.components.media_player import ( @@ -15,16 +16,16 @@ from homeassistant.components.media_player import ( from homeassistant.config import load_yaml_config_file from homeassistant.helpers import config_validation as cv -REQUIREMENTS = ['youtube_dl==2017.10.20'] +REQUIREMENTS = ['youtube_dl==2017.10.29'] _LOGGER = logging.getLogger(__name__) -DOMAIN = 'media_extractor' -DEPENDENCIES = ['media_player'] - CONF_CUSTOMIZE_ENTITIES = 'customize' CONF_DEFAULT_STREAM_QUERY = 'default_query' + DEFAULT_STREAM_QUERY = 'best' +DEPENDENCIES = ['media_player'] +DOMAIN = 'media_extractor' CONFIG_SCHEMA = vol.Schema({ DOMAIN: vol.Schema({ diff --git a/requirements_all.txt b/requirements_all.txt index 036a4f8e685..21f3df32882 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -1135,7 +1135,7 @@ yeelight==0.3.3 yeelightsunflower==0.0.8 # homeassistant.components.media_extractor -youtube_dl==2017.10.20 +youtube_dl==2017.10.29 # homeassistant.components.light.zengge zengge==0.2