aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2020-12-11 15:54:24 +0100
committerRemita Amine <remitamine@gmail.com>2020-12-11 15:54:24 +0100
commitad5e5788ff59fbc37beb417e1371f40a6365e956 (patch)
treea9eb221fb8f4112922994072ff8187a1c9c358f3
parentdc65041c224497f46b2984df02c234ce54bdedfd (diff)
downloadyoutube-dl-ad5e5788ff59fbc37beb417e1371f40a6365e956.tar.xz
Revert "[facebook] add support for watch videos(closes #22795)"
This reverts commit dc65041c224497f46b2984df02c234ce54bdedfd.
-rw-r--r--youtube_dl/extractor/facebook.py25
1 files changed, 1 insertions, 24 deletions
diff --git a/youtube_dl/extractor/facebook.py b/youtube_dl/extractor/facebook.py
index 374b82704..6c360e29e 100644
--- a/youtube_dl/extractor/facebook.py
+++ b/youtube_dl/extractor/facebook.py
@@ -41,8 +41,7 @@ class FacebookIE(InfoExtractor):
photo\.php|
video\.php|
video/embed|
- story\.php|
- watch/?
+ story\.php
)\?(?:.*?)(?:v|video_id|story_fbid)=|
[^/]+/videos/(?:[^/]+/)?|
[^/]+/posts/|
@@ -240,20 +239,6 @@ class FacebookIE(InfoExtractor):
'id': '106560053808006',
},
'playlist_count': 2,
- }, {
- # data.video_home_www_feed.video_home_sections.edges[].node.feed_section_renderer.section.section_components.edges[].node.feed_unit.attachments
- 'url': 'https://www.facebook.com/watch/?v=125475412191640',
- 'md5': 'a38bed45dd1b2881ea230f3561c914b7',
- 'info_dict': {
- 'id': '373249263226147',
- 'ext': 'mp4',
- 'title': 'شوف بعينيك ماذا يحدث...ماناش نخوف فيكم رانا ننقل لكم مايحدث...',
- 'description': 'شوف بعينيك ماذا يحدث خويا العزيز...ماناش نخوف فيكم رانا ننقل لكم مايحدث...\nتذكروا جيدا ماكنا نقوله لكم منذ سنوات وماكنا نحذركم .',
- 'timestamp': 1550353963,
- 'upload_date': '20190216',
- 'uploader_id': '176917942440142',
- },
- 'skip': 'Requires logging in',
}]
@staticmethod
@@ -440,14 +425,6 @@ class FacebookIE(InfoExtractor):
for edge in edges:
parse_attachment(edge, key='node')
- video_home_sections = try_get(data, lambda x: x['video_home_www_feed']['video_home_sections']['edges'], list) or []
- for video_home_section in video_home_sections:
- section_components = try_get(video_home_section, lambda x: x['node']['feed_section_renderer']['section']['section_components']['edges'], list) or []
- for section_component in section_components:
- attachments = try_get(section_component, lambda x: x['node']['feed_unit']['attachments'], list) or []
- for attachment in attachments:
- parse_attachment(attachment)
-
if not entries:
video = data.get('video') or {}
if video: