diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2015-06-04 22:05:33 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2015-06-04 22:05:33 +0800 |
commit | b9258c61789388b49792ebdceb5d804217a36da5 (patch) | |
tree | a0a94418785cdb3b212b0b85eb20cd353408a7e6 /youtube_dl/downloader/http.py | |
parent | 6800d3372f35e08dcc4d34d06601815bf0cb0a3d (diff) |
[YoutubeDL] Change how DashSegmentsFD is selected
Diffstat (limited to 'youtube_dl/downloader/http.py')
-rw-r--r-- | youtube_dl/downloader/http.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/youtube_dl/downloader/http.py b/youtube_dl/downloader/http.py index ceacb8522..b7f144af9 100644 --- a/youtube_dl/downloader/http.py +++ b/youtube_dl/downloader/http.py @@ -6,7 +6,6 @@ import socket import time from .common import FileDownloader -from .dash import DashSegmentsFD from ..compat import ( compat_urllib_request, compat_urllib_error, @@ -20,9 +19,6 @@ from ..utils import ( class HttpFD(FileDownloader): def real_download(self, filename, info_dict): - if info_dict.get('initialization_url') and list(filter(None, info_dict.get('segment_urls', []))): - return DashSegmentsFD(self.ydl, self.params).real_download(filename, info_dict) - url = info_dict['url'] tmpfilename = self.temp_name(filename) stream = None |