mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[videofyme] Add an additional quality (they change between downloads of the info) and update md5 sum of the test video
This commit is contained in:
parent
3669cdba10
commit
10204dc898
@ -14,7 +14,7 @@ class VideofyMeIE(InfoExtractor):
|
|||||||
_TEST = {
|
_TEST = {
|
||||||
u'url': u'http://www.videofy.me/thisisvideofyme/1100701',
|
u'url': u'http://www.videofy.me/thisisvideofyme/1100701',
|
||||||
u'file': u'1100701.mp4',
|
u'file': u'1100701.mp4',
|
||||||
u'md5': u'2046dd5758541d630bfa93e741e2fd79',
|
u'md5': u'c77d700bdc16ae2e9f3c26019bd96143',
|
||||||
u'info_dict': {
|
u'info_dict': {
|
||||||
u'title': u'This is VideofyMe',
|
u'title': u'This is VideofyMe',
|
||||||
u'description': None,
|
u'description': None,
|
||||||
@ -32,9 +32,8 @@ class VideofyMeIE(InfoExtractor):
|
|||||||
config = xml.etree.ElementTree.fromstring(config_xml.encode('utf-8'))
|
config = xml.etree.ElementTree.fromstring(config_xml.encode('utf-8'))
|
||||||
video = config.find('video')
|
video = config.find('video')
|
||||||
sources = video.find('sources')
|
sources = video.find('sources')
|
||||||
url_node = find_xpath_attr(sources, 'source', 'id', 'HQ on')
|
url_node = next(node for node in [find_xpath_attr(sources, 'source', 'id', 'HQ %s' % key)
|
||||||
if url_node is None:
|
for key in ['on', 'av', 'off']] if node is not None)
|
||||||
url_node = find_xpath_attr(sources, 'source', 'id', 'HQ off')
|
|
||||||
video_url = url_node.find('url').text
|
video_url = url_node.find('url').text
|
||||||
|
|
||||||
return {'id': video_id,
|
return {'id': video_id,
|
||||||
|
Loading…
Reference in New Issue
Block a user