aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/whowatch.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-05-22 23:58:11 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2021-05-26 01:27:39 +0530
commit177877c54493d0cb32f65e87ff9ed88a030cfbdb (patch)
treec3d25a6d80555ed3057b6c363edbba36399aaea0 /yt_dlp/extractor/whowatch.py
parentb25522ba5234bc9c313d18b54001c2e5e9e39c96 (diff)
downloadhypervideo-pre-177877c54493d0cb32f65e87ff9ed88a030cfbdb.tar.lz
hypervideo-pre-177877c54493d0cb32f65e87ff9ed88a030cfbdb.tar.xz
hypervideo-pre-177877c54493d0cb32f65e87ff9ed88a030cfbdb.zip
[extractor] Always prefer native hls downloader by default
When the manifest is not downloadable by native downloader, it already is able to detect it and switch to `ffmpeg`. So there doesn't seem to be a reason anymore to use ffmpeg as the preferred downloader
Diffstat (limited to 'yt_dlp/extractor/whowatch.py')
-rw-r--r--yt_dlp/extractor/whowatch.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/yt_dlp/extractor/whowatch.py b/yt_dlp/extractor/whowatch.py
index 8080f289a..f8bc2e73a 100644
--- a/yt_dlp/extractor/whowatch.py
+++ b/yt_dlp/extractor/whowatch.py
@@ -47,8 +47,7 @@ class WhoWatchIE(InfoExtractor):
if hls_url:
hls_fmts = self._extract_m3u8_formats(
- hls_url, video_id, ext='mp4', entry_protocol='m3u8',
- m3u8_id='hls-%s' % name, quality=quality)
+ hls_url, video_id, ext='mp4', m3u8_id='hls-%s' % name, quality=quality)
formats.extend(hls_fmts)
else:
hls_fmts = []
@@ -71,8 +70,7 @@ class WhoWatchIE(InfoExtractor):
# This contains the same formats as the above manifests and is used only as a fallback
formats.extend(self._extract_m3u8_formats(
- hls_url, video_id, ext='mp4', entry_protocol='m3u8',
- m3u8_id='hls'))
+ hls_url, video_id, ext='mp4', m3u8_id='hls'))
self._remove_duplicate_formats(formats)
self._sort_formats(formats)