[YoutubeDL] Change how DashSegmentsFD is selected
[youtube-dl] / youtube_dl / downloader / __init__.py
index f110830c472eb451d77b48fa9337bd5feee55952..1b618ab54ae17ace63f60f9df173837a5e5a9171 100644 (file)
@@ -8,6 +8,7 @@ from .hls import NativeHlsFD
 from .http import HttpFD
 from .rtsp import RtspFD
 from .rtmp import RtmpFD
+from .dash import DashSegmentsFD
 
 from ..utils import (
     determine_protocol,
@@ -20,6 +21,7 @@ PROTOCOL_MAP = {
     'mms': RtspFD,
     'rtsp': RtspFD,
     'f4m': F4mFD,
+    'dash_segments': DashSegmentsFD,
 }