[extractor/common] Extract view count from JSON-LD
[youtube-dl] / youtube_dl / extractor / common.py
index 2cb55d6af826db72ff3539aa88c3c2f0768e38e6..fba15d446e9f2c52e3159c1142af499484f13648 100644 (file)
@@ -990,6 +990,7 @@ class InfoExtractor(object):
                 'tbr': int_or_none(e.get('bitrate')),
                 'width': int_or_none(e.get('width')),
                 'height': int_or_none(e.get('height')),
+                'view_count': int_or_none(e.get('interactionCount')),
             })
 
         for e in json_ld: