From 99e207bab0f6e3c2e70fc5e4ba2154ca536de0eb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rog=C3=A9rio=20Brito?= Date: Thu, 20 Oct 2011 20:27:48 -0200 Subject: [PATCH] FacebookIE: Fix extraction of title as Facebook has changed stuff. --- youtube-dl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube-dl b/youtube-dl index 4449e73..579a33d 100755 --- a/youtube-dl +++ b/youtube-dl @@ -2742,7 +2742,7 @@ class FacebookIE(InfoExtractor): def _parse_page(self, video_webpage): """Extract video information from page""" # General data - data = {'title': r'class="video_title datawrap">(.*?)(.*?)', 'owner': r'\("video_owner_name", "(.*?)"\)', 'upload_date': r'data-date="(.*?)"', -- 1.8.3.1