1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-01 21:51:02 +02:00

Merge pull request #3033 from Forever-Young/patch-2

Recognize a third format of the upload_date in the 'watch-uploader-info'...
This commit is contained in:
Sergey M. 2014-06-02 20:20:21 +07:00
commit 4bf0727b1f

View File

@ -1140,7 +1140,7 @@ def _real_extract(self, url):
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())