aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/videofyme.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-08-22 23:23:52 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-08-22 23:23:52 +0200
commit10204dc89893e49ab9d0247eb17bc79c58e2d485 (patch)
treef41044a3832b9864ef4bc412808df08af64f995d /youtube_dl/extractor/videofyme.py
parent3669cdba103a293eb96dd8e7791ef184a7bf71d8 (diff)
downloadyoutube-dl-10204dc89893e49ab9d0247eb17bc79c58e2d485.tar.xz
[videofyme] Add an additional quality (they change between downloads of the info) and update md5 sum of the test video
Diffstat (limited to 'youtube_dl/extractor/videofyme.py')
-rw-r--r--youtube_dl/extractor/videofyme.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/youtube_dl/extractor/videofyme.py b/youtube_dl/extractor/videofyme.py
index 04106672b..94f64ffa5 100644
--- a/youtube_dl/extractor/videofyme.py
+++ b/youtube_dl/extractor/videofyme.py
@@ -14,7 +14,7 @@ class VideofyMeIE(InfoExtractor):
_TEST = {
u'url': u'http://www.videofy.me/thisisvideofyme/1100701',
u'file': u'1100701.mp4',
- u'md5': u'2046dd5758541d630bfa93e741e2fd79',
+ u'md5': u'c77d700bdc16ae2e9f3c26019bd96143',
u'info_dict': {
u'title': u'This is VideofyMe',
u'description': None,
@@ -32,9 +32,8 @@ class VideofyMeIE(InfoExtractor):
config = xml.etree.ElementTree.fromstring(config_xml.encode('utf-8'))
video = config.find('video')
sources = video.find('sources')
- url_node = find_xpath_attr(sources, 'source', 'id', 'HQ on')
- if url_node is None:
- url_node = find_xpath_attr(sources, 'source', 'id', 'HQ off')
+ url_node = next(node for node in [find_xpath_attr(sources, 'source', 'id', 'HQ %s' % key)
+ for key in ['on', 'av', 'off']] if node is not None)
video_url = url_node.find('url').text
return {'id': video_id,