mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 14:26:32 -05:00
parent
c8398a9b87
commit
03879ff054
@ -124,7 +124,12 @@ class TwitterCardIE(TwitterBaseIE):
|
|||||||
'url': self._get_vmap_video_url(vmap_url, video_id),
|
'url': self._get_vmap_video_url(vmap_url, video_id),
|
||||||
})
|
})
|
||||||
|
|
||||||
media_info = config.get('status', {}).get('entities', [{}])[0].get('mediaInfo', {})
|
media_info = None
|
||||||
|
|
||||||
|
for entity in config.get('status', {}).get('entities', []):
|
||||||
|
if 'mediaInfo' in entity:
|
||||||
|
media_info = entity['mediaInfo']
|
||||||
|
|
||||||
if media_info:
|
if media_info:
|
||||||
for media_variant in media_info['variants']:
|
for media_variant in media_info['variants']:
|
||||||
media_url = media_variant['url']
|
media_url = media_variant['url']
|
||||||
@ -221,6 +226,21 @@ class TwitterIE(InfoExtractor):
|
|||||||
# Test case of TwitterCardIE
|
# Test case of TwitterCardIE
|
||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
},
|
},
|
||||||
|
}, {
|
||||||
|
'url': 'https://twitter.com/jaydingeer/status/700207533655363584',
|
||||||
|
'md5': '',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '700207533655363584',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'jay - BEAT PROD: @suhmeduh #Damndaniel',
|
||||||
|
'description': 'jay on Twitter: "BEAT PROD: @suhmeduh https://t.co/HBrQ4AfpvZ #Damndaniel https://t.co/byBooq2ejZ"',
|
||||||
|
'thumbnail': 're:^https?://.*\.jpg',
|
||||||
|
'uploader': 'jay',
|
||||||
|
'uploader_id': 'jaydingeer',
|
||||||
|
},
|
||||||
|
'params': {
|
||||||
|
'skip_download': True, # requires ffmpeg
|
||||||
|
},
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
Loading…
Reference in New Issue
Block a user