about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRogério Brito <rbrito@ime.usp.br>2011-10-20 20:28:29 -0200
committerRogério Brito <rbrito@ime.usp.br>2011-10-20 20:28:34 -0200
commit053419cd245e4af1330bf970a0b919c71cdb3a94 (patch)
tree359794780dcc78b205a5d21fae3fc07f3f60862b
parent99e207bab0f6e3c2e70fc5e4ba2154ca536de0eb (diff)
downloadyoutube-dl-053419cd245e4af1330bf970a0b919c71cdb3a94.tar.gz
youtube-dl-053419cd245e4af1330bf970a0b919c71cdb3a94.tar.xz
youtube-dl-053419cd245e4af1330bf970a0b919c71cdb3a94.zip
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.
-rwxr-xr-xyoutube-dl1
1 files changed, 0 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl
index 579a33d0c..4c931b401 100755
--- 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 = {}