youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 053419cd245e4af1330bf970a0b919c71cdb3a94
parent 99e207bab0f6e3c2e70fc5e4ba2154ca536de0eb
Author: Rogério Brito <rbrito@ime.usp.br>
Date:   Thu, 20 Oct 2011 20:28:29 -0200

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.

Diffstat:
Myoutube-dl | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/youtube-dl b/youtube-dl @@ -2745,7 +2745,6 @@ class FacebookIE(InfoExtractor): data = {'title': r'\("video_title", "(.*?)"\)', 'description': r'<div class="datawrap">(.*?)</div>', 'owner': r'\("video_owner_name", "(.*?)"\)', - 'upload_date': r'data-date="(.*?)"', 'thumbnail': r'\("thumb_url", "(?P<THUMB>.*?)"\)', } video_info = {}