diff --git a/youtube_dl/extractor/facebook.py b/youtube_dl/extractor/facebook.py index f7b65a2ae..028182280 100644 --- a/youtube_dl/extractor/facebook.py +++ b/youtube_dl/extractor/facebook.py @@ -461,6 +461,10 @@ class FacebookIE(InfoExtractor): r'\bpostViewCount\s*:\s*["\']([\d,.]+)', webpage, 'view count', default=None) or self._search_regex( r'\"postViewCount\"\s*:\s*(\d+)', tahoe_secondary_data, 'view count', + default=None) or self._search_regex( + r'\bviewCount\s*:\s*["\']([\d,.]+)', webpage, 'view count', + default=None) or self._search_regex( + r'\"viewCount\"\s*:\s*(\d+)', tahoe_secondary_data, 'view count', default=None) )