mirror of
https://github.com/soimort/you-get.git
synced 2025-01-23 21:45:02 +03:00
twitter download fix
This commit is contained in:
parent
7eca091d0d
commit
4f97ce50f3
@ -7,9 +7,9 @@ from .vine import vine_download
|
||||
|
||||
def extract_m3u(source):
|
||||
r1 = get_content(source)
|
||||
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'(/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…
Reference in New Issue
Block a user