mirror of
https://gitlab.com/dstftw/youtube-dl.git
synced 2020-11-16 09:42:26 +00:00
vimeo: Add the ability to detect if a video is available in HD.
This commit is contained in:
parent
d76736fc5e
commit
87929e4b35
14
youtube-dl
14
youtube-dl
|
@ -2059,6 +2059,18 @@ class VimeoIE(InfoExtractor):
|
||||||
return
|
return
|
||||||
sig = mobj.group(1).decode('utf-8')
|
sig = mobj.group(1).decode('utf-8')
|
||||||
|
|
||||||
|
# Vimeo specific: extract video quality information
|
||||||
|
mobj = re.search(r'<isHD>(\d+)</isHD>', webpage)
|
||||||
|
if mobj is None:
|
||||||
|
self._downloader.trouble(u'ERROR: unable to extract video quality information')
|
||||||
|
return
|
||||||
|
quality = mobj.group(1).decode('utf-8')
|
||||||
|
|
||||||
|
if int(quality) == 1:
|
||||||
|
quality = 'hd'
|
||||||
|
else:
|
||||||
|
quality = 'sd'
|
||||||
|
|
||||||
# Vimeo specific: Extract request signature expiration
|
# Vimeo specific: Extract request signature expiration
|
||||||
mobj = re.search(r'<request_signature_expires>(.*?)</request_signature_expires>', webpage)
|
mobj = re.search(r'<request_signature_expires>(.*?)</request_signature_expires>', webpage)
|
||||||
if mobj is None:
|
if mobj is None:
|
||||||
|
@ -2066,7 +2078,7 @@ class VimeoIE(InfoExtractor):
|
||||||
return
|
return
|
||||||
sig_exp = mobj.group(1).decode('utf-8')
|
sig_exp = mobj.group(1).decode('utf-8')
|
||||||
|
|
||||||
video_url = "http://vimeo.com/moogaloop/play/clip:%s/%s/%s" % (video_id, sig, sig_exp)
|
video_url = "http://vimeo.com/moogaloop/play/clip:%s/%s/%s/?q=%s" % (video_id, sig, sig_exp, quality)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
# Process video information
|
# Process video information
|
||||||
|
|
Loading…
Reference in a new issue