[ie/youtube] Improve detection of faulty HLS formats (#8646)

Closes #7747
Authored by: bashonly
pull/8677/head
bashonly 6 months ago committed by GitHub
parent 628fa244bb
commit bb5a54e6db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4562,7 +4562,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
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'):
if upload_datetime >= datetime_from_str('today-2days'):
for fmt in info['formats']:
if fmt.get('protocol') == 'm3u8_native':
fmt['__needs_testing'] = True

Loading…
Cancel
Save