mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[instagram] Fix extraction (closes #12777)
This commit is contained in:
parent
a32a9a7ef5
commit
18848d226a
@ -112,7 +112,8 @@ def _real_extract(self, url):
|
|||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
|
||||||
(video_url, description, thumbnail, timestamp, uploader,
|
(video_url, description, thumbnail, timestamp, uploader,
|
||||||
uploader_id, like_count, comment_count, height, width) = [None] * 10
|
uploader_id, like_count, comment_count, comments, height,
|
||||||
|
width) = [None] * 11
|
||||||
|
|
||||||
shared_data = self._parse_json(
|
shared_data = self._parse_json(
|
||||||
self._search_regex(
|
self._search_regex(
|
||||||
@ -121,7 +122,10 @@ def _real_extract(self, url):
|
|||||||
video_id, fatal=False)
|
video_id, fatal=False)
|
||||||
if shared_data:
|
if shared_data:
|
||||||
media = try_get(
|
media = try_get(
|
||||||
shared_data, lambda x: x['entry_data']['PostPage'][0]['media'], dict)
|
shared_data,
|
||||||
|
(lambda x: x['entry_data']['PostPage'][0]['graphql']['shortcode_media'],
|
||||||
|
lambda x: x['entry_data']['PostPage'][0]['media']),
|
||||||
|
dict)
|
||||||
if media:
|
if media:
|
||||||
video_url = media.get('video_url')
|
video_url = media.get('video_url')
|
||||||
height = int_or_none(media.get('dimensions', {}).get('height'))
|
height = int_or_none(media.get('dimensions', {}).get('height'))
|
||||||
|
Loading…
Reference in New Issue
Block a user