diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-04-18 22:40:26 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-04-18 22:40:26 +0700 |
commit | 18848d226a254a20df2b772ac3c881caccf2f260 (patch) | |
tree | 96b9735c975ca3f2a6e80af74f0c48224e8a3eb2 /youtube_dl | |
parent | a32a9a7ef5f64bcec29ef71c8e5b6dc509232c13 (diff) |
[instagram] Fix extraction (closes #12777)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/instagram.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/youtube_dl/extractor/instagram.py b/youtube_dl/extractor/instagram.py index c1921cbcf..4667335e0 100644 --- a/youtube_dl/extractor/instagram.py +++ b/youtube_dl/extractor/instagram.py @@ -112,7 +112,8 @@ class InstagramIE(InfoExtractor): webpage = self._download_webpage(url, video_id) (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( self._search_regex( @@ -121,7 +122,10 @@ class InstagramIE(InfoExtractor): video_id, fatal=False) if shared_data: 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: video_url = media.get('video_url') height = int_or_none(media.get('dimensions', {}).get('height')) |