From 33245766ab0b7be7971ff46f03c706d77a327a92 Mon Sep 17 00:00:00 2001 From: pukkandan Date: Fri, 16 Apr 2021 06:00:04 +0530 Subject: [PATCH] [downloader] Fix ffmpeg selection for m3u8_native --- yt_dlp/downloader/external.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/downloader/external.py b/yt_dlp/downloader/external.py index ea2e6eb12..70da63f69 100644 --- a/yt_dlp/downloader/external.py +++ b/yt_dlp/downloader/external.py @@ -330,7 +330,7 @@ class HttpieFD(ExternalFD): class FFmpegFD(ExternalFD): - SUPPORTED_PROTOCOLS = ('http', 'https', 'ftp', 'ftps', 'm3u8', 'rtsp', 'rtmp', 'mms') + SUPPORTED_PROTOCOLS = ('http', 'https', 'ftp', 'ftps', 'm3u8', 'm3u8_native', 'rtsp', 'rtmp', 'mms') @classmethod def available(cls, path=None):