From: Rogério Brito Date: Thu, 20 Oct 2011 22:28:29 +0000 (-0200) Subject: FacebookIE: The date doesn't seem to be available anymore. X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=053419cd245e4af1330bf970a0b919c71cdb3a94;p=youtube-dl 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. --- 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 = {}