mirror of https://github.com/yt-dlp/yt-dlp.git
Fix metacafe.com code not working due to gdaKey again (fixes issue #185)
This commit is contained in:
parent
204c9398ab
commit
109626fcc0
18
youtube-dl
18
youtube-dl
|
@ -1039,15 +1039,15 @@ class MetacafeIE(InfoExtractor):
|
||||||
return
|
return
|
||||||
mediaURL = urllib.unquote(mobj.group(1))
|
mediaURL = urllib.unquote(mobj.group(1))
|
||||||
|
|
||||||
#mobj = re.search(r'(?m)&gdaKey=(.*?)&', webpage)
|
# Extract gdaKey if available
|
||||||
#if mobj is None:
|
mobj = re.search(r'(?m)&gdaKey=(.*?)&', webpage)
|
||||||
# self._downloader.trouble(u'ERROR: unable to extract gdaKey')
|
if mobj is None:
|
||||||
# return
|
video_url = mediaURL
|
||||||
#gdaKey = mobj.group(1)
|
#self._downloader.trouble(u'ERROR: unable to extract gdaKey')
|
||||||
#
|
#return
|
||||||
#video_url = '%s?__gda__=%s' % (mediaURL, gdaKey)
|
else:
|
||||||
|
gdaKey = mobj.group(1)
|
||||||
video_url = mediaURL
|
video_url = '%s?__gda__=%s' % (mediaURL, gdaKey)
|
||||||
|
|
||||||
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