From 7e1af5dc99fd2c6f5f31b1a642bfe2faf26f2f62 Mon Sep 17 00:00:00 2001 From: TRox1972 Date: Wed, 25 May 2016 15:24:57 +0200 Subject: [PATCH] [Flipagram] add comments about comment retrieval --- youtube_dl/extractor/flipagram.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/youtube_dl/extractor/flipagram.py b/youtube_dl/extractor/flipagram.py index 44e92f971..43ba83929 100644 --- a/youtube_dl/extractor/flipagram.py +++ b/youtube_dl/extractor/flipagram.py @@ -57,6 +57,8 @@ class FlipagramIE(InfoExtractor): 'height': int_or_none(cover.get('height')), }) + # Note that this only retrieves comments that are initally loaded. + # For videos with large amounts of comments, most won't be retrieved. comments = [] for comment in user_data.get('comments', {}).get(video_id, {}).get('items', []): text = comment.get('comment', [])