|
|
@ -4560,6 +4560,14 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
|
|
|
self._parse_time_text(self._get_text(vpir, 'dateText'))) or upload_date
|
|
|
|
self._parse_time_text(self._get_text(vpir, 'dateText'))) or upload_date
|
|
|
|
info['upload_date'] = upload_date
|
|
|
|
info['upload_date'] = upload_date
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if upload_date and live_status not in ('is_live', 'post_live', 'is_upcoming'):
|
|
|
|
|
|
|
|
# Newly uploaded videos' HLS formats are potentially problematic and need to be checked
|
|
|
|
|
|
|
|
upload_datetime = datetime_from_str(upload_date).replace(tzinfo=datetime.timezone.utc)
|
|
|
|
|
|
|
|
if upload_datetime >= datetime_from_str('today-1day'):
|
|
|
|
|
|
|
|
for fmt in info['formats']:
|
|
|
|
|
|
|
|
if fmt.get('protocol') == 'm3u8_native':
|
|
|
|
|
|
|
|
fmt['__needs_testing'] = True
|
|
|
|
|
|
|
|
|
|
|
|
for s_k, d_k in [('artist', 'creator'), ('track', 'alt_title')]:
|
|
|
|
for s_k, d_k in [('artist', 'creator'), ('track', 'alt_title')]:
|
|
|
|
v = info.get(s_k)
|
|
|
|
v = info.get(s_k)
|
|
|
|
if v:
|
|
|
|
if v:
|
|
|
|