Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Checklist
Verbose log
Description
While testing some Facebook videos I've noticed that the
title,uploaderandview_countare not being extracted properly, I have checked the Facebook extractor tests and I've tried one of them:{ # have 1080P, but only up to 720p in swf params 'url': 'https://www.facebook.com/cnn/videos/10155529876156509/', 'md5': '9571fae53d4165bbbadb17a94651dcdc', 'info_dict': { 'id': '10155529876156509', 'ext': 'mp4', 'title': 'She survived the holocaust — and years later, she’s getting her citizenship s...', 'timestamp': 1477818095, 'upload_date': '20161030', 'uploader': 'CNN', 'thumbnail': r're:^https?://.*', 'view_count': int, }, }The info extraction using the latest version 2019.11.22 returns these results:
{ "id": "10155529876156509", "title": "She survived the holocaust \u2014 and years later, she\u2019s getting her citizenship s...", "uploader": "Holocaust survivor becomes US citizen", "view_count": null, ... }Another example from the tests:
{ 'url': 'https://www.facebook.com/video.php?v=274175099429670', 'info_dict': { 'id': '274175099429670', 'ext': 'mp4', 'title': 're:^Asif Nawab Butt posted a video', 'uploader': 'Asif Nawab Butt', 'upload_date': '20140506', 'timestamp': 1399398998, 'thumbnail': r're:^https?://.*', }, 'expected_warnings': [ 'title' ] }Returns these results:
{ "id": "274175099429670", "title": "Facebook video #274175099429670", "uploader": null, "view_count": null, ... }