Merge pull request #3033 from Forever-Young/patch-2
authorSergey M. <dstftw@gmail.com>
Mon, 2 Jun 2014 13:20:21 +0000 (20:20 +0700)
committerSergey M. <dstftw@gmail.com>
Mon, 2 Jun 2014 13:20:21 +0000 (20:20 +0700)
Recognize a third format of the upload_date in the 'watch-uploader-info'...

youtube_dl/extractor/youtube.py

index 981ca62c0d9762288e736eab0e68fca5273c8752..8327fb146a48a5338a9b21820aac8cb247112e0d 100644 (file)
@@ -1140,7 +1140,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
         mobj = re.search(r'(?s)id="eow-date.*?>(.*?)</span>', video_webpage)
         if mobj is None:
             mobj = re.search(
-                r'(?s)id="watch-uploader-info".*?>.*?(?:Published|Uploaded) on (.*?)</strong>',
+                r'(?s)id="watch-uploader-info".*?>.*?(?:Published|Uploaded|Streamed live) on (.*?)</strong>',
                 video_webpage)
         if mobj is not None:
             upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split())