[generic] Require og:video URLs to contain a dot

master
Philipp Hagemeister 10 years ago
parent fa8deaf38b
commit 10eaeb20c5

@ -833,7 +833,7 @@ class GenericIE(InfoExtractor):
if m_video_type is not None:
def check_video(vurl):
vpath = compat_urlparse.urlparse(vurl).path
return not vpath.endswith('.swf')
return '.' in vpath and not vpath.endswith('.swf')
found = list(filter(
check_video,
re.findall(r'<meta.*?property="og:video".*?content="(.*?)"', webpage)))

Loading…
Cancel
Save