summary refs log tree commit diff
diff options
context:
space:
mode:
authorAnton Novosyolov <anton.novosyolov@gmail.com>2014-06-02 13:30:23 +0400
committerAnton Novosyolov <anton.novosyolov@gmail.com>2014-06-02 13:30:23 +0400
commit263bd4ec50f9c5ac44062dfbd2f7579177de74e6 (patch)
treefc475390f3f74c8ffcaf8ba9d50064ef1286d187
parentb7e8b6e37ab861886f38a923f9578a21122e5d5f (diff)
downloadyoutube-dl-263bd4ec50f9c5ac44062dfbd2f7579177de74e6.tar.gz
youtube-dl-263bd4ec50f9c5ac44062dfbd2f7579177de74e6.tar.xz
youtube-dl-263bd4ec50f9c5ac44062dfbd2f7579177de74e6.zip
Recognize a third format of the upload_date in the 'watch-uploader-info' element
-rw-r--r--youtube_dl/extractor/youtube.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index 981ca62c0..8327fb146 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -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())