mirror of
https://github.com/soimort/you-get.git
synced 2025-03-13 03:17:44 +03:00
[twitter] fix regression
This commit is contained in:
parent
103238188d
commit
003c7256ee
@ -7,9 +7,11 @@ from .vine import vine_download
|
||||
|
||||
def extract_m3u(source):
|
||||
r1 = get_content(source)
|
||||
s1 = re.findall(r'(/amplify_video/.*)', r1)
|
||||
s1 = re.findall(r'(/ext_tw_video/.*)', r1)
|
||||
s1 += re.findall(r'(/amplify_video/.*)', r1)
|
||||
r2 = get_content('https://video.twimg.com%s' % s1[-1])
|
||||
s2 = re.findall(r'(/amplify_video/.*)', r2)
|
||||
s2 = re.findall(r'(/ext_tw_video/.*)', r2)
|
||||
s2 += re.findall(r'(/amplify_video/.*)', r2)
|
||||
return ['https://video.twimg.com%s' % i for i in s2]
|
||||
|
||||
def twitter_download(url, output_dir='.', merge=True, info_only=False, **kwargs):
|
||||
|
Loading…
x
Reference in New Issue
Block a user