projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8c86fd3
)
[downloader] Let _ffmpeg_ handle DASH segments
author
dirkf
<fieldhouse@gmx.net>
Sat, 11 Mar 2023 12:09:55 +0000
(12:09 +0000)
committer
dirkf
<fieldhouse@gmx.net>
Tue, 14 Mar 2023 16:23:20 +0000
(16:23 +0000)
Fixes https://github.com/ytdl-org/youtube-dl/issues/31792 after
3da1783
.
youtube_dl/downloader/external.py
patch
|
blob
|
history
diff --git
a/youtube_dl/downloader/external.py
b/youtube_dl/downloader/external.py
index bffcd10b6965980f8001da1a076639e30ad794ab..1b6bd1fa2b0cfe03b346ac8a07adac6a115f3dcf 100644
(file)
--- a/
youtube_dl/downloader/external.py
+++ b/
youtube_dl/downloader/external.py
@@
-273,7
+273,7
@@
class HttpieFD(ExternalFD):
class FFmpegFD(ExternalFD):
@classmethod
def supports(cls, info_dict):
- return info_dict['protocol'] in ('http', 'https', 'ftp', 'ftps', 'm3u8', 'rtsp', 'rtmp', 'mms')
+ return info_dict['protocol'] in ('http', 'https', 'ftp', 'ftps', 'm3u8', 'rtsp', 'rtmp', 'mms'
, 'http_dash_segments'
)
@classmethod
def available(cls):