1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-05 07:31:14 +02:00

[twitter:card] Relax _VALID_URL (closes #11225)

This commit is contained in:
Sergey M․ 2016-11-19 01:49:13 +07:00
parent c131fc3372
commit 748a462fbe
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

View File

@ -25,7 +25,7 @@ def _get_vmap_video_url(self, vmap_url, video_id):
class TwitterCardIE(TwitterBaseIE): class TwitterCardIE(TwitterBaseIE):
IE_NAME = 'twitter:card' IE_NAME = 'twitter:card'
_VALID_URL = r'https?://(?:www\.)?twitter\.com/i/(?:cards/tfw/v1|videos/tweet)/(?P<id>\d+)' _VALID_URL = r'https?://(?:www\.)?twitter\.com/i/(?:cards/tfw/v1|videos(?:/tweet)?)/(?P<id>\d+)'
_TESTS = [ _TESTS = [
{ {
'url': 'https://twitter.com/i/cards/tfw/v1/560070183650213889', 'url': 'https://twitter.com/i/cards/tfw/v1/560070183650213889',
@ -84,6 +84,9 @@ class TwitterCardIE(TwitterBaseIE):
'title': 'Twitter web player', 'title': 'Twitter web player',
'thumbnail': 're:^https?://.*\.jpg', 'thumbnail': 're:^https?://.*\.jpg',
}, },
}, {
'url': 'https://twitter.com/i/videos/752274308186120192',
'only_matching': True,
}, },
] ]