mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[youtube] Recognize a second format of the upload_date in the 'watch-uploader-info' element (#2911)
This commit is contained in:
parent
08af0205f9
commit
76e92371ac
@ -1140,7 +1140,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
|
|||||||
mobj = re.search(r'(?s)id="eow-date.*?>(.*?)</span>', video_webpage)
|
mobj = re.search(r'(?s)id="eow-date.*?>(.*?)</span>', video_webpage)
|
||||||
if mobj is None:
|
if mobj is None:
|
||||||
mobj = re.search(
|
mobj = re.search(
|
||||||
r'(?s)id="watch-uploader-info".*?>.*?Published on (.*?)</strong>',
|
r'(?s)id="watch-uploader-info".*?>.*?(?:Published|Uploaded) on (.*?)</strong>',
|
||||||
video_webpage)
|
video_webpage)
|
||||||
if mobj is not None:
|
if mobj is not None:
|
||||||
upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split())
|
upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split())
|
||||||
|
Loading…
Reference in New Issue
Block a user