1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 02:32:33 +01:00

[twitter] match /video/ tweet urls

This commit is contained in:
Delphox 2024-05-17 16:50:51 -03:00 committed by GitHub
parent 07d962d60a
commit 8ba73e2ec9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 1 deletions

View File

@ -749,7 +749,7 @@ class TwitterTweetExtractor(TwitterExtractor):
"""Extractor for individual tweets"""
subcategory = "tweet"
pattern = (BASE_PATTERN + r"/([^/?#]+|i/web)/status/(\d+)"
r"/?(?:$|\?|#|photo/)")
r"/?(?:$|\?|#|photo/|video/)")
example = "https://twitter.com/USER/status/12345"
def __init__(self, match):

View File

@ -539,6 +539,13 @@ Youll be able to receive four Galarian form Pokémon with Hidden Abilities, p
"#class" : twitter.TwitterTweetExtractor,
},
{
"#url" : "https://twitter.com/perrypumas/status/1065692031626829824/video/1",
"#comment" : "/video/ URL",
"#category": ("", "twitter", "tweet"),
"#class" : twitter.TwitterTweetExtractor,
},
{
"#url" : "https://twitter.com/morino_ya/status/1392763691599237121",
"#comment" : "retweet with missing media entities (#1555)",