1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-09-03 00:25:08 +00:00

[downloader] Do not use aria2c for non-native m3u8

Closes #2718
This commit is contained in:
pukkandan
2022-02-11 12:09:03 +05:30
parent 3856407a86
commit 079a7cfc71
4 changed files with 4 additions and 5 deletions

View File

@ -42,8 +42,7 @@ class OpenRecBaseIE(InfoExtractor):
if not m3u8_url:
continue
formats.extend(self._extract_m3u8_formats(
m3u8_url, video_id, ext='mp4', entry_protocol='m3u8',
m3u8_id='hls-%s' % name, live=True))
m3u8_url, video_id, ext='mp4', live=is_live, m3u8_id='hls-%s' % name))
self._sort_formats(formats)