1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-11-22 16:44:32 +01:00

[LiveLeak] Extract vimeo embed

This commit is contained in:
kr4ssi 2020-03-03 03:50:57 +01:00 committed by GitHub
parent 46cc54ca8f
commit e61c4c5312
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,6 +86,19 @@ class LiveLeakIE(InfoExtractor):
# No original video
'url': 'https://www.liveleak.com/view?t=C26ZZ_1558612804',
'only_matching': True,
}, {
# Vimeo embed
'url': 'https://www.liveleak.com/view?t=973Sp_1583120710',
'md5': '846a7164e20c1e2c5e9bc6efe3a853bd',
'info_dict': {
'id': '80725414',
'ext': 'mp4',
'description': 'Fender guitars\' tribute to Stevie and ALL the greats,',
'uploader': 'smyle',
'uploader_id': 'user8600287',
'title': 'Liveleak.com - A Little Sunday Night SRV...',
'thumbnail': r're:^https?://.*\.jpg$'
}
}]
@staticmethod
@ -111,7 +124,7 @@ class LiveLeakIE(InfoExtractor):
if not entries:
# Maybe an embed?
embed_url = self._search_regex(
r'<iframe[^>]+src="((?:https?:)?//(?:www\.)?(?:prochan|youtube)\.com/embed[^"]+)"',
r'<iframe[^>]+src="((?:https?:)?//(?:(?:www\.)?(?:prochan|youtube)\.com/embed|player\.vimeo\.com/video)[^"]+)"',
webpage, 'embed URL')
return {
'_type': 'url_transparent',