1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-18 11:09:32 +00:00

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

This commit is contained in:
Rogério Brito 2011-10-20 20:27:48 -02:00
parent 0067bbe7a7
commit 99e207bab0

View file

@ -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="(.*?)"',