youtube-dl

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

commit 99e207bab0f6e3c2e70fc5e4ba2154ca536de0eb
parent 0067bbe7a7c7211b3addf120f48ddda611da127e
Author: Rogério Brito <rbrito@ime.usp.br>
Date:   Thu, 20 Oct 2011 20:27:48 -0200

FacebookIE: Fix extraction of title as Facebook has changed stuff.

Diffstat:
Myoutube-dl | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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">(.*?)</', + data = {'title': r'\("video_title", "(.*?)"\)', 'description': r'<div class="datawrap">(.*?)</div>', 'owner': r'\("video_owner_name", "(.*?)"\)', 'upload_date': r'data-date="(.*?)"',