[extractor/youtube] Revert default formats to `https`

This commit is contained in:
pukkandan 2023-04-11 16:11:15 +05:30
parent 79c77e85b7
commit c6786ff3ba
No known key found for this signature in database
GPG Key ID: 7EEE9E1E817D0A39
1 changed files with 1 additions and 3 deletions

View File

@ -3789,15 +3789,13 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
if single_stream and dct.get('ext'):
dct['container'] = dct['ext'] + '_dash'
if dct['filesize']:
if all_formats and dct['filesize']:
yield {
**dct,
'format_id': f'{dct["format_id"]}-dashy' if all_formats else dct['format_id'],
'protocol': 'http_dash_segments',
'fragments': build_fragments(dct),
}
if not all_formats:
continue
dct['downloader_options'] = {'http_chunk_size': CHUNK_SIZE}
yield dct