[youtube] Speed up upload date regex (#6125)

This commit is contained in:
Sergey M․ 2015-06-30 01:02:48 +06:00
parent cf386750c9
commit f0714c9f86
1 changed files with 1 additions and 1 deletions

View File

@ -1003,7 +1003,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
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|Streamed live) on (.*?)</strong>',
r'id="watch-uploader-info".*?>.*?(?:Published|Uploaded|Streamed live|Started) on (.*?)</strong>',
video_webpage)
if mobj is not None:
upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split())