Fix metacafe.com downloads for some videos (fixes issue #189)
parent
db7e31b853
commit
c6c555cf8a
36
youtube-dl
36
youtube-dl
|
@ -1036,20 +1036,30 @@ class MetacafeIE(InfoExtractor):
|
||||||
# Extract URL, uploader and title from webpage
|
# Extract URL, uploader and title from webpage
|
||||||
self.report_extraction(video_id)
|
self.report_extraction(video_id)
|
||||||
mobj = re.search(r'(?m)&mediaURL=([^&]+)', webpage)
|
mobj = re.search(r'(?m)&mediaURL=([^&]+)', webpage)
|
||||||
if mobj is None:
|
if mobj is not None:
|
||||||
self._downloader.trouble(u'ERROR: unable to extract media URL')
|
mediaURL = urllib.unquote(mobj.group(1))
|
||||||
return
|
|
||||||
mediaURL = urllib.unquote(mobj.group(1))
|
# Extract gdaKey if available
|
||||||
|
mobj = re.search(r'(?m)&gdaKey=(.*?)&', webpage)
|
||||||
# Extract gdaKey if available
|
if mobj is None:
|
||||||
mobj = re.search(r'(?m)&gdaKey=(.*?)&', webpage)
|
video_url = mediaURL
|
||||||
if mobj is None:
|
else:
|
||||||
video_url = mediaURL
|
gdaKey = mobj.group(1)
|
||||||
#self._downloader.trouble(u'ERROR: unable to extract gdaKey')
|
video_url = '%s?__gda__=%s' % (mediaURL, gdaKey)
|
||||||
#return
|
|
||||||
else:
|
else:
|
||||||
gdaKey = mobj.group(1)
|
mobj = re.search(r' name="flashvars" value="(.*?)"', webpage)
|
||||||
video_url = '%s?__gda__=%s' % (mediaURL, gdaKey)
|
if mobj is None:
|
||||||
|
self._downloader.trouble(u'ERROR: unable to extract media URL')
|
||||||
|
return
|
||||||
|
vardict = parse_qs(mobj.group(1))
|
||||||
|
if 'mediaData' not in vardict:
|
||||||
|
self._downloader.trouble(u'ERROR: unable to extract media URL')
|
||||||
|
return
|
||||||
|
mobj = re.search(r'"mediaURL":"(http.*?)","key":"(.*?)"', vardict['mediaData'][0])
|
||||||
|
if mobj is None:
|
||||||
|
self._downloader.trouble(u'ERROR: unable to extract media URL')
|
||||||
|
return
|
||||||
|
video_url = '%s?__gda__=%s' % (mobj.group(1).replace('\\/', '/'), mobj.group(2))
|
||||||
|
|
||||||
mobj = re.search(r'(?im)<title>(.*) - Video</title>', webpage)
|
mobj = re.search(r'(?im)<title>(.*) - Video</title>', webpage)
|
||||||
if mobj is None:
|
if mobj is None:
|
||||||
|
|
Loading…
Reference in New Issue