diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-06-13 19:16:06 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-06-13 19:16:06 +0530 |
commit | fccf90e7f3f816fc64dfe68f0c5dca23d7e3a2d2 (patch) | |
tree | 0afbb956defa6bb6232c889d11bbde27685ed056 | |
parent | d32f30ac485e477fd6ba043c2342d12f2498c943 (diff) | |
download | hypervideo-pre-fccf90e7f3f816fc64dfe68f0c5dca23d7e3a2d2.tar.lz hypervideo-pre-fccf90e7f3f816fc64dfe68f0c5dca23d7e3a2d2.tar.xz hypervideo-pre-fccf90e7f3f816fc64dfe68f0c5dca23d7e3a2d2.zip |
Fix bug in 56ba69e4c991e81a449882258be08d0b6b98c648
-rw-r--r-- | yt_dlp/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index b8c250d73..7ba6441e1 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -3060,7 +3060,7 @@ class YoutubeDL: success = True merger, fd = FFmpegMergerPP(self), None - if info_dict.get('url'): + if info_dict.get('protocol') or info_dict.get('url'): fd = get_suitable_downloader(info_dict, self.params, to_stdout=temp_filename == '-') if fd is not FFmpegFD and ( info_dict.get('section_start') or info_dict.get('section_end')): |