From 053419cd245e4af1330bf970a0b919c71cdb3a94 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rog=C3=A9rio=20Brito?= Date: Thu, 20 Oct 2011 20:28:29 -0200 Subject: [PATCH] FacebookIE: The date doesn't seem to be available anymore. The current regular expression is likely to match a lot of stuff, as each comment that a video has has one of those and it is not clear which one is the date of the video *upload* itself. --- youtube-dl | 1 - 1 file changed, 1 deletion(-) diff --git a/youtube-dl b/youtube-dl index 579a33d0c..4c931b401 100755 --- a/youtube-dl +++ b/youtube-dl @@ -2745,7 +2745,6 @@ class FacebookIE(InfoExtractor): data = {'title': r'\("video_title", "(.*?)"\)', 'description': r'
(.*?)
', 'owner': r'\("video_owner_name", "(.*?)"\)', - 'upload_date': r'data-date="(.*?)"', 'thumbnail': r'\("thumb_url", "(?P.*?)"\)', } video_info = {} -- 2.30.2