FacebookIE: Fix extraction of title as Facebook has changed stuff.
authorRogério Brito <rbrito@ime.usp.br>
Thu, 20 Oct 2011 22:27:48 +0000 (20:27 -0200)
committerRogério Brito <rbrito@ime.usp.br>
Thu, 20 Oct 2011 22:27:48 +0000 (20:27 -0200)
youtube-dl

index 4449e73..579a33d 100755 (executable)
@@ -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="(.*?)"',