[generic] Support Vine embeds (#8817)

totalwebcasting
Yen Chi Hsuan 8 years ago
parent 81f36eba88
commit 088e1aac59

@ -1909,6 +1909,14 @@ class GenericIE(InfoExtractor):
self._proto_relative_url(unescapeHTML(mobj.group(1))),
'AdobeTVVideo')
# Look for Vine embeds
mobj = re.search(
r'<iframe[^>]+src=[\'"]((?:https?:)?//(?:www\.)?vine\.co/v/[^/]+/embed/(?:simple|postcard))',
webpage)
if mobj is not None:
return self.url_result(
self._proto_relative_url(unescapeHTML(mobj.group(1))), 'Vine')
def check_video(vurl):
if YoutubeIE.suitable(vurl):
return True

Loading…
Cancel
Save