[YoutubeDL] Change how DashSegmentsFD is selected
[youtube-dl] / youtube_dl / downloader / http.py
index ceacb8522b79ec4e4d3fbef83e242ed457be4a7c..b7f144af9ea33a102246632e04e71707be3d98ad 100644 (file)
@@ -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